/* ===========================
   MODERN RESET & BASE STYLES
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0;
    --text-tertiary: #999999;
    --accent-primary: #ffffff;
    --accent-red: #c41e3a;
    --accent-gold: #d4af37;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-unit: 8px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    opacity: 0.95;
    transition: var(--transition-fast);
    mix-blend-mode: screen;
}

.logo:hover .logo-image {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:not(.btn-contact):hover {
    color: var(--text-primary);
}

.btn-contact {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-contact:hover {
    background: var(--text-secondary);
    transform: scale(1.05);
}

.facebook-icon {
    display: flex;
    align-items: center;
    padding: 0;
    margin-left: -24px;
    transition: var(--transition-fast);
}

.facebook-icon img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition-fast);
    mix-blend-mode: screen;
}

.facebook-icon:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    gap: 6px;
    position: relative;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
    display: block;
}

/* ===========================
   HERO SECTION - MODERN
   =========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.hero-bg-2,
.hero-bg-4 {
    background-size: cover;
    background-position: center top;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.5) 70%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: 2;
    pointer-events: none;
}

.hero-background.active {
    opacity: 1;
}

.hero-bg-1 {
    background-image: url('christmaslights.png');
}

.hero-bg-2 {
    background-image: url('ctree.png');
}

.hero-bg-3 {
    background-image: url('christmaslights.png');
}

.hero-bg-4 {
    background-image: url('ctree.png');
}


.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 32px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.hero-badge::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(circle at center, 
            rgba(196, 30, 58, 0.4) 0%, 
            rgba(0, 150, 0, 0.3) 30%, 
            rgba(212, 175, 55, 0.25) 50%, 
            transparent 70%
        );
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    animation: color-flow 2s ease-in-out infinite;
    filter: blur(8px);
    z-index: -1;
}

@keyframes color-flow {
    0%, 100% {
        filter: blur(8px) hue-rotate(0deg) brightness(1.1) saturate(1.3);
    }
    33% {
        filter: blur(8px) hue-rotate(30deg) brightness(1.15) saturate(1.4);
    }
    66% {
        filter: blur(8px) hue-rotate(-30deg) brightness(1.12) saturate(1.35);
    }
}

.hero-badge:hover {
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.hero-badge:hover::before {
    opacity: 1;
}

.hero-title-container {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-title.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-primary-large {
    padding: 18px 40px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.btn-secondary-large {
    padding: 18px 40px;
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 13px;
    letter-spacing: 1px;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ===========================
   INTRO SECTION
   =========================== */

.intro-section {
    padding: 180px 0;
    background: var(--bg-primary);
    text-align: center;
}

.section-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 32px;
    font-weight: 500;
}

.large-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* ===========================
   VALUES SECTION - MODERN
   =========================== */

.values-modern {
    padding: 120px 0;
    background: var(--bg-primary);
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card-modern {
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.value-card-modern:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.value-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.value-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   SERVICES SECTION - MODERN
   =========================== */

.services-modern {
    padding: 180px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.section-title-large {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-carousel {
    position: relative;
    min-height: 400px;
    margin-bottom: 64px;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.service-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.service-content h3 {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.service-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-text:hover {
    gap: 12px;
    color: var(--accent-red);
}

.service-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.service-nav-btn {
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.service-nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.service-nav-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}
/* ===========================
   MEMBERSHIPS PROMO SECTION
   =========================== */

.memberships-promo {
    padding: 120px 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.memberships-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.memberships-promo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.memberships-promo .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: 32px;
}

.memberships-promo .section-title-large {
    margin-bottom: 24px;
}

.memberships-promo .section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.memberships-promo .btn-primary-large {
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

.memberships-promo .btn-primary-large:hover {
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .memberships-promo {
        padding: 80px 0;
    }
    
    .memberships-promo .section-description {
        font-size: 1rem;
    }
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 180px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    color: var(--text-primary);
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.about-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-areas h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 32px;
}

.areas-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.areas-list li {
    font-size: 16px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.areas-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image .image-placeholder {
    background: transparent;
    border: none;
    padding: 0;
}

.about-logo {
    max-width: 100%;
    width: 100%;
    opacity: 0.8;
    mix-blend-mode: screen;
}

/* ===========================
   MEMBERSHIPS SECTION
   =========================== */

.memberships {
    padding: 120px 0;
    background: var(--bg-primary);
    text-align: center;
}

.section-header {
    margin-bottom: 48px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.membership-content {
    max-width: 800px;
    margin: 0 auto;
}

.membership-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================
   SOCIAL SECTION
   =========================== */

.social-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-content {
    max-width: 700px;
    margin: 0 auto;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #1877f2;
    color: var(--text-primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 32px;
    transition: var(--transition-fast);
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.3);
    background: #145dbf;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact {
    padding: 60px 0;
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    color: var(--text-primary);
}

.contact-details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    opacity: 0.8;
}

.contact-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-text a,
.contact-text p {
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--text-primary);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    padding: 18px 40px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 200px;
    opacity: 0.8;
    mix-blend-mode: screen;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-primary);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ===========================
   SERVICES PAGE
   =========================== */

.services-hero {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    text-align: center;
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.service-detail:nth-child(even) {
    background: var(--bg-primary);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-icon-large {
    display: none;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.service-detail-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-features-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.service-features-list li {
    font-size: 16px;
    color: var(--text-secondary);
    padding-left: 32px;
    position: relative;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 600;
}

.service-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary-dark {
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-secondary-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-tertiary);
    overflow: hidden;
    position: relative;
}

.service-detail-image .image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-image .tree-image,
.service-detail-image .lights-image,
.service-detail-image .landscape-image,
.service-detail-image .roof-image,
.service-detail-image .gutter-image,
.service-detail-image .john-image {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.service-detail-image .tree-image.active,
.service-detail-image .lights-image.active,
.service-detail-image .landscape-image.active,
.service-detail-image .roof-image.active,
.service-detail-image .gutter-image.active,
.service-detail-image .john-image.active {
    opacity: 1;
}

.service-detail-image .landscape-image[data-landscape="1"] {
    object-fit: cover;
    object-position: center 45%;
}

.service-areas-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.areas-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 48px 0;
}

.area-badge {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.service-areas-note {
    font-size: 16px;
    color: var(--text-tertiary);
    font-style: italic;
}

.cta-section {
    padding: 60px 0;
    background: var(--bg-primary);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .container-narrow {
        padding: 0 32px;
    }
    
    .about-grid,
    .contact-wrapper,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 32px 24px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-fast);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .intro-section {
        padding: 120px 0;
    }
    
    .values-modern,
    .services-modern,
    .about,
    .contact {
        padding: 100px 0;
    }
    
    .values-grid-modern {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-content {
        padding: 60px 24px;
    }
    
    .service-content h3 {
        font-size: 36px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .container-narrow {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .service-nav {
        flex-direction: column;
    }
    
    .service-nav-btn {
        width: 100%;
    }
}

/* ===== MEMBERSHIPS PAGE ===== */
.memberships-content {
    padding: 120px 0 180px;
    background: var(--bg-primary);
}

.memberships-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.membership-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    /* Light shadow for dark backgrounds */
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
}

.membership-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.15),
        0 8px 24px rgba(255, 255, 255, 0.08);
}

.membership-card.featured {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.2),
        0 4px 16px rgba(255, 255, 255, 0.08);
}

.membership-card.featured:hover {
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.3),
        0 12px 32px rgba(255, 255, 255, 0.12);
}

.membership-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.membership-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.membership-card:hover .membership-card-image img {
    transform: scale(1.05);
}

.membership-card-content {
    padding: 40px 32px;
}

.membership-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.membership-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.membership-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.membership-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 18px;
}

.membership-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .membership-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .membership-card-image {
        height: 250px;
    }
    
    .membership-card-content {
        padding: 32px 24px;
    }
    
    .membership-title {
        font-size: 24px;
    }
}

