@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design System --- */
:root {
    /* Colors - Fresh Mint Green & White (EduLe Inspired) */
    --primary: #229d60; /* Vibrant Forest/Emerald Green */
    --primary-light: #4ade80; /* Light accent green */
    --primary-dim: rgba(34, 157, 96, 0.08); /* Soft green tint */
    
    --accent-sage: #eefbf3; /* Mint green background */
    --accent-sage-dark: #125732; /* Dark green for contrast */
    --accent-gold: #f59e0b; /* Warm orange/yellow for decorative elements */
    
    --text-dark: #0f172a; /* Slate 900 */
    --text-mid: #64748b; /* Slate 500 */
    --text-light: #94a3b8; /* Slate 400 */
    
    --bg-white: #ffffff; /* Pure white */
    --bg-gray: #f8fafc; /* Very light slate for subtle contrast */
    --bg-soft: #eefbf3; /* Mint green for hero/cta */
    
    /* Shape & Shadows */
    --radius-full: 100px;
    --radius-lg: 16px; /* EduLe uses medium rounding */
    --radius-md: 12px;
    --radius-sm: 8px;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03); /* Very subtle light shadow */
    --shadow-luxe: 0 10px 40px rgba(0, 0, 0, 0.08); /* Clean, slightly elevated shadow */
    
    --transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gray);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif; /* Ditching serif for pure brutalist modern sans-serif */
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

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

/* --- Decorative EduLe Utilities --- */
.highlight-brush {
    position: relative;
    display: inline-block;
    color: var(--primary);
    z-index: 1;
}

.highlight-brush::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -2%;
    width: 104%;
    height: 8px;
    background: var(--primary-light);
    border-radius: 4px;
    z-index: -1;
    transform: rotate(-1deg);
    opacity: 0.6;
}

/* --- Navigation --- */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95); /* White Glass */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 55px;
    width: auto;
    transition: var(--transition-fast);
    animation: logoFloat 4s ease-in-out infinite;
}

.home-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: brandReveal 0.9s cubic-bezier(0.2, 1, 0.3, 1) both;
}

.brand-name {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-dark);
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary);
    animation: brandGlow 3s ease-in-out infinite;
}

.logo-wrap a:hover .nav-logo {
    transform: scale(1.05);
}

.home-logo-link:hover .brand-name {
    color: var(--primary);
}

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

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-mid);
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-node {
    text-align: right;
}

.phone-link {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
}

.hours-tag {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

/* --- Buttons --- */
.btn-teal {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.btn-teal:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 157, 96, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-mid);
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

/* --- Hero --- */
.hero {
    padding: 80px 0;
}

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

.hero-tag {
    background: var(--bg-white);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-dark) 30%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.urdu-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--bg-gray);
    margin-left: -15px;
}

.avatar-group img:first-child { margin-left: 0; }

.trust-text b { display: block; font-size: 1.1rem; }
.trust-text span { font-size: 0.85rem; color: var(--text-mid); }

/* Hero Image & Slider */
.hero-image-wrap {
    position: relative;
    height: 620px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-luxe);
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
    z-index: 1;
}

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

.hero-slide.active img {
    transform: scale(1);
}

.review-overlay {
    position: absolute; /* Changed from relative */
    bottom: 30px;      /* Matches previous floating-stat position */
    right: 30px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85); /* Slightly more opaque for better legibility in corner */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 35px;
    border-radius: var(--radius-md);
    max-width: 320px; /* Narrower for corner placement */
    color: var(--text-dark); /* Dark text for better contrast on light glass */
    box-shadow: var(--shadow-luxe);
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.hero-slide.active .review-overlay {
    transform: translateY(0);
    opacity: 1;
}

.review-overlay .stars {
    color: #f6ad55; /* Matches previous star color */
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.review-overlay p {
    font-size: 0.95rem; /* Slightly smaller for corner box */
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    font-style: italic;
    color: var(--text-dark);
}

.review-overlay .reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-overlay .reviewer {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.8;
}

.google-badge svg {
    width: 14px;
    height: 14px;
}

/* --- Action Grid --- */
.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.action-card {
    padding: 60px;
    border-radius: var(--radius-lg);
    background: var(--bg-gray);
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.success-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxe);
}

.action-card.sage { background: var(--accent-sage); }
.action-card h3 { font-size: 1.8rem; margin-bottom: 20px; }
.action-card p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.6; }

.treat-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.treat-list li {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
}

/* --- Services --- */
.services-module {
    padding-bottom: 160px;
}

.services-box {
    background: var(--bg-white);
    padding: 120px 0;
    border-radius: var(--radius-lg);
    position: relative;
}

.services-box::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--accent-gold);
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px auto;
}

.section-title h2 { 
    font-size: 3.5rem; 
    margin-bottom: 25px; 
    color: var(--text-dark);
}

.section-title p { 
    font-size: 1.25rem; 
    color: var(--text-mid); 
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

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

/* --- Service Grid (Home) --- */
.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-luxe);
    transform: translateY(-8px);
    border-color: rgba(0,0,0,0.08);
}

.service-card:hover::after {
    width: 100%;
}

.card-img-wrap {
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.card-img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); 
}

.service-card:hover .card-img-wrap img { 
    transform: scale(1.08); 
}

.service-card h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.service-card h5.subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-mid);
    font-weight: 300;
}

/* --- Services Bento Grid (Sticky Scroll) --- */
.immersive-header {
    padding: 180px 0 100px 0;
    text-align: center;
    background: var(--bg-gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tech-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.giant-heading {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.header-desc {
    font-size: 1.3rem;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto;
}

.sticky-services-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.sticky-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

.sticky-sidebar {
    position: sticky;
    top: 120px;
}

.sticky-content-inner h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sticky-content-inner p {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.quick-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    display: inline-block;
    transition: var(--transition-fast);
}

.quick-nav a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.scrolling-bento {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.bento-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.bento-card:hover {
    box-shadow: var(--shadow-luxe);
    transform: translateY(-5px);
}

.bento-img-wrap {
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.bento-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-img-wrap img {
    transform: scale(1.05);
}

.bento-content {
    padding: 60px;
}

.bento-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 15px;
}

.bento-content h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.bento-content p {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 40px;
    line-height: 1.8;
}

.bento-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.mini-trait {
    background: var(--bg-gray);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.02);
}

.clinical-blueprint {
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.blueprint-label {
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 15px;
}

.blueprint-img {
    width: 100%;
    border-radius: var(--radius-sm);
    filter: grayscale(20%);
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 1100px) {
    .sticky-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .sticky-sidebar {
        position: relative;
        top: 0;
        text-align: center;
    }
    .quick-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .bento-img-wrap {
        height: 300px;
    }
    .bento-content {
        padding: 40px;
    }
    .bento-grid-mini {
        grid-template-columns: 1fr;
    }
}

/* --- Specialist Section --- */
.lead-specialist {
    padding: 120px 0;
    background: var(--bg-white);
}

.lead-specialist > .container > .specialist-card.luxe-glow {
    display: none;
}

.specialist-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    background: var(--bg-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxe);
    align-items: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.specialist-photo img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.specialist-tag {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.specialist-info h3 { font-size: 3rem; margin-bottom: 15px; }
.credentials { font-size: 1.2rem; color: var(--text-mid); margin-bottom: 40px; }

.specialist-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    padding: 30px;
    border-radius: var(--radius-md);
}

.stat-box.sage { background: var(--accent-sage); border: none; }
.stat-box.orange { background: #fffbeb; border: none; }

.stat-box h5 { font-size: 1.1rem; margin-bottom: 15px; }
.stat-box ul { list-style: none; font-size: 0.9rem; font-weight: 600; line-height: 1.8; }

.team-carousel {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxe);
    padding: 34px 34px 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.team-carousel-block {
    display: none;
}

.team-carousel-head {
    margin-bottom: 18px;
}

.team-carousel-head h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.team-carousel-head p {
    color: var(--text-mid);
    font-size: 0.98rem;
    font-weight: 600;
}

.team-carousel-viewport {
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 10px);
}

.team-carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.team-slide {
    flex: 0 0 100%;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 0;
}

.team-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.team-nav:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(34, 157, 96, 0.2);
}

.team-nav-prev {
    left: 12px;
}

.team-nav-next {
    right: 12px;
}

.team-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.team-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: var(--transition-fast);
}

.team-dot.active {
    background: var(--primary);
    transform: scale(1.18);
}

/* --- CEO Section --- */
.luxe-bg { background: var(--bg-soft); }
.ceo-message-panel { padding: 120px 0; }

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.ceo-visual {
    position: relative;
}

.ceo-visual img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxe);
}

.exp-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--primary);
    color: white;
    padding: 30px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-luxe);
}

.exp-badge p { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.exp-badge span { font-size: 0.9rem; font-weight: 600; opacity: 0.8; }

.ceo-content h2 { font-size: 3.2rem; margin: 20px 0 35px 0; }

.ceo-quote {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-mid);
    padding-left: 40px;
    border-left: 4px solid var(--accent-sage);
    margin-bottom: 40px;
    position: relative;
}

.ceo-quote::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 6rem;
    color: var(--accent-sage);
    opacity: 0.4;
    font-family: serif;
}

.urdu-quote {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
}

.ceo-signature {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sig-line { width: 80px; height: 2px; background: var(--primary-light); }
.sig-details h4 { font-size: 1.3rem; }
.sig-details p { font-size: 0.9rem; color: var(--text-mid); }

/* --- CTA Banner --- */
.cta-banner {
    padding: 60px 0 120px 0;
}

.cta-box {
    background: var(--accent-sage);
    padding: 80px;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid white;
    margin-bottom: 30px;
}

.cta-box h2 { font-size: 3rem; margin-bottom: 20px; color: var(--primary); }
.cta-box p { font-size: 1.2rem; color: var(--accent-sage-dark); max-width: 650px; margin-bottom: 40px; font-weight: 600; }

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 hsla(var(--h-teal), 100%, 21%, 0.4); }
    70% { box-shadow: 0 0 0 20px hsla(var(--h-teal), 100%, 21%, 0); }
    100% { box-shadow: 0 0 0 0 hsla(var(--h-teal), 100%, 21%, 0); }
}

/* --- Footer --- */
.main-footer {
    padding: 120px 0;
    background: var(--bg-white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 80px;
}

.footer-logo { 
    height: 80px; 
    transition: var(--transition-fast);
}

.footer-brand a:hover .footer-logo {
    transform: scale(1.05);
}

.footer-brand .home-logo-link {
    align-items: center;
    margin-bottom: 24px;
}

.footer-brand-lockup .brand-name {
    font-size: 1.3rem;
}

.footer-brand-lockup .brand-tagline {
    font-size: 0.76rem;
}

.footer-brand p { font-size: 0.95rem; color: var(--text-mid); }

.footer-column h5 { font-size: 1.1rem; margin-bottom: 25px; }
.footer-column p { font-size: 0.9rem; color: var(--text-mid); }

.status-tag { margin-top: 15px; font-weight: 800; color: var(--primary); font-size: 0.75rem; }

.full-width { width: 100%; justify-content: center; }

/* --- WhatsApp Floating Node --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.btn-teal.whatsapp-btn {
    background: #25D366;
    color: white;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-teal.whatsapp-btn:hover {
    background: #1ebc59;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-teal.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@keyframes brandReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brandGlow {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(3px);
    }
}

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

/* --- Responsive --- */
@media (max-width: 1100px) {
    .container { padding: 0 30px; }
    .hero-grid, .ceo-grid, .specialist-card { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 2; margin-top: 40px; }
    .hero-image-wrap { order: 1; height: 450px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .action-grid { grid-template-columns: 1fr; }
    .ceo-content { order: 2; }
    .ceo-visual { order: 1; height: 500px; }
    .ceo-visual img { height: 100%; }
    .hero-btns { justify-content: center; }
    .ceo-quote { border: none; padding: 0; }
    .specialist-photo img { height: 400px; }
    .team-carousel {
        padding: 24px 24px 20px;
    }
    .team-carousel-head {
        text-align: center;
    }
    .team-nav {
        top: auto;
        bottom: 72px;
        transform: none;
    }
    .brand-name { font-size: 0.96rem; }
    .brand-tagline { font-size: 0.64rem; letter-spacing: 0.15em; }
}

    /* Mobile Menu Styles */
    .menu-toggle {
        display: none; /* Hidden by default (desktop) */
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 2001;
    }

    @media (max-width: 768px) {
        .nav-links, .nav-actions .contact-node { 
            display: none; 
        }
        .menu-toggle {
            display: flex;
        }
        .services-grid { grid-template-columns: 1fr; }
        .hero-btns { flex-direction: column; }
        .footer-grid { grid-template-columns: 1fr; }
        .container { padding: 0 20px; }
        .home-logo-link { gap: 12px; }
        .nav-logo { height: 48px; }
        .brand-name { font-size: 0.88rem; }
        .brand-tagline { font-size: 0.58rem; letter-spacing: 0.13em; }
        .footer-brand .home-logo-link { align-items: flex-start; }
        .footer-logo { height: 64px; }
        .team-carousel {
            padding: 18px 18px 16px;
        }
        .team-carousel-head h3 {
            font-size: 1.3rem;
        }
        .team-carousel-head p {
            font-size: 0.9rem;
        }
        .team-nav {
            width: 44px;
            height: 44px;
            font-size: 1.6rem;
            bottom: 64px;
        }
        .team-nav-prev {
            left: 8px;
        }
        .team-nav-next {
            right: 8px;
        }
        .team-slide {
            padding: 28px 22px;
        }
    }

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        border-radius: 3px;
        transition: var(--transition-fast);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        z-index: 3000;
        padding: 40px 30px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }

    .menu-close {
        font-size: 2.5rem;
        background: none;
        border: none;
        color: var(--text-dark);
        cursor: pointer;
    }

    .mobile-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }

    .mobile-nav-links li a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    .mobile-nav-links li a:hover {
        color: var(--primary);
    }

    .mobile-menu-footer {
        margin-top: auto;
        text-align: center;
    }

    .mobile-menu-footer p {
        margin-top: 15px;
        font-size: 0.9rem;
        color: var(--text-mid);
    }

    /* Additional Mobile Fixes */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .urdu-text {
        font-size: 1.4rem;
    }
    
    .success-grid {
        grid-template-columns: 1fr !important;
    }
    
    .video-main-card h3 {
        font-size: 1.5rem !important;
    }
    
    .articles-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .main-content article img {
        height: 250px !important;
    }

    .sidebar {
        margin-top: 40px;
    }

    .action-card {
        padding: 30px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }

    .ceo-message-panel, .lead-specialist, .services-box, .success-stories, header.luxe-bg, main.container {
        padding: 60px 0 !important;
    }

    .immersive-header {
        padding: 80px 0 40px 0 !important;
    }

    .giant-heading {
        font-size: 2.8rem !important;
    }

    .header-desc {
        font-size: 1rem !important;
    }

    .video-main-card > div:first-child {
        padding: 20px !important;
    }

    .mini-story-card {
        padding: 20px !important;
        gap: 15px !important;
    }

    .mini-story-card div:first-child {
        width: 80px !important;
        height: 80px !important;
    }

    .specialist-photo img, .ceo-visual img {
        height: 350px !important;
        object-fit: cover;
    }
    
    .ceo-visual {
        height: auto !important;
    }
    
    .exp-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
    }
    
    .exp-badge p {
        font-size: 1.4rem;
    }

    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        width: 100%;
    }
    .btn-teal, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .hero-image-wrap {
        height: 350px;
    }
    .nav-logo {
        height: 40px;
    }
    .brand-name {
        font-size: 0.8rem;
    }
    .brand-tagline {
        font-size: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-logo,
    .brand-lockup,
    .brand-tagline {
        animation: none;
    }
}
