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

:root {
    --primary-color: #136A5E;
    --primary-hover: #0e4f46;
    --bg-color: #FFFFFF;
    --text-dark: #121212;
    --text-muted: #4A4A4A;
    --light-gray: #F5F7F6;
    --border-radius: 32px;
    --transition-speed: 0.4s;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Dynamic Animated Background Shapes --- */
.bg-shapes {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1 {
    width: 500px; height: 500px;
    background: rgba(19, 106, 94, 0.12); /* primary tint */
    top: -10%; right: -5%;
    animation: floatShape 20s infinite alternate ease-in-out;
}

.shape-2 {
    width: 600px; height: 600px;
    background: rgba(245, 158, 11, 0.06); /* amber tint */
    bottom: -10%; left: -10%;
    animation: floatShape 25s infinite alternate-reverse ease-in-out;
}

.shape-3 {
    width: 400px; height: 400px;
    background: rgba(16, 185, 129, 0.08);
    top: 40%; left: 60%;
    animation: floatShape 30s infinite linear;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(30px, -50px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-20px, 20px) rotate(240deg) scale(0.9); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

/* Soft Ambient Floating Particles */
.bg-shapes::before, .bg-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19,106,94,0.15) 0%, rgba(19,106,94,0) 70%);
    filter: blur(20px);
    z-index: -1;
}
.bg-shapes::before {
    width: 300px; height: 300px;
    top: 20%; left: 10%;
    animation: floatAmbient 15s infinite ease-in-out;
}
.bg-shapes::after {
    width: 400px; height: 400px;
    bottom: 30%; right: 15%;
    animation: floatAmbient 18s infinite reverse ease-in-out;
}
@keyframes floatAmbient {
    0% { transform: translate(0, 0); }
    50% { transform: translate(40px, 60px); }
    100% { transform: translate(0, 0); }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(19, 106, 94, 0.2);
}

.btn-black {
    background-color: #000000;
    color: white;
}

.btn-black:hover {
    background-color: #222222;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* --- Typography Helpers --- */
.text-highlight {
    color: var(--primary-color);
}

/* --- Navigation Header --- */
.header {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.1;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contacts-mini {
    text-align: right;
    font-size: 13px;
    line-height: 1.4;
}

.contacts-mini .phone {
    font-weight: 700;
    font-size: 15px;
}

.contacts-mini .email {
    color: var(--text-muted);
}

/* --- Hero Section --- */
.hero {
    padding: 80px 0 60px;
    overflow: hidden;
}

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

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease forwards;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 800px;
    font-weight: 500;
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-desc strong {
    color: var(--text-dark);
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* --- Features Grid Section --- */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 30px;
}

.feat-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.feat-accent {
    background: #fff;
    border-left: 6px solid var(--primary-color);
}

.feat-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.feat-title .arrow-bullet {
    display: inline-block;
    color: var(--primary-color);
    margin-right: 8px;
}

.feat-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.feat-img-wrapper {
    margin-top: auto;
    border-radius: 16px;
    overflow: hidden;
}

.feat-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feat-middle {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: transparent;
    padding: 0;
}

.stat-box {
    background: #FFF;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #ECECEC;
}

.feat-tall {
    background: var(--light-gray);
    padding: 40px;
}

/* --- Partners Grid --- */
.partners { padding: 60px 0; text-align: center;}
.partners h2 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 48px); font-weight: 900; margin-bottom: 10px;}
.partners p { color: var(--text-muted); margin-bottom: 40px; font-weight: 500;}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #eee;
    margin-bottom: 40px;
}
.partner-logo {
    padding: 30px;
    display: grid;
    place-items: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    color: #999;
    min-height: 100px;
}
.partners-grid div:nth-child(4n) { border-right: none;}

/* --- Benefits with images (Section 2) --- */
.benefits-alt { padding: 80px 0; }
.benefits-alt-header { margin-bottom: 60px; max-width: 800px;}
.benefits-alt-header h2 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px, 4vw, 48px); line-height: 1.1;}
.benefits-alt-header h2 span { color: var(--primary-color); }

.alt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.alt-item { display: flex; gap: 25px; margin-bottom: 40px; align-items: flex-start; }
.alt-item .icon-box { width: 40px; flex-shrink: 0; color: var(--primary-color); font-size: 24px; }
.alt-item h3 { font-family: var(--font-heading); font-weight: 800; font-size: 20px; margin-bottom: 12px; }
.alt-item p { color: var(--text-muted); font-size: 15px; line-height: 1.5; }
.alt-img-wrap { border-radius: 20px; overflow: hidden; background: #f9f9f9; display: grid; place-items: center; padding: 30px; }
.alt-img-wrap img { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* --- Steps Timeline --- */
.steps-section { padding: 80px 0 120px; background: #F5F7F6; border-radius: 40px; margin: 40px 20px; }
.steps-section h2 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px, 4vw, 48px); color: var(--primary-color); margin-bottom: 70px; text-align: center; text-transform: uppercase;}
.steps-wrapper { position: relative; }
.steps-grid { 
    display: flex; 
    align-items: flex-start; 
    justify-content: space-between; 
    gap: 20px; 
    position: relative; 
    z-index: 2;
}
.step-card { 
    background: white; 
    padding: 40px; 
    border-radius: 24px; 
    position: relative; 
    width: 31%; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.step-card:nth-child(2) { margin-top: 50px; }
.step-card:nth-child(3) { padding: 60px 40px; background: var(--primary-color); color: white; }

.step-number { 
    position: absolute; 
    font-family: var(--font-heading); 
    font-weight: 900; 
    font-size: 140px; 
    color: rgba(0,0,0,0.03); 
    bottom: -20px; 
    right: 20px; 
    line-height: 1; 
    pointer-events: none;
}
.step-card:nth-child(3) .step-number { color: rgba(255,255,255,0.08); }

.step-card h3 { font-family: var(--font-heading); font-weight: 800; font-size: 24px; margin-bottom: 15px; position: relative; z-index: 2; }
.step-card p { color: var(--text-muted); font-size: 15px; position: relative; z-index: 2; }
.step-card:nth-child(3) p { color: rgba(255,255,255,0.8); }

/* Dynamic Connecting Arrows */
.connector-arrow {
    position: absolute;
    width: 120px;
    height: 60px;
    z-index: 1;
}
.arrow-1-2 {
    top: 40px;
    left: 28%;
}
.arrow-2-3 {
    top: 100px;
    left: 62%;
}
.path-animate {
    stroke-dasharray: 10;
    animation: dash 1s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -20; } }

@media (max-width: 992px) {
    .steps-grid { flex-direction: column; gap: 30px; align-items: center;}
    .step-card { width: 100%; max-width: 450px; }
    .step-card:nth-child(2) { margin-top: 0; }
    .connector-arrow { display: none; }
}

/* --- Interactive Map Section --- */
.map-section { padding: 80px 0; text-align: center; overflow: hidden;}
.map-section h2 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px, 5vw, 54px); margin-bottom: 10px;}
.map-section p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px;}

.map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.map-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
}

/* Map Hotspots */
.map-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
    transform: translate(-50%, -50%);
}
.map-point::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.map-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    background: #1a1a1a;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1a1a1a;
}
.map-point:hover .map-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}
.map-tooltip span {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}

/* Map Micro Dash Animation */
.path-animate-map {
    stroke-dasharray: 1;
    animation: dash-map 2s linear infinite;
}
@keyframes dash-map { to { stroke-dashoffset: -2; } }

/* --- Social Promo --- */
.social-promo { padding: 100px 0; background: #F5F7F6; border-radius: 40px 40px 0 0; margin-top: 60px; }
.social-promo h2 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(26px, 7vw, 72px); line-height: 1; text-transform: uppercase; margin-bottom: 60px; word-wrap: break-word; }
.social-promo h2 span { color: var(--primary-color); }

.social-content-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.social-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}
.big-arrow-svg {
    width: 140px;
    flex-shrink: 0;
}
.big-arrow-svg line, .big-arrow-svg polyline {
    stroke: #333;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social-text-info {
    font-weight: 600;
    font-size: 18px;
    color: #444;
    line-height: 1.3;
    max-width: 350px;
}

.social-btns-stacked {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}
.social-btn-pill {
    background: #000;
    color: #fff;
    padding: 12px 45px;
    border-radius: 50px;
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.social-btn-pill:hover {
    transform: translateX(-10px) scale(1.05);
    background: var(--primary-color);
}
.social-btn-pill:nth-child(2) {
    margin-right: 40px;
    font-size: 15px;
    padding: 10px 35px;
}

@media (max-width: 768px) {
    .social-content-flex { flex-direction: column; text-align: center; }
    .social-left { flex-direction: column; }
    .social-btns-stacked { align-items: center; }
    .social-btn-pill:nth-child(2) { margin-right: 0; }
}

/* --- CTA Form Section --- */
.cta-section {
    background-color: var(--text-dark);
    color: white;
    padding: 80px 0;
    border-radius: 40px;
    margin: 60px 20px;
}

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

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.lead-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: #FFF;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #81C784;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #E57373;
}

/* --- Rich Footer Styling --- */
.footer {
    background-color: #0d0f0e;
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0 0;
    margin-top: 80px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-brand p {
    margin-top: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
}
.footer-socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}
.soc-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: bold;
    transition: 0.3s;
}
.soc-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}
.footer-links h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    background: #090a09;
}
.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.designer-link {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
    transition: 0.3s;
}
.designer-link:hover {
    color: white;
    border-bottom-color: white;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .bottom-flex { flex-direction: column; text-align: center; }
}

/* --- Animations --- */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Responsive --- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .alt-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .header-right .contacts-mini {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none; /* Mobile menu logic can be added later if needed */
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}

/* Floating Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: "Inter", sans-serif;
}
.chat-bubble {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(19, 106, 94, 0.4);
    transition: all 0.3s;
    font-size: 24px;
}
.chat-bubble:hover { transform: scale(1.1); }
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.chat-header .close-chat {
    cursor: pointer;
    opacity: 0.8;
    font-size: 20px;
}
.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.msg-item {
    padding: 10px 15px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
}
.msg-item.user {
    background: #e0f2f1;
    color: #004d40;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.msg-item.admin {
    background: white;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.chat-footer {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
}
.chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}
.chat-input:focus { border-color: var(--primary-color); }
.chat-send-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* --- Comprehensive Mobile Adaptation Updates --- */
@media (max-width: 576px) {
    .container { padding: 0 16px; }
    
    /* Spacing cleanup */
    .hero, .partners, .benefits-alt, .steps-section, .map-section, .cta-section {
        padding: 40px 0;
        margin: 20px 10px;
    }
    
    /* Typography */
    .hero h1 { font-size: 32px; text-align: center; line-height: 1.2; }
    .hero-desc { font-size: 16px; text-align: center; }
    .hero-actions { flex-direction: column; gap: 12px; }
    
    /* Features Grid */
    .feat-card { padding: 25px; border-radius: 20px; }
    .feat-title { font-size: 24px; }
    .stat-number { font-size: 40px; }
    
    /* Partners list optimization */
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-logo { padding: 15px; min-height: 80px; }
    .partner-logo img { max-height: 50px !important; }
    
    /* Map Tooltips shrink for tiny screens */
    .map-tooltip {
        font-size: 11px;
        padding: 6px 10px;
        bottom: 20px;
    }
    .map-tooltip span { font-size: 9px; }
    
    /* Floating Chat Fullscreen Mode on Small Devices - SAFELY */
    .chat-window {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100% !important; 
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        border-radius: 0;
        transform: none !important; /* prevents offset transforms breaking width */
    }
    .chat-window.active {
        transform: none !important;
    }
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    .chat-header {
        padding: 20px;
        font-size: 18px;
    }
    
    /* Prevent horizontal bleed */
    html, body { 
        width: 100%; 
        overflow-x: hidden; 
        position: relative; 
    }
    
    /* CTA Layout cleanups */
    .cta-section { border-radius: 24px; }
    .cta-form-wrapper .lead-form { padding: 25px 20px; }
    
    /* Premium Header layout for Mobile - horizontal, compact */
    .header { padding: 12px 0; width: 100%; box-sizing: border-box; }
    .header-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; }
    .logo img { height: 35px !important; } /* Shrink logo */
    .header-right { justify-content: flex-end; }
    .header-right .btn-sm { padding: 8px 16px; font-size: 12px; } /* Compact button */

    /* Force buttons to reach full available width */
    .hero-actions { 
        width: 100%; 
        display: flex; 
        flex-direction: column; 
        gap: 15px; 
        align-items: stretch; /* Stretches children to full width */
    }
    .hero-actions .btn { 
        width: 100%; 
        text-align: center; 
        box-sizing: border-box;
    }
}

@media (max-width: 400px) {
    .partners-grid { grid-template-columns: 1fr; }
    .feat-title { font-size: 22px; }
    .hero h1 { font-size: 28px; }
}


@media (max-width: 576px) {
    .social-promo h2 { font-size: 28px !important; margin-bottom: 30px; }
    .social-promo { padding: 60px 0; }
    .big-arrow-svg { width: 100px; }
}


/* --- Extra Vivid Floating Particles Styles --- */
.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(19, 106, 94, 0.6);
    animation: floatVivid 15s infinite ease-in-out alternate;
    z-index: -1;
}
.p-1 { width: 15px; height: 15px; top: 15%; left: 5%; animation-delay: 0s; }
.p-2 { width: 8px; height: 8px; top: 45%; right: 10%; animation-delay: -5s; }
.p-3 { width: 20px; height: 20px; bottom: 20%; left: 15%; animation-delay: -10s; background: var(--amber); opacity: 0.15;}
.p-4 { width: 10px; height: 10px; top: 80%; right: 25%; animation-delay: -2s; }
.p-5 { width: 12px; height: 12px; top: 25%; left: 70%; animation-delay: -15s; }

@keyframes floatVivid {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(20px); }
    50% { transform: translateY(10px) translateX(40px); }
    75% { transform: translateY(30px) translateX(-10px); }
    100% { transform: translateY(0) translateX(0); }
}

/* Support Chat Registration Overlay */
.chat-reg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    animation: fadeInOverlay 0.3s ease forwards;
}
.chat-reg-overlay.active { display: flex; }
.chat-reg-overlay h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.chat-reg-overlay p { font-size: 13px; color: #666; margin-bottom: 20px; line-height: 1.5; }
.chat-reg-input {
    width: 100%; padding: 12px 16px; border: 1px solid #e5e7eb; border-radius: 10px;
    margin-bottom: 12px; font-family: inherit; outline: none; transition: 0.2s;
}
.chat-reg-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(19, 106, 94, 0.1); }
.chat-reg-btn {
    width: 100%; padding: 12px; background: var(--primary); color: #fff; border: none;
    border-radius: 10px; font-weight: 600; cursor: pointer; transition: 0.2s;
}
.chat-reg-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(19, 106, 94, 0.2); }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }

/* FAQ Accordion Style Module */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(19,106,94,0.02) 100%);
}
.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(19,106,94,0.08);
}
.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
    user-select: none;
    transition: color 0.2s;
}
.faq-item:hover .faq-question { color: var(--primary); }
.faq-icon {
    width: 24px; height: 24px; border-radius: 50%;
    background: #f5f7f6; display: grid; place-items: center;
    color: var(--primary); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    font-weight: 900; font-family: monospace;
}
.faq-item.active .faq-icon {
    background: var(--primary); color: #fff; transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    opacity: 0;
    padding: 0 30px;
}
.faq-item.active .faq-answer {
    max-height: 300px; /* safe generous ceiling */
    opacity: 1;
    padding-bottom: 30px;
}
.faq-answer p {
    color: #52525b;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}
.msg-operator-tag {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #136A5E; /* Active Emerald */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Chat Header Subtitle */
.chat-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px !important;
}
.chat-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.header-title {
    font-weight: 700;
    font-size: 15px;
}
.header-status {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-status::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

/* --- Error Pages Styles --- */
.error-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.error-code {
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    text-shadow: 0 0 50px rgba(19, 106, 94, 0.4);
    font-family: var(--font-heading);
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.error-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .error-code { font-size: 100px; }
    .error-title { font-size: 24px; }
    .error-desc { font-size: 16px; }
    .error-actions { flex-direction: column; }
}
