/* ========== GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
     background-color: #f8fafc;  /* subtle gray-blue */
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* ========== HEADER ========== */
.navbar {
    background: #ffffff;  /* solid white, no blur */
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 0.8rem 0;
    border-bottom: 1px solid #eef2f0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    color: #0b3b2f;
    letter-spacing: -0.3px;
}

.brand-icon {
    background: #0b3b2f;
    color: white;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 12px;
    margin-right: 6px;
}

.nav-link {
    font-weight: 500;
    color: #2c3e4e;
    transition: 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: #166b5c;
}

.btn-linkedin {
    background: #0a66c2;
    color: white;
    border-radius: 40px;
    padding: 0.4rem 1rem;
    font-weight: 500;
}

.btn-linkedin:hover {
    background: #004182;
    color: white;
}

/* STICKY HEADER EFFECT */
.sticky-top {
    top: 0;
    z-index: 1030;
}

/* ========== HERO ========== */
.hero-section {
    margin-top: 0;
    position: relative;
    background: linear-gradient(135deg, #0b3b2f 0%, #166b5c 100%);
    padding: 4rem 0 5rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.hero-disclaimer {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    font-size: 0.9rem;
    color: #f8fafc;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #0b3b2f;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-outline-light:hover {
    background: white;
    color: #0b3b2f;
    transform: translateY(-2px);
}

/* ========== WHY CARD ========== */
.why-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.why-icon {
    font-size: 4rem;
    color: #166b5c;
}

.why-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-text {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    background: white;
    border-radius: 2rem;
    padding: 2rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #ecfdf5;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b3b2f;
}

.stat-label {
    font-size: 0.9rem;
    color: #4b6b7f;
}

/* ========== FORM CARDS ========== */
.form-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s;
    height: 100%;
    border: 1px solid #eef2ff;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.1);
}

.form-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.form-card p {
    color: #5b6e8c;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-card form p {
    margin-bottom: 1rem;
}

.form-card input, 
.form-card select, 
.form-card textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: #fafcff;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    outline: none;
    border-color: #166b5c;
    box-shadow: 0 0 0 3px rgba(22,107,92,0.1);
}

.form-card textarea {
    border-radius: 1rem;
}

.form-card button {
    margin-top: 0.5rem;
    border-radius: 60px;
    font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
    background: #0a1c1f;  /* slightly different dark than before #0f1a1c */
    color: #cddfe6;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-badge {
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
}

.footer h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b0c4d0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.social-icons a {
    color: #d4dfe6;
    font-size: 1.4rem;
    margin-right: 1rem;
    transition: 0.2s;
}

.social-icons a:hover {
    color: white;
}

.footer-address {
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.7rem;
    opacity: 0.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary, .btn-outline-light {
        width: 80%;
    }
    .why-title {
        font-size: 1.4rem;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .footer .row > div {
        text-align: center;
    }
}


/* ========== CONTACT SECTION ========== */
.contact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border: 1px solid #eef2ff;
    transition: transform 0.2s ease, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}

.contact-item {
    padding: 1rem;
    transition: all 0.2s ease;
    border-radius: 1rem;
}

.contact-item:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #166b5c;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-item a {
    color: #166b5c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #0b3b2f;
    text-decoration: underline;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-card, .form-card, .trust-strip, .contact-card {
    animation: fadeInUp 0.6s ease-out;
}


/* ========== SOCIAL NAV ICONS ========== */
.social-nav-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon {
    color: #4a627a;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #166b5c;
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher .btn-outline-secondary {
    border-color: #cbd5e1;
    color: #2c3e4e;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 40px;
}

.language-switcher .btn-outline-secondary:hover {
    background-color: #166b5c;
    border-color: #166b5c;
    color: white;
}

.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #eef2f0;
    padding: 0.5rem 0;
}

.dropdown-item {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    transition: 0.2s;
}

.dropdown-item:hover {
    background-color: #f0fdf4;
    color: #166b5c;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .social-nav-icons {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .language-switcher {
        text-align: center;
        margin: 0.5rem 0;
    }
}


/* ========== FOOTER SOCIAL ICONS ========== */
.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.social-footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cddfe6;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-footer-icon:hover {
    transform: translateY(-3px);
    color: white;
}

/* Footer social icons */
.social-footer-icon[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: white;
}

/* Keep existing hover styles for other platforms */
.social-footer-icon[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.social-footer-icon[aria-label="YouTube"]:hover {
    background: #ff0000;
    color: white;
}

.social-footer-icon[aria-label="X (Twitter)"]:hover {
    background: #000000;
    color: white;
}

.social-footer-icon[aria-label="LinkedIn"]:hover {
    background: #0a66c2;
    color: white;
}

.social-footer-icon[aria-label="Email"]:hover {
    background: #166b5c;
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}


