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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f0f5fa;
    color: #1e2b3a;
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    font-weight: 400;
    line-height: 1.7;
    color: #1e2b3a;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 53, 93, 0.08);
    border-bottom: 1px solid rgba(1, 172, 182, 0.15);
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 40px rgba(0, 53, 93, 0.06), 0 4px 12px rgba(0, 53, 93, 0.03);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 53, 93, 0.09), 0 6px 18px rgba(0, 53, 93, 0.04);
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-link {
    font-weight: 500;
    color: #1e2b3a !important;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(1, 172, 182, 0.10);
    color: #00355d !important;
}

.btn-fb {
    background: rgba(1, 172, 182, 0.08);
    border-radius: 40px;
    padding: 0.5rem 1.2rem !important;
    color: #00355d !important;
    font-weight: 600;
}

.btn-fb:hover {
    background: #00355d;
    color: #ffffff !important;
}

.btn-email {
    background: rgba(253, 188, 10, 0.15);
    border-radius: 40px;
    padding: 0.5rem 1.2rem !important;
    color: #00355d !important;
    font-weight: 600;
}

.btn-email:hover {
    background: #fdbc0a;
    color: #00355d !important;
}

.btn-fb-main {
    background: #00355d;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
    font-weight: 600;
}

.btn-fb-main:hover {
    background: #01acb6;
    color: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(1, 172, 182, 0.25);
}

.btn-email-main {
    background: #fdbc0a;
    color: #00355d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
    font-weight: 600;
}

.btn-email-main:hover {
    background: #e8ac08;
    color: #00355d;
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(253, 188, 10, 0.30);
}

.hero-section {
    min-height: 90vh;
    background: linear-gradient(145deg, rgba(1, 172, 182, 0.03) 0%, rgba(0, 53, 93, 0.02) 100%);
}

.bg-accent {
    background-color: #fdbc0a;
    color: #00355d;
}

img.rounded-4 {
    border-radius: 28px !important;
}

img.rounded-3 {
    border-radius: 18px !important;
}

@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem !important;
        border-radius: 24px;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .navbar-brand span {
        font-size: 1rem;
    }

    body {
        padding-top: 68px;
    }

    .btn-fb-main,
    .btn-email-main {
        width: 100%;
        justify-content: center;
    }

    .glass-nav .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .glass-card {
        padding: 1.25rem !important;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .btn-fb,
    .btn-email {
        padding: 0.4rem 1rem !important;
        font-size: 0.9rem;
    }

    img {
        max-height: 200px !important;
    }
}

::-webkit-scrollbar {
    width: 8px;
    background: #e9edf2;
}

::-webkit-scrollbar-thumb {
    background: #01acb6;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00355d;
}

footer {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(1, 172, 182, 0.10);
}

footer a {
    font-weight: 500;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #01acb6 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(1, 172, 182, 0.25);
}

.badge {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.card-img-overlay {
    border-radius: 28px;
}

[class*="bi-"] {
    vertical-align: middle;
}

section {
    scroll-margin-top: 80px;
}

.glass-card .btn {
    border-radius: 60px;
}

.glass-card h2,
.glass-card h4 {
    letter-spacing: -0.01em;
}

.glass-card p:last-child {
    margin-bottom: 0;
}

.img-fluid {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.01);
    filter: brightness(1.02);
}

.navbar-nav .nav-link.active {
    background: rgba(1, 172, 182, 0.12);
    font-weight: 600;
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1.2rem;
    }

    .navbar-nav .nav-link.btn-fb,
    .navbar-nav .nav-link.btn-email {
        padding: 0.5rem 1.6rem !important;
    }
}