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

body {
    background-color: #0B0D0F;
    color: #F4EFE7;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text h1, .footer-logo-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.playful-font {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    color: #C6A15B;
}
.playful-fontt {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    color: #C6A15B;
    text-align: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ================= STICKY NAVIGATION ================= */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #0B0D0F;
    border-bottom: 1px solid rgba(198, 161, 91, 0.15);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #C6A15B;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.nav-tagline {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: #A7A29A;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #F4EFE7;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C6A15B;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #F4EFE7;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-home {
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.8)), url('images/hero-contact.jpg');
}

.hero-about {
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.8)), url('images/hero-about.jpg');
}

.hero-membership {
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.8)), url('images/hero-membership.jpg');
}

.hero-blog {
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.8)), url('images/hero-blog.jpg');
}

.hero-contact {
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.8)), url('images/hero-home.jpg');
}

/* ================= THE CLUB CODE CARDS ================= */
.card-limited {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-limited.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid #3D0E1A;
    transition: all 0.3s ease;
}

.card-powered {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-powered.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid #3D0E1A;
    transition: all 0.3s ease;
}

.card-culture {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-culture.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid #3D0E1A;
    transition: all 0.3s ease;
}
/* Card content - make text readable */
.card-content {
    position: relative;
    z-index: 2;
}

.card i {
    font-size: 2rem;
    color: #C6A15B;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #F4EFE7;
    text-align: center;
}

.card p {
    font-size: 0.9rem;
    color: #D1C9BF;
    line-height: 1.7;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 25%, 
        rgba(198, 161, 91, 0.15) 0%,
        rgba(198, 161, 91, 0.05) 40%,
        transparent 80%);
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    color: #F4EFE7;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: #D1C9BF;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ================= BUTTONS ================= */
.btn-primary {
    display: inline-block;
    background: transparent;
    border: 2px solid #C6A15B;
    color: #C6A15B;
    padding: 16px 42px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #C6A15B;
    color: #0B0D0F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 161, 91, 0.3);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ================= SECTIONS ================= */
section {
    padding: 80px 0;
}

.section-light {
    background-color: #0B0D0F;
}

.section-dark {
    background-color: #0B0D0F;
    border-top: 1px solid rgba(198, 161, 91, 0.08);
    border-bottom: 1px solid rgba(198, 161, 91, 0.08);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #C6A15B;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1rem;
    color: #A7A29A;
    margin-bottom: 48px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

.text-block-left {
    max-width: 900px;
    margin: 0 auto;
}

.text-block-left p {
    font-size: 1rem;
    color: #D1C9BF;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.text-block-left p:last-child {
    margin-bottom: 0;
}

/* ================= CARDS ================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.card {
    padding: 40px 32px;
    border: 1px solid #3D0E1A;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card i {
    font-size: 2rem;
    color: #C6A15B;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #F4EFE7;
    text-align: center;
}

.card p {
    font-size: 0.9rem;
    color: #D1C9BF;
    line-height: 1.7;
    text-align: center;
}

.card:hover {
    border-color: #C6A15B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 161, 91, 0.1);
}

.card-gym {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-gym.jpg');
    background-size: cover;
    background-position: center;
}

.card-fitness {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-fitness.jpg');
    background-size: cover;
    background-position: center;
}

.card-yoga {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-yoga.jpg');
    background-size: cover;
    background-position: center;
}

.card-nutrition {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-nutrition.jpg');
    background-size: cover;
    background-position: center;
}
.card-cafe {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-cafe.jpg');
     background-size: cover;
    background-position: center;
}

.card-support {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('images/card-support.jpg');
     background-size: cover;
    background-position: center;
}

/* ================= DIFFERENCE SECTION ================= */
.difference-grid .card {
    text-align: center;
    min-height: 280px;
}

.difference-grid .card i {
    display: block;
    margin: 0 auto 20px auto;
}

.difference-grid .card h3 {
    text-align: center;
}

.difference-grid .card p {
    text-align: center;
}

/* ================= VISION & MISSION ================= */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.mission-card, .vision-card {
    background: #171A1D;
    padding: 40px 40px;
    border-left: 4px solid #3D0E1A;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    background: #1a1e22;
    border-left-color: #C6A15B;
}

.mission-card h3, .vision-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #C6A15B;
    margin-bottom: 20px;
    text-align: left;
}

.mission-card i, .vision-card i {
    font-size: 1.6rem;
    color: #C6A15B;
    margin: 0;
}

.mission-card p, .vision-card p {
    color: #D1C9BF;
    line-height: 1.8;
    text-align: justify;
}


/* ================= CTA ================= */
.cta {
    text-align: center;
}

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

.cta-content p {
    font-size: 1rem;
    color: #A7A29A;
    margin-bottom: 32px;
    line-height: 1.7;
    text-align: center;
}
/* ================= FOUNDER SECTION ================= */
.founder-section {
    padding: 80px 0;
}

.founder-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Founder Image - LEFT */
.founder-image {
    flex: 0 0 320px;
    text-align: center;
}

.founder-photo-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.founder-photo {
    width: 600;
    height: 700px;
    object-fit: cover;
    border: 2px solid rgba(198, 161, 91, 0.3);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.founder-photo:hover {
    transform: scale(1.02);
}

.founder-photo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: radial-gradient(ellipse at center, rgba(198, 161, 91, 0.15), transparent 70%);
    border-radius: 20px;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.founder-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.founder-social-links a {
    color: #A7A29A;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(198, 161, 91, 0.2);
    border-radius: 50%;
}

.founder-social-links a:hover {
    color: #C6A15B;
    border-color: #C6A15B;
    transform: translateY(-3px);
}

/* Founder Story - RIGHT */
.founder-story {
    flex: 1;
}

.founder-story h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #C6A15B;
    margin-bottom: 4px;
}

.founder-title {
    font-size: 0.75rem;
    color: #A7A29A;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.founder-divider {
    width: 60px;
    height: 2px;
    background: #C6A15B;
    margin-bottom: 24px;
}

.founder-bio p {
    font-size: 1rem;
    color: #D1C9BF;
    line-height: 1.8;
    margin-bottom: 18px;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-quote {
    font-style: italic;
    color: #F4EFE7 !important;
    border-left: 3px solid #C6A15B;
    padding-left: 24px;
    font-size: 1.05rem !important;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .founder-container {
        gap: 40px;
    }
    
    .founder-image {
        flex: 0 0 280px;
    }
    
    .founder-photo {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .founder-image {
        flex: 0 0 auto;
        width: 250px;
    }
    
    .founder-photo {
        height: 300px;
    }
    
    .founder-story h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .founder-title {
        text-align: center;
    }
    
    .founder-divider {
        margin: 16px auto;
    }
    
    .founder-bio p {
        text-align: left;
    }
    
    .founder-quote {
        text-align: left;
        border-left: 3px solid #C6A15B;
        padding-left: 24px;
        border-top: none;
        padding-top: 0;
    }
}
/* ================= MEMBERSHIP STEPS ================= */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 48px 0;
}

.step-item {
    flex: 1;
    min-width: 180px;
    background: #171A1D;
    padding: 28px 20px;
    border-top: 3px solid #3D0E1A;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.step-item:hover {
    transform: translateY(-5px);
    background: #1a1e22;
    border-top-color: #D4B87A;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #C6A15B;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 12px;
}

.step-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #F4EFE7;
}

.step-item p {
    font-size: 0.85rem;
    color: #A7A29A;
    line-height: 1.6;
    text-align: center;
}

.step-arrow {
    display: flex;
    align-items: center;
    color: #C6A15B;
    font-size: 1.2rem;
}

.membership-note {
    max-width: 900px;
    margin: 40px auto 0;
    padding-top: 32px;
    border-top: 1px solid rgba(198, 161, 91, 0.1);
}

.membership-note p {
    color: #D1C9BF;
    margin-bottom: 0;
    line-height: 1.8;
    text-align: left;
}

/* ================= DIFFERENCE SECTION ================= */
.difference-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.difference-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.difference-row-bottom {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.difference-row-bottom .card {
    width: calc(33.33% - 22px);
    max-width: 380px;
}

/* ================= TEAM ================= */
.team-single {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.team-card-single {
    background: #171A1D;
    padding: 48px 40px;
    max-width: 700px;
    text-align: center;
    border: 1px solid rgba(198, 161, 91, 0.15);
    transition: all 0.3s ease;
}

.team-card-single:hover {
    transform: translateY(-5px);
    border-color: #C6A15B;
    box-shadow: 0 10px 30px rgba(198, 161, 91, 0.1);
}

.team-avatar i {
    font-size: 5rem;
    color: #C6A15B;
    margin-bottom: 24px;
}

.team-card-single h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.team-title {
    color: #C6A15B;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.team-bio {
    color: #A7A29A;
    line-height: 1.8;
    text-align: center;
}

.team-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(198, 161, 91, 0.15);
    font-size: 0.8rem;
    color: #6B6760;
    text-align: center;
}

/* ================= BLOG ================= */
.content-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: #171A1D;
    border: 1px solid rgba(198, 161, 91, 0.15);
}

.content-placeholder i {
    font-size: 3rem;
    color: #C6A15B;
    margin-bottom: 24px;
}

.content-placeholder p {
    color: #A7A29A;
    font-size: 1rem;
    text-align: center;
}
/* ================= BLOG INDEX - CARD ================= */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 48px auto 0;
}

.blog-card {
    background: #171A1D;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(198, 161, 91, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198, 161, 91, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-link {
    text-decoration: none;
    display: block;
}

.blog-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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



.blog-card-content {
    padding: 10px 20px;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #F4EFE7;
    margin-bottom: 12px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: #A7A29A;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    gap: 24px;
    font-size: 0.8rem;
    color: #6B6760;
    margin-bottom: 16px;
}

.blog-card-meta i {
    color: #C6A15B;
    margin-right: 4px;
}

.blog-card-read-more {
    display: inline-block;
    color: #C6A15B;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-card-read-more:hover {
    color: #F4EFE7;
    transform: translateX(4px);
}

/* ================= BLOG POST (Full Article) ================= */
.blog-article {
    max-width: 820px;
    margin: 0 auto;
}

.blog-article-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-article-tag {
    display: inline-block;
    background: rgba(198, 161, 91, 0.15);
    color: #C6A15B;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-article-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    color: #A7A29A;
    font-size: 0.85rem;
}

.blog-article-meta i {
    color: #C6A15B;
    margin-right: 6px;
}

.blog-article-divider {
    width: 60px;
    height: 2px;
    background: #C6A15B;
    margin: 24px auto;
    opacity: 0.5;
}

.blog-article-content-note {
    background: rgba(198, 161, 91, 0.08);
    padding: 16px 24px;
    border-radius: 8px;
    border-left: 3px solid #C6A15B;
    text-align: left;
    color: #A7A29A;
    font-size: 0.85rem;
}

.blog-article-content-note i {
    color: #C6A15B;
    margin-right: 10px;
}

.blog-article-body p {
    font-size: 1.05rem;
    color: #D1C9BF;
    line-height: 1.9;
    margin-bottom: 24px;
    text-align: justify;
}

.blog-article-author {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(198, 161, 91, 0.15);
    text-align: center;
}

.blog-article-author-info h4 {
    font-size: 1.3rem;
    color: #C6A15B;
    margin-bottom: 4px;
}

.blog-article-author-info p {
    font-size: 0.9rem;
    color: #A7A29A;
    margin-bottom: 2px;
}
/* ================= BACK TO BLOG BUTTON ================= */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C6A15B;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.back-to-blog i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-to-blog:hover {
    color: #F4EFE7;
}

.back-to-blog:hover i {
    transform: translateX(-4px);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 20px 24px;
    }

    .blog-card-content h3 {
        font-size: 1.2rem;
    }

    .blog-article-meta {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.8rem;
    }

    .blog-article-body p {
        font-size: 0.95rem;
    }

    .blog-article-body p:first-of-type {
        font-size: 1rem;
    }

    .blog-article-content-note {
        font-size: 0.75rem;
        padding: 12px 16px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* ================= CONTACT PAGE ================= */
.contact-wrapper {
    display: flex;
    gap: 48px;
    margin: 60px 0;
}

.contact-form-card, .contact-info-card {
    flex: 1;
    background: #171A1D;
    padding: 48px 40px;
    border: 1px solid #3D0E1A;
    transition: all 0.3s ease;
}

.contact-form-card:hover, .contact-info-card:hover {
    border-color: #C6A15B;
}

.contact-form-card h3, .contact-info-card h3 {
    font-size: 1.5rem;
    color: #C6A15B;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

input, textarea {
    width: 100%;
    background: #0B0D0F;
    border: 1px solid rgba(198, 161, 91, 0.25);
    padding: 16px 20px;
    color: #F4EFE7;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 4px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #C6A15B;
}

.info-desc {
    color: #A7A29A;
    margin-bottom: 32px;
    line-height: 1.7;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.info-item i {
    font-size: 1.2rem;
    color: #C6A15B;
    margin-top: 4px;
}

.info-item div {
    flex: 1;
}

.info-item span {
    display: block;
    font-size: 0.7rem;
    color: #A7A29A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.info-item a, .info-item p {
    color: #F4EFE7;
    text-decoration: none;
    font-size: 0.95rem;
    word-break: break-word;
}

.info-item a:hover {
    color: #C6A15B;
}

.social-connect {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(198, 161, 91, 0.15);
    text-align: center;
}

.social-connect p {
    color: #A7A29A;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-links a {
    color: #A7A29A;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #C6A15B;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.7rem;
    color: #6B6760;
    text-align: center;
    margin: 48px 0;
    padding-top: 24px;
    border-top: 1px solid rgba(198, 161, 91, 0.1);
}

/* ================= FOOTER ================= */
footer {
    background: #0B0D0F;
    border-top: 1px solid rgba(198, 161, 91, 0.15);
    padding: 60px 0 40px;
    margin-top: 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;  /* Pushes brand left and links right */
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Column - LEFT */
.footer-brand {
    flex: 1;
    max-width: 500px;
}

.footer-logo-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #C6A15B;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.3;
}

.footer-tagline {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #A7A29A;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.footer-brand p {
    font-size: 0.8rem;
    color: #A7A29A;
    line-height: 1.6;
    margin-top: 12px;
    text-align: left;
}

/* Quick Links - RIGHT */
.footer-links {
    flex-shrink: 0;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 32px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #A7A29A;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #C6A15B;
}

/* Social Icons - Add if needed */
.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #A7A29A;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.footer-social a:hover {
    color: #C6A15B;
    transform: translateY(-2px);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(198, 161, 91, 0.1);
    font-size: 0.7rem;
    color: #4A4843;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
    .card-grid, .card-grid-4, .difference-row-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .difference-row-bottom {
        flex-direction: column;
        align-items: center;
    }
    
    .difference-row-bottom .card {
        width: 100%;
        max-width: 100%;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .card-grid, .card-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-card-single {
        padding: 32px 24px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .contact-form-card, .contact-info-card {
        padding: 32px 24px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
