/* ==========================================================================
   ABOUT US PAGE STYLES - Premium Estate Aesthetic
   ========================================================================== */

   .about-page {
    background-color: var(--bg-main);
}

/* --- Typography & Global Resets for About Page --- */
.about-page .section-padding {
    padding: 100px 0;
}

/* Subtitle Sync - Matching Services Blue/Purple */
.about-page .section-subtitle.gold {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}

.about-page .section-title-lux {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: var(--primary-1);
    margin-bottom: 30px;
    font-weight: 700;
}


.about-page .emphasized-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 25px;
}

.about-page .section-lead-text {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.about-page .section-header {
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-page .service-summary {
    margin-top: 60px;
}

.about-page .text-center {
    text-align: center;
}
.about-page .text-center .section-subtitle {
    padding-left: 0;
}
.about-page .text-center .section-subtitle::before,
.about-page .text-center .section-subtitle::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 2px;
    background-color: var(--primary-1);
    margin: 0 15px;
}
.about-page .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.about-page .title-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-1);
    margin-bottom: 25px;
}


/* --- Who We Are Section --- */
.who-we-are {
    background: #fff;
}

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

.about-split.reverse .about-content {
    order: 1;
}

.about-split.reverse .about-image-stack {
    order: 2;
}

.about-description p {
    color: var(--primary-3);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Our Company Scaling */
@media (max-width: 992px) {
    .about-page .emphasized-text {
        font-size: 19px;
        margin-bottom: 20px;
    }
    .about-description p {
        font-size: 16px;
    }
    .about-img-main {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .about-page .section-padding {
        padding: 60px 0;
    }
    .about-page .emphasized-text {
        font-size: 17px;
    }
    .about-description p {
        font-size: 15px;
        line-height: 1.7;
    }
    .about-img-main {
        height: 300px;
        border-radius: 16px;
    }
}

.about-image-stack {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -40px;
    right: -20px;
    background: #0E1126;
    color: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 4px solid #fff;
    z-index: 2;
    padding: 15px;
}

.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

.about-img-main:hover {
    transform: scale(1.02);
}

.about-split.reverse {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-page .section-subtitle.gold {
    background: var(--gradient-1); /* Matching the blue/purple brand color */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}

/* --- Our Network Section --- */
.our-network {
    background: #F9FAFB;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Collab Closing Refinement */
.collab-closing {
    margin-top: 60px;
}

.collab-closing .emphasized-text {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
}

.ecosystem-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: rgba(42, 63, 255, 0.1);
}

.eco-icon-wrap {
    width: 64px;
    height: 64px;
    background: #F4F6FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
}

.ecosystem-card:hover .eco-icon-wrap {
    transform: rotate(10deg);
}

.eco-card-title {
    font-size: 18px;
    color: var(--primary-1);
    margin-bottom: 15px;
    font-weight: 700;
}

.eco-card-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .ecosystem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .collab-closing {
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .ecosystem-card {
        padding: 30px 20px;
    }
    .eco-icon-wrap {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-card {
        padding: 24px 20px;
    }

    .eco-card-title {
        font-size: 17px;
    }

    .about-page .section-header {
        margin-bottom: 40px;
    }

    .collab-closing {
        margin-top: 30px;
    }
}

.ext-num {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ext-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .about-split, .about-split.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-split.reverse .about-content {
        order: 2;
    }
    
    .about-split.reverse .about-image-stack {
        order: 1;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        width: 120px;
        height: 120px;
    }
    
    .ext-num {
        font-size: 32px;
    }
    
    .ext-label {
        font-size: 11px;
    }
}
.about-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(14, 17, 38, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: -85px; /* Offset for transparent header */
    padding-top: 85px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(14,17,38,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-z {
    position: relative;
    z-index: 5;
    width: 100%;
}

.about-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.about-hero .about-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    margin: 20px 0; /* Add top margin for better subtitle breathing */
    letter-spacing: -2px;
    line-height: 1.1;
    color: #fff;
}

.about-hero .hero-lead {
    font-size: clamp(18px, 2vw, 24px);
    opacity: 0.9;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero .hero-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 0 auto;
    border-radius: 2px;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Our Story Section --- */
.about-story {
    background: var(--white);
}

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

.story-image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.story-image-wrap:hover img {
    transform: scale(1.05);
}

.story-experience-badge {
    position: absolute;
    bottom: -30px;
    right: 40px;
    background: var(--primary-1);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    z-index: 2;
}

.story-experience-badge .badge-num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.story-experience-badge .badge-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.story-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* --- Vision & Mission Section --- */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-1);
}

.vm-icon {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-1);
    display: inline-block;
    padding: 20px;
    background: var(--bg-surface);
    border-radius: 50%;
}

.vm-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.vm-desc {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}


/* --- Leadership / Team Placeholder --- */
.about-team {
    background: var(--white);
}
.team-placeholder p {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 300;
}

/* --- Why Rajmandir (Shared Global CSS handles most of this) --- */
/* The layout and styles for .why-rajmandir are inherited from global styles (services.css/front-page), 
   but ensure the structural classes exist if not defined globally. */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}
.feature-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
}
.feat-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}
.feat-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.feat-desc {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Final CTA Section (V2) --- */
.about-cta {
    background: var(--white);
    padding-bottom: 100px;
}

.cta-v2-box {
    background: var(--text-dark);
    border-radius: 12px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-v2-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235, 186, 22, 0.05));
    pointer-events: none;
}

.cta-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.cta-v2-title {
    font-size: 42px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-v2-description p {
    color: var(--text-medium);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cta-v2-quote {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-left: 4px solid var(--primary-1);
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
}

.cta-v2-quote p {
    color: var(--white);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.cta-v2-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-v2-phone {
    display: flex;
    flex-direction: column;
}

.cta-v2-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-1);
    margin-bottom: 5px;
}

.cta-v2-number {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-v2-number:hover {
    color: var(--primary-1);
}

.lux-btn-gold {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-1);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lux-btn-gold:hover {
    background: var(--primary-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(235, 186, 22, 0.2);
}


/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .story-grid,
    .why-grid,
    .cta-v2-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    /* About Hero Scaling */
    .about-hero {
        height: auto;
        min-height: 420px;
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .about-hero .about-title {
        font-size: clamp(36px, 8vw, 48px);
        letter-spacing: -1px;
        margin: 15px 0;
    }

    .about-hero .hero-lead {
        font-size: 18px;
        padding: 0 20px;
    }


    .story-experience-badge {
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    .story-experience-badge .badge-num {
        font-size: 28px;
    }
    .story-experience-badge .badge-label {
        font-size: 12px;
    }

    .cta-v2-box {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero {
        min-height: 360px;
        padding-top: 110px;
        padding-bottom: 48px;
    }

    .about-hero .about-title {
        font-size: 32px !important;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .about-hero .hero-lead {
        font-size: 15px !important;
        margin-bottom: 20px;
    }

    .about-hero .hero-divider {
        width: 50px;
        height: 3px;
    }

    .cta-v2-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* --- What We Do Section --- */
.what-we-do {
    background: #fff;
    position: relative;
    z-index: 1;
}

.services-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.service-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.service-icon-box:hover {
    transform: translateY(-5px);
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-1);
    box-shadow: 0 10px 25px rgba(14, 17, 38, 0.08);
    border: 1px solid rgba(14, 17, 38, 0.03);
    transition: all 0.3s ease;
}

.service-icon-box:hover .service-icon-circle {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 15px 30px rgba(42, 63, 255, 0.2);
    border-color: transparent;
}

.service-icon-text h4 {
    font-size: 16px;
    color: var(--primary-1);
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1200px) {
    .services-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 992px) {
    .services-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
    }
}

@media (max-width: 600px) {
    .services-icon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-icon-box {
        padding: 15px;
    }

    .service-icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-icon-text h4 {
        font-size: 15px;
    }
}

/* --- Our Leadership Section --- */
.our-leadership {
    background: #F4F6FF; /* Soft background to distinguish from What We Do */
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.leadership-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(14, 17, 38, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

.leadership-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(14, 17, 38, 0.12);
}

.member-image {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.leadership-card:hover .member-image img {
    transform: scale(1.08);
}

.member-exp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-1); /* Switched to brand primary gradient */
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(42, 63, 255, 0.2);
    z-index: 2;
}

.member-info {
    padding: 30px;
}

.member-name {
    font-size: 22px;
    color: var(--primary-1);
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info .member-role {
    font-size: 14px;
    background: var(--gradient-1); /* Switched to brand primary gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
}

.member-bio {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.member-bio p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .member-image {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .member-image {
        height: 280px;
    }

    .member-info {
        padding: 25px;
    }

    .member-name {
        font-size: 20px;
    }

    .member-info .member-role {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .about-page .service-summary {
        margin-top: 40px;
    }
}

/* --- Market Focus Section --- */
.market-focus {
    background: #fff;
    position: relative;
    z-index: 1;
}

.section-header-left {
    text-align: left;
}

.section-header-left .section-title-lux {
    margin-left: 0;
    margin-right: auto;
}

.section-header-left .section-lead-text {
    margin-left: 0;
    margin-right: auto;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.market-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #F8FAFC;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(14, 17, 38, 0.05);
}

.market-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(14, 17, 38, 0.08);
    border-color: transparent;
}

.market-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.market-item:hover .market-image img {
    transform: scale(1.1);
}

.market-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-1);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(42, 63, 255, 0.2);
    z-index: 2;
}

.market-info {
    padding: 30px;
}

.market-info h3 {
    font-size: 22px;
    color: var(--primary-1);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.market-info p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .market-image {
        height: 240px;
    }
}

@media (max-width: 650px) {
    .market-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header-left {
        text-align: center;
        margin-bottom: 40px !important;
    }
    
    .section-header-left .section-title-lux,
    .section-header-left .section-lead-text {
        margin-left: auto;
        margin-right: auto;
    }

    .market-image {
        height: 220px;
    }

    .market-info {
        padding: 25px 20px;
    }

    .market-info h3 {
        font-size: 20px;
    }
}

/* --- Connect With Us (Final CTA) --- */
.connect-section {
    background: #fff;
}

/* --- Connect With Us (Final CTA - Full Width Refinement) --- */
/* --- Connect With Us (Final CTA - Theme Sync Refinement) --- */
.connect-section {
    background: #F4F6FF; /* Match Leadership Section Background */
    padding-bottom: 0 !important; /* Touch Footer */
}

.connect-box-full {
    background: #F4F6FF; 
    width: 100%;
    padding: 50px 0; /* Balanced for removed text */
    position: relative;
}

.container-connect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.connect-content {
    flex: 1;
}

.connect-box-full .section-title-lux {
    color: var(--primary-1) !important;
    margin-bottom: 40px; /* Increased for better vertical gap */
}

.connect-desc {
    font-size: 16px;
    color: var(--text-medium) !important;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
}

.serving-highlights {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.serving-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-1);
    opacity: 0.8;
    font-weight: 700;
    white-space: nowrap;
}

.serving-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.serving-pills span {
    background: #fff; /* Stand out on light blue theme */
    color: var(--primary-1) !important;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(14, 17, 38, 0.1);
}

.connect-action {
    flex: 0 0 380px;
}

.contact-card-lux {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(14, 17, 38, 0.12); /* Stronger shadow on light bg */
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-medium);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-number-lux {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-1);
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-card-lux:hover .icon-circle {
    background: #fff;
    color: var(--primary-1);
    border: 1px solid var(--primary-1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-card-lux:hover .contact-number-lux {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.05);
}

.contact-number-lux .icon-circle {
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-subtext {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .container-connect {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .connect-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .serving-highlights {
        flex-direction: column;
        align-items: center;
    }
    .serving-pills {
        justify-content: center;
    }
    .connect-action {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .connect-box-full {
        padding: 40px 0;
    }
    .connect-box-full .section-title-lux {
        font-size: 28px !important;
        margin-bottom: 25px;
    }

    .contact-card-lux {
        padding: 30px 20px;
    }

    .contact-number-lux {
        font-size: 20px;
    }

    .serving-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .serving-pills span {
        padding: 5px 12px;
        font-size: 11px;
    }
}
