@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700&display=swap');

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #E11D48; /* Premium Rose/Pink from screenshot */
    --accent-hover: #BE123C;
    --bg-main: #FFFFFF;
    --bg-soft: #F8FAFC;
    --text-main: #0f172a;
    --text-muted: #64748B;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --section-padding: 70px 20px; /* Reduced from 100px */
    --container-width: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utility */
.text-accent { color: var(--accent); }
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Fix for left-aligned section titles */
.about .section-title::after,
.benefits-recruitment .section-title::after {
    margin: 20px 0 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 1rem;
    gap: 10px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn-outline:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
}

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

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}
.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.nav-links a:hover { color: var(--accent); }

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.hero .container {
    background: linear-gradient(145deg, #f8faff 0%, #ebf1ff 100%);
    border-radius: 40px;
    padding: 35px 50px 80px; /* Increased bottom padding for buttons */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 40px 100px -15px rgba(0, 0, 0, 0.1), 
                0 20px 40px -20px rgba(0, 0, 0, 0.15),
                inset 0 0 0 2px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 1);
    border-left: 8px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 2000px;
}

/* Collapsed State Styles */
.hero .container.collapsed {
    max-height: 480px; 
    padding-bottom: 60px;
}

.hero .container.collapsed .stats,
.hero .container.collapsed .hero-recruitment,
.hero .container.collapsed .hero-mission,
.hero .container.collapsed .hero-mission-title,
.hero .container.collapsed .full-profile-link {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.stats, .hero-recruitment, .full-profile-link {
    transition: all 0.4s ease-in-out;
}

.hero .container:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px -20px rgba(0, 0, 0, 0.12), 
                0 25px 50px -25px rgba(0, 0, 0, 0.2);
}

.hero .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem); /* Slightly smaller */
    line-height: 1.1;
    margin-bottom: 15px; /* Reduced margin */
    color: var(--primary);
}

.hero p {
    font-size: 1rem; /* Slightly smaller */
    color: var(--text-muted);
    margin-bottom: 25px; /* Reduced margin */
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* WHY CHOOSE US - PREMIUM CARDS */
.features {
    background: #ffffff;
    padding: 70px 0; /* Reduced */
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
}

.section-header .section-title {
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.sub-heading .highlight {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid rgba(225, 29, 72, 0.2);
}

/* Hero Mission Integration */
.hero-mission-title {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 40px;
    margin-bottom: -10px;
    transition: var(--transition-smooth);
}

.hero-mission {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(15, 23, 42, 0.05);
}

.mission-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.mission-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mission-item .mission-icon {
    width: 48px;
    height: 48px;
    background: #fff1f2;
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-item .mission-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

.mission-item .mission-info h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.mission-item .mission-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
    border-color: rgba(225, 29, 72, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #fff1f2;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.feature-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 2.5px;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Benefits Section Styles */
.benefits-recruitment {
    padding: 80px 0; /* Reduced padding to save space */
    background: #ffffff;
}

.benefits-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background: #f8fafc;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.benefits-img {
    width: 100%;
    height: 380px; /* Constraints for vertical space */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefits-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.benefits-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.benefits-list li i {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

@media (max-width: 991px) {
    .benefits-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .benefits-img {
        height: 280px;
    }
}

/* Career Recruitment Section */
.career-recruitment {
    padding: 70px 0; /* Reduced from 100px */
    background: #ffffff;
    position: relative;
    overflow: hidden;
    color: var(--text-main);
}

.career-recruitment::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
    top: -100px;
    left: -200px;
}

.career-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.career-header .section-title {
    color: var(--primary);
    margin-bottom: 20px;
}

.career-subheading {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.career-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.authority-badge {
    background: var(--bg-soft);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 20px 30px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.authority-icon {
    width: 50px;
    height: 50px;
    background: #fff1f2;
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.authority-icon i { stroke-width: 2.5px; }

.authority-text {
    display: flex;
    flex-direction: column;
}

.authority-text strong {
    font-size: 1.1rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.authority-text span {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-soft);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.benefit-item i {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.benefit-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.future-stats {
    display: flex;
    gap: 20px;
}
.future-stats.gap-15 { gap: 15px; }
.future-stats.mt-30 { margin-top: 30px; }

.mini-stat {
    background: var(--bg-soft);
    padding: 15px 25px;
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}
.mini-stat h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2px;
}
.mini-stat p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.career-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-outline-primary:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.lead-form-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    color: var(--primary);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.lead-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.lead-form-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 8px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

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

.bonus-card {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.05) 0%, rgba(225, 29, 72, 0.02) 100%);
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
}
.bonus-card.mt-20 { margin-top: 20px; }

.bonus-icon {
    font-size: 2rem;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bonus-text h4 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.bonus-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.btn-outline-dark {
    border: 1px solid rgba(15, 23, 42, 0.3);
    color: var(--primary);
    background: transparent;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: var(--primary);
}

@media (max-width: 991px) {
    .career-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust {
    padding: 60px 0; /* Reduced */
    text-align: center;
    background: var(--bg-main);
}

.stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 30px; /* Reduced margin */
    padding-top: 30px; /* Reduced padding */
    border-top: 2px solid rgba(15, 23, 42, 0.05);
}

.hero .stat-item.leaf-shape {
    background: white;
    padding: 20px 15px; /* More compact */
    border-radius: 30px 0 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); 
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px; /* Smaller min-height */
}

.stat-item.leaf-shape:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 1.8rem;
    color: #0077b6; /* Professional blue for stats */
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
}

.hero-recruitment {
    width: 100%;
    margin-top: 35px; /* Added more space */
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 10px;
}

.join-team-banner {
    background: linear-gradient(90deg, #0284c7 0%, #0369a1 100%);
    padding: 12px 25px; /* More padding */
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(3, 105, 161, 0.2);
}

.join-team-banner span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero .join-now {
    background: #FFCC00;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.hero .join-now:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero .full-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 12px 0;
}

.hero .full-profile-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

.hero .full-profile-link:hover::after {
    width: 100%;
}

.full-profile-link:hover {
    color: var(--accent-hover);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    box-shadow: var(--card-shadow);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid #f1f5f9;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.client-info h4 {
    color: var(--accent);
}

/* Services Section */
.services {
    padding: 70px 0; /* Reduced */
    background: #ffffff;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* More compact cards */
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px; /* Reduced padding */
    border-radius: 30px;
    text-align: left;
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.1);
    border-color: rgba(225, 29, 72, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff1f2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Why Choose Us */
.why-us {
    padding: var(--section-padding);
    background: var(--bg-main);
}

.feature-check {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 70px 0; /* Reduced from var(--section-padding) which was 100px */
    background: var(--bg-soft);
}

.about-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-collage {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collage-main {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: #f1f5f9;
}

.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.collage-sub-item {
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: #f1f5f9;
}

.collage-sub-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-collage img:hover {
    transform: scale(1.08);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .about-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .collage-main {
        height: 300px;
    }
    
    .collage-sub-item {
        height: 150px;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image-container {
    width: 300px; /* Slightly smaller */
    height: 300px;
    background: white;
    border-radius: 50%;
    padding: 12px;
    box-shadow: var(--card-shadow);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.text-accent { color: var(--accent); }

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.form-group input, .form-group textarea {
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: white;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

/* Footer */
footer {
    padding: 80px 20px 40px;
    background: #0f172a;
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: #f1f5f9; /* Light grey background for visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary); /* Dark color for icons */
    transition: var(--transition-smooth);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Ensure icons are visible in Footer (Dark background) */
footer .social-links a {
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Backgrounds remain brand-specific even in footer */
footer .social-links a:not(.insta):not(.wp):not(.mail) {
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-links a.insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border: none;
}

.social-links a.wp {
    background: #25D366;
    color: white;
    border: none;
}

.social-links a.mail {
    background: #0077b6; /* Professional blue */
    color: white;
    border: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* Enhanced Toggle Button Styling */
.hero-toggle-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to top, #ebf1ff 50%, rgba(235, 241, 255, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    z-index: 100;
    pointer-events: none;
}

.hero-toggle-btn {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto; /* Enable clicks on button */
}

.hero-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.5);
}

.toggle-icon {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Arrow Logic: 
   If NOT collapsed (Opened) -> Rotate 180 (Points Up)
   If collapsed (Closed)     -> Default (Points Down)
*/
.hero .container:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
}

.hero .container.collapsed .toggle-icon {
    transform: rotate(0deg);
}

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

/* Sticky WhatsApp */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-sticky .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive & Tablet Optimization */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .hero .container {
        padding: 40px;
        gap: 30px;
    }

    .about-row, .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s ease-in-out;
        z-index: 1010;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 8px solid var(--accent);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item.leaf-shape {
        padding: 20px 10px;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    .about-row, .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding: 30px 15px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .hero-recruitment {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .join-team-banner {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;
        text-align: center;
        padding: 20px;
    }

    .join-now {
        margin-left: 0;
        width: 100%;
    }
}

/* RECRUITMENT MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #e5e7eb; /* Matching screenshot grey */
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
    animation: modalZoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalZoom {
    from { transform: translateY(20px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #cc444b;
    color: white;
}

.modal-header h2 {
    color: #4361ee; /* Blue as per screenshot */
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.modal-header p {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.form-group-modal {
    margin-bottom: 20px;
}

.form-group-modal label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4b5563;
}

.form-group-modal label span {
    color: #cc444b;
}

.form-group-modal input, .form-group-modal textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group-modal input:focus, .form-group-modal textarea:focus {
    outline: none;
    border-color: #4361ee;
}

.form-row-modal {
    display: flex;
    gap: 20px;
}

.form-row-modal .form-group-modal {
    flex: 1;
}

.mobile-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 0 15px;
    transition: border-color 0.3s ease;
}

.mobile-wrapper:focus-within {
    border-color: #4361ee;
}

.mobile-wrapper .flag {
    font-size: 1.2rem;
    margin-right: 10px;
}

.mobile-wrapper .code {
    font-weight: 600;
    color: #1e293b;
    margin-right: 12px;
}

.mobile-wrapper input {
    border: none !important;
    padding: 12px 0 !important;
}

.form-consent {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    align-items: flex-start;
}

.form-consent input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.form-consent label {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

.btn-modal {
    background: var(--accent);
    color: white;
    padding: 12px 35px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
}

@media (max-width: 650px) {
    .modal-content {
        padding: 30px 20px;
    }
    .form-row-modal {
        flex-direction: column;
        gap: 0;
    }
    .modal-header h2 {
        font-size: 1.8rem;
    }
}


/* CTA Banner Section */
.cta-banner {
    padding: 60px 0; /* Significantly reduced from 100px */
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 60px !important;
    color: var(--primary);
}
