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

:root {
    /* Main Palette */
    --bg-base: #112838;
    --bg-secondary: #173648;
    --primary: #19D3A2;
    --primary-hover: #13C493;
    --accent: #F7A61A;
    --accent-hover: #E39A16;
    
    /* Elements */
    --card-bg: #183646;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(25, 211, 162, 0.5);
    
    /* Text */
    --text-heading: #FFFFFF;
    --text-body: #B7C4CC;
    
    /* Shadows & Glows */
    --shadow-primary: 0 10px 25px rgba(25, 211, 162, 0.30);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.2);
    --glow: 0 0 20px rgba(25, 211, 162, 0.4);
    
    --transition: all 0.3s ease;
    --radius: 18px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    line-height: 1.2;
    font-weight: 700;
}

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

img { max-width: 100%; height: auto; border-radius: var(--radius); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* Top Bar */
.top-bar { background: var(--bg-secondary); padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-contact { display: flex; align-items: center; gap: 8px; color: var(--text-body); }
.top-bar-contact a { color: var(--primary); font-weight: 600; }

/* Header */
.site-header {
    background: rgba(17, 40, 56, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border);
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.brand { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text-heading); }
.brand .accent-text { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { color: var(--text-body); font-weight: 500; transition: var(--transition); }
.main-nav a:not(.btn):hover { color: var(--primary); }
.mobile-toggle { display: none; background: transparent; border: none; color: var(--text-heading); cursor: pointer; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 32px; border-radius: 999px; font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: var(--transition); text-align: center;
}
.btn-primary { background: var(--primary); color: var(--bg-base) !important; box-shadow: var(--shadow-primary); font-weight: 700; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: var(--glow); color: var(--bg-base) !important; }
.btn-secondary { background: var(--accent); color: var(--bg-base) !important; box-shadow: 0 10px 25px rgba(247, 166, 26, 0.3); font-weight: 700; }
.btn-secondary:hover { background: var(--accent-hover); transform: translateY(-3px); color: var(--bg-base) !important; }
.btn-outline { border: 1px solid var(--border); background: transparent; color: var(--text-heading) !important; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary) !important; }

/* Sections */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { font-size: 1.125rem; }
.badge { display: inline-block; padding: 6px 16px; background: rgba(25, 211, 162, 0.1); color: var(--primary); border-radius: 999px; font-weight: 500; font-size: 0.875rem; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(25, 211, 162, 0.2); }

/* Cards */
.card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 40px; transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-10px); border-color: var(--border-hover); box-shadow: var(--shadow-card), var(--glow); }

/* Hero */
.hero {
    position: relative; padding: 180px 0; background: radial-gradient(circle at 50% 0%, var(--bg-secondary) 0%, var(--bg-base) 70%);
    overflow: hidden; border-bottom: 1px solid var(--border);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 30px; }
.hero-content p { font-size: 1.25rem; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-image-wrapper { position: relative; z-index: 2; }
.hero-image-wrapper::after { content: ''; position: absolute; inset: -20px; background: var(--primary); filter: blur(100px); opacity: 0.15; z-index: -1; border-radius: 50%; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-icon { width: 60px; height: 60px; background: rgba(25, 211, 162, 0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--primary); transition: var(--transition); border: 1px solid rgba(25, 211, 162, 0.2); }
.card:hover .service-icon { background: var(--primary); color: var(--bg-base); }
.service-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.5rem; margin-bottom: 16px; }

/* Process */
.process-section { background: var(--bg-secondary); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
@media(max-width: 992px) { .process-steps { grid-template-columns: 1fr; } }
.step { text-align: center; position: relative; z-index: 2; }
.step-number { width: 80px; height: 80px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: var(--primary); margin: 0 auto 24px; position: relative; transition: var(--transition); }
.step:hover .step-number { border-color: var(--primary); box-shadow: var(--glow); }

/* Regions */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.region-link { background: var(--card-bg); border: 1px solid var(--border); padding: 15px 20px; border-radius: 12px; color: var(--text-body); font-weight: 500; display: block; text-align: center; transition: var(--transition); }
.region-link:hover { background: rgba(25, 211, 162, 0.1); border-color: var(--primary); color: var(--text-heading); transform: translateY(-3px); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 3.5rem; color: var(--primary); margin-bottom: 10px; }
@media(max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* FAQ */
.faq-section { background: var(--bg-secondary); }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 20px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--primary); }
.faq-question { padding: 25px; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 600; color: var(--text-heading); display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 25px 25px; color: var(--text-body); display: none; }

/* Contact CTA */
.cta-banner { background: var(--card-bg); padding: 80px; border-radius: 24px; border: 1px solid var(--border); position: relative; overflow: hidden; text-align: center; margin: 100px 0; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.cta-banner h2 { font-size: 3rem; margin-bottom: 20px; }
.cta-banner p { font-size: 1.25rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer { background: #0c1c28; border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-widget h3 { font-size: 1.25rem; margin-bottom: 30px; color: var(--text-heading); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: var(--text-body); }
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 30px 0; text-align: center; font-size: 0.875rem; }

/* Content Formatting (Blog & Pages) */
.page-content { padding: 80px 0; }
.rich-text h2 { margin: 60px 0 30px; font-size: 2.25rem; color: var(--text-heading); border-bottom: 1px solid var(--border); padding-bottom: 15px; }
.rich-text h3 { margin: 40px 0 20px; font-size: 1.75rem; }
.rich-text p { margin-bottom: 25px; font-size: 1.125rem; }
.rich-text ul { margin-bottom: 25px; padding-left: 20px; }
.rich-text li { margin-bottom: 10px; font-size: 1.125rem; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.8s ease forwards; }

/* Mobile Bottom Bar Default (Hidden) */
.mobile-bottom-bar { display: none; }

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    body { padding-bottom: 70px; /* Space for sticky bottom bar */ }
    .top-bar { display: none; /* Cleaner mobile header */ }
    .site-header { background: var(--bg-base); box-shadow: 0 4px 20px rgba(0,0,0,0.3); border-bottom: none; }
    .header-container { height: 70px; padding: 0 15px; }
    .brand { font-size: 1.3rem; }
    
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 2.5rem; margin-bottom: 20px; }
    .section-header h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    
    .cta-banner { padding: 40px 20px; margin: 50px 0; }
    .cta-banner h2 { font-size: 2rem; margin-bottom: 15px; }
    .cta-banner p { font-size: 1.1rem; margin-bottom: 30px; }
    .btn { padding: 14px 24px; font-size: 0.95rem; white-space: nowrap; }
    
    /* Mobile Sticky Bottom Bar */
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 9999;
    }
    .mobile-bar-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        gap: 4px;
        transition: transform 0.2s;
    }
    .mobile-bar-btn i { font-size: 1.2rem; margin-bottom: 2px; }
    .call-btn { 
        background: var(--primary); 
        color: var(--bg-base) !important;
        border-top-left-radius: 20px;
        border-top-right-radius: 5px;
        box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
    }
    .call-btn i { color: var(--bg-base) !important; }
    .wa-btn { 
        background: #25D366; 
        color: #ffffff !important;
        box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
    }
    .wa-btn i { color: #ffffff !important; }
}
