:root {
    --orange: #F97316;
    --orange-light: #FB923C;
    --orange-pale: #FFF7ED;
    --navy: #1E3A5F;
    --navy-dark: #152A45;
    --navy-light: #2D527A;
    --cream: #FFFBF5;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    --shadow-lg: 0 8px 30px rgba(30, 58, 95, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background: var(--cream);
}
h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; font-weight: 600; }

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 10px 0;
}
.nav-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-icon {
    font-size: 1.8rem;
    line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Fredoka', sans-serif; font-size: 1.35rem; font-weight: 600; color: var(--navy); }
.brand-highlight { color: var(--orange); }
.brand-tag { font-size: 0.7rem; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}
.nav-menu a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--orange); }
.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--orange-light); }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 65px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(30,58,95,0.4) 0%, rgba(30,58,95,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    color: var(--white);
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}
.hero-accent { color: var(--orange-light); }
.hero-desc {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto 28px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-trust {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-pill {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-light); border-color: var(--orange-light); }
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); }
.btn-navy-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-navy-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; text-align: center; margin-bottom: 10px; }

/* About */
.about { padding: 80px 0; background: var(--white); }
.about-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.about-header h2 { font-size: 2.2rem; margin-bottom: 14px; color: var(--navy); }
.about-header p { color: var(--gray); font-size: 1.05rem; }
.about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.about-card {
    background: var(--cream);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-pale);
}
.card-emoji { font-size: 2.2rem; margin-bottom: 12px; }
.about-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.about-card p { color: var(--gray); font-size: 0.9rem; }

/* Services */
.services { padding: 80px 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 12px; color: var(--navy); }
.section-header p { color: var(--gray); max-width: 500px; margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.svc-item {
    background: var(--white);
    padding: 28px 22px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.svc-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}
.svc-emoji { font-size: 2rem; margin-bottom: 10px; }
.svc-item h4 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); }
.svc-item p { color: var(--gray); font-size: 0.85rem; }

/* CTA Mid */
.cta-mid { padding: 60px 0; background: var(--navy); }
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.7); }

/* Contact */
.contact { padding: 80px 0; background: var(--white); }
.contact-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 12px; color: var(--navy); }
.contact-info p { color: var(--gray); margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-row-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-row-item strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-row-item a { color: var(--orange); text-decoration: none; font-weight: 600; }
.contact-row-item a:hover { text-decoration: underline; }
.contact-row-item span { color: var(--gray); }
.contact-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.card-visual { padding: 24px 24px 0; }
.card-visual img {
    width: 100%;
    border-radius: var(--radius-sm);
    display: block;
}
.card-cta {
    padding: 28px;
    text-align: center;
}
.card-cta h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.card-cta p { color: var(--gray); margin-bottom: 16px; font-size: 0.95rem; }

/* Footer */
.footer { background: var(--navy-dark); color: var(--white); padding: 48px 0 20px; }
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand .brand-icon { font-size: 1.6rem; }
.footer-brand .brand-name { color: var(--white); font-size: 1.2rem; }
.footer-desc p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-contact p { margin-bottom: 8px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-contact a { color: var(--orange-light); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-nav a:hover { color: var(--orange); }
.copyright { color: rgba(255,255,255,0.4); font-size: 0.8rem; width: 100%; text-align: center; margin-top: 8px; }

/* Responsive */
@media (max-width: 992px) {
    .about-cards { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-row { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 24px; }
    .cta-box { flex-direction: column; text-align: center; }
    .hero-title { font-size: 2.4rem; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    .nav-menu.active { transform: translateY(0); }
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero-title { font-size: 2rem; }
    .about-cards, .services-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.7rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .card-cta { padding: 24px; }
}
