* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fbfd;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

:root {
    --navy: #052f4f;
    
    --gold: #00c4cc;
    
    --gold-light: #b2f0f5;
    --teal: #118f8f;
    --white: #ffffff;
    --off-white: #f2fbfc;
    --gray-100: #e6f4f6;
    --gray-200: #cce9ed;
    --gray-600: #3a5560;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(5, 47, 79, 0.03);
    --shadow-md: 0 12px 30px rgba(5, 47, 79, 0.08);
    --border-radius-card: 1.25rem;
}
/*
:root {
    --navy: #0f2f1a;
    --gold: #3ae67a;
    --gold-light: #b2f5dc;
    --teal: #217f66;
    --white: #ffffff;
    --off-white: #f2fcf7;
    --gray-100: #e6f8ef;
    --gray-200: #cceee0;
    --gray-600: #3a5647;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(15, 47, 26, 0.03);
    --shadow-md: 0 12px 30px rgba(15, 47, 26, 0.08);
    --border-radius-card: 1.25rem;
}
*/
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header / Sticky */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    z-index: 100;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--gold);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    color: var(--navy);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.header-cta {
    background: var(--navy);
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: 0.2s;
}

.header-cta:hover {
    background: var(--gold);
    color: var(--navy) !important;
    border-color: var(--gold);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--navy);
    cursor: pointer;
}

/* Hero section */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f3f7fc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--gold);
    border-bottom: 3px solid var(--gold-light);
}

.hero-subhead {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.hero-image {


    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image i {
    font-size: 8rem;
    color: var(--navy);
    opacity: 0.3;
}

/* Section spacing */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--gray-600);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin: 1.5rem 0;
    color: #334155;
}

/* Why choose us cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 1.8rem 1.2rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit-card i {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.benefit-card p {
    font-size: 0.9rem;
    color: #475569;
}

/* Service category */
.service-category {
    margin-bottom: 3.5rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    border-left: 5px solid var(--gold);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.15s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    border-color: var(--gold-light);
}

.service-card i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.service-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0.5rem 0;
}

.learn-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.learn-link:hover {
    color: var(--navy);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
}

.client {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.client img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* FAQ accordion */
.faq-item {
    background: white;
    border-radius: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.4rem 1.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.8rem 1.4rem;
    color: #334155;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

/* Form modules */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

input,
select,
textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    font-family: inherit;
    font-size: 1rem;
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.btn-submit {
    background: var(--navy);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 600;
    cursor: pointer;
}

.confirmation-msg {
    background: #e6f7e6;
    color: #1e7e34;
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
    display: none;
}

/* Footer */
.footer {
    background: var(--navy);
    color: #cddbe9;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}

.footer a {
    color: #cddbe9;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.4rem;
    margin: 1rem 0;
}

.footer-bottom {
    border-top: 1px solid #1e3a5f;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal-card {
    background: white;
    max-width: 600px;
    width: 90%;
    padding: 2.5rem;
    border-radius: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    float: right;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .header-cta {
        margin-top: 0.5rem;
    }
}