﻿/* ============================================================
   BLUE OCEAN PACKERS AND MOVERS — Main Stylesheet
   Color Palette: Navy Blue, Ocean Blue, Golden Yellow, White
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
    --navy: #0a1f44;
    --ocean: #1565C0;
    --sky: #1E88E5;
    --gold: #FFB300;
    --gold-dark: #F57F17;
    --white: #ffffff;
    --light: #F0F4FF;
    --light2: #E3ECFF;
    --gray: #6B7A99;
    --dark-text: #1a2340;
    --card-bg: #ffffff;
    --shadow: 0 8px 40px rgba(10,31,68,0.10);
    --radius: 14px;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

/* ── Utility ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-size: clamp(1.8rem,3.5vw,2.6rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--gold);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(255,179,0,.35);
    text-decoration: none;
}

    .btn-primary:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(255,179,0,.45);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

    .btn-secondary:hover {
        background: var(--white);
        color: var(--navy);
    }

.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

    .btn-outline-navy:hover {
        background: var(--navy);
        color: var(--white);
    }

/* ── TOP BAR ── */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    padding: 8px 0;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .top-bar a {
        color: var(--gold);
        font-weight: 700;
    }

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar i {
    margin-right: 4px;
}

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(10,31,68,.10);
    padding: 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
}

.logo-text {
    line-height: 1.1;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--navy);
    letter-spacing: -.5px;
}

.logo-tagline {
    font-size: .72rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-links a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: .88rem;
        color: var(--navy);
        padding: 8px 14px;
        border-radius: 8px;
        transition: var(--transition);
        white-space: nowrap;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--ocean);
            background: var(--light);
        }

.nav-cta {
    margin-left: 10px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 2.5px;
        background: var(--navy);
        border-radius: 2px;
        margin: 5px 0;
        transition: var(--transition);
    }

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a5e 55%, #1565C0 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.wave-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,179,0,.15);
    border: 1px solid rgba(255,179,0,.4);
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 22px;
}

    .hero h1 span {
        color: var(--gold);
        display: block;
    }

.hero-desc {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.stat-item {
    border-left: 3px solid var(--gold);
    padding-left: 14px;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 2px;
}

/* ── QUICK QUOTE CARD ── */
.quote-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    position: relative;
    z-index: 2;
}

.quote-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.quote-card-sub {
    font-size: .84rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        font-size: .8rem;
        font-weight: 700;
        color: var(--navy);
        display: block;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid #dde3f0;
        border-radius: 10px;
        font-family: 'Lato', sans-serif;
        font-size: .95rem;
        color: var(--dark-text);
        background: var(--light);
        transition: var(--transition);
        outline: none;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--ocean);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(21,101,192,.12);
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 8px;
}

/* ── TRUST BADGES ── */
.trust-bar {
    background: var(--light);
    border-bottom: 1px solid var(--light2);
    padding: 18px 0;
}

    .trust-bar .container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--navy);
}

    .trust-item i {
        font-size: 1.3rem;
        color: var(--gold);
    }

/* ── SERVICES ── */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1.5px solid #e8edf8;
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--ocean), var(--gold));
        transform: scaleX(0);
        transition: var(--transition);
        transform-origin: left;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
        border-color: var(--sky);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--light), var(--light2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--ocean);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--ocean), var(--sky));
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-card p {
    font-size: .92rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ── WHY CHOOSE US ── */
.why-us {
    background: linear-gradient(135deg, var(--navy), #1565C0);
}

    .why-us .section-title {
        color: var(--white);
    }

    .why-us .section-sub {
        color: rgba(255,255,255,.7);
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 30px 26px;
    text-align: center;
    transition: var(--transition);
}

    .why-card:hover {
        background: rgba(255,255,255,.12);
        transform: translateY(-4px);
    }

.why-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--navy);
    margin: 0 auto 18px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.why-card p {
    font-size: .88rem;
    color: rgba(255,255,255,.7);
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: 0 4px 24px rgba(10,31,68,.07);
    transition: var(--transition);
    position: relative;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--sky));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.author-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--navy);
}

.author-title {
    font-size: .8rem;
    color: var(--gray);
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    color: var(--light2);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 70px 0;
    text-align: center;
}

    .cta-banner h2 {
        font-size: clamp(1.8rem,3.5vw,2.6rem);
        font-weight: 900;
        color: var(--navy);
        margin-bottom: 14px;
    }

    .cta-banner p {
        color: rgba(10,31,68,.75);
        font-size: 1.05rem;
        margin-bottom: 34px;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ── FAQ ── */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1.5px solid #e8edf8;
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}

    .faq-q:hover {
        background: var(--light);
    }

    .faq-q.open {
        background: var(--navy);
        color: var(--white);
    }

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-q.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 20px 26px;
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.75;
    border-top: 1px solid #e8edf8;
}

    .faq-a.open {
        display: block;
    }

/* ── PARTNER / LOGO SECTION ── */
.partners {
    background: var(--light);
    border-top: 1px solid var(--light2);
}

.partners-note {
    font-size: .84rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 36px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.partner-logo-box {
    background: var(--white);
    border: 1.5px solid #e8edf8;
    border-radius: 12px;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(10,31,68,.05);
}

    .partner-logo-box:hover {
        border-color: var(--ocean);
        box-shadow: var(--shadow);
    }

.partner-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.partner-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

    .partner-logo-text span {
        display: block;
        font-size: .68rem;
        color: var(--gray);
        font-weight: 600;
        letter-spacing: .5px;
    }

/* ── ABOUT PAGE ── */
.about-hero {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    padding: 100px 0 80px;
    text-align: center;
}

    .about-hero h1 {
        font-size: clamp(2rem,4vw,3rem);
        color: var(--white);
        font-weight: 900;
        margin-bottom: 14px;
    }

    .about-hero p {
        color: rgba(255,255,255,.8);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

    .breadcrumb a {
        color: var(--gold);
        font-size: .85rem;
        font-weight: 600;
    }

    .breadcrumb span {
        color: rgba(255,255,255,.5);
        font-size: .85rem;
    }

.about-story {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-placeholder {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--light), var(--light2));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-inner {
    text-align: center;
}

    .about-img-inner i {
        font-size: 5rem;
        color: var(--ocean);
        opacity: .4;
    }

    .about-img-inner p {
        color: var(--gray);
        font-size: .85rem;
        margin-top: 10px;
    }

.about-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    border-radius: 12px;
    padding: 14px 20px;
    font-family: 'Montserrat', sans-serif;
}

    .about-badge-float .num {
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--navy);
        line-height: 1;
    }

    .about-badge-float .label {
        font-size: .75rem;
        color: var(--navy);
        font-weight: 700;
    }

.about-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.value-dot {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--ocean);
}

.value-item strong {
    font-family: 'Montserrat', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
}

.value-item p {
    font-size: .84rem;
    color: var(--gray);
    margin: 0;
}

.team-section {
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    padding-bottom: 24px;
    box-shadow: 0 4px 20px rgba(10,31,68,.07);
    transition: var(--transition);
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.team-avatar {
    height: 180px;
    background: linear-gradient(135deg, var(--ocean), var(--sky));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .team-avatar i {
        font-size: 4rem;
        color: rgba(255,255,255,.7);
    }

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-card span {
    font-size: .85rem;
    color: var(--gray);
}

/* ── SERVICES PAGE ── */
.services-hero {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    padding: 100px 0 80px;
    text-align: center;
}

    .services-hero h1 {
        font-size: clamp(2rem,4vw,3rem);
        color: var(--white);
        font-weight: 900;
        margin-bottom: 14px;
    }

    .services-hero p {
        color: rgba(255,255,255,.8);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto;
    }

.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--light2);
}

    .service-detail:nth-child(even) {
        background: var(--light);
    }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

    .service-detail:nth-child(even) .service-detail-grid > * {
        direction: ltr;
    }

.service-detail-img {
    border-radius: 20px;
    background: linear-gradient(135deg, var(--light), var(--light2));
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
}

    .service-detail-img i {
        font-size: 5rem;
        color: var(--ocean);
        opacity: .5;
    }

    .service-detail-img p {
        color: var(--gray);
        font-size: .85rem;
    }

.service-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: var(--dark-text);
}

    .feature-item i {
        color: var(--gold);
        font-size: 1rem;
    }

/* ── PRICING PAGE ── */
.pricing-hero {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    padding: 100px 0 80px;
    text-align: center;
}

    .pricing-hero h1 {
        font-size: clamp(2rem,4vw,3rem);
        color: var(--white);
        font-weight: 900;
        margin-bottom: 14px;
    }

    .pricing-hero p {
        color: rgba(255,255,255,.8);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto;
    }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    border: 2px solid #e8edf8;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(10,31,68,.07);
}

    .pricing-card:hover {
        border-color: var(--sky);
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

    .pricing-card.popular {
        border-color: var(--gold);
        background: var(--navy);
        transform: scale(1.03);
        box-shadow: 0 20px 60px rgba(10,31,68,.25);
    }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: .5px;
}

.plan-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.pricing-card.popular .plan-name {
    color: var(--white);
}

.plan-desc {
    font-size: .88rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.pricing-card.popular .plan-desc {
    color: rgba(255,255,255,.65);
}

.plan-price {
    margin-bottom: 24px;
}

    .plan-price .from {
        font-size: .8rem;
        color: var(--gray);
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

.pricing-card.popular .plan-price .from {
    color: rgba(255,255,255,.6);
}

.plan-price .amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
}

.pricing-card.popular .plan-price .amount {
    color: var(--gold);
}

.plan-price .unit {
    font-size: .85rem;
    color: var(--gray);
}

.plan-features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .plan-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .92rem;
        color: var(--dark-text);
    }

.pricing-card.popular .plan-features li {
    color: rgba(255,255,255,.85);
}

.plan-features li i {
    color: var(--gold);
    font-size: .9rem;
}

.quote-section {
    background: var(--light);
}

.quote-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 44px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

    .quote-form-card h2 {
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--navy);
        margin-bottom: 6px;
    }

    .quote-form-card p {
        color: var(--gray);
        margin-bottom: 34px;
    }

/* ── CONTACT PAGE ── */
.contact-hero {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    padding: 100px 0 80px;
    text-align: center;
}

    .contact-hero h1 {
        font-size: clamp(2rem,4vw,3rem);
        color: var(--white);
        font-weight: 900;
        margin-bottom: 14px;
    }

    .contact-hero p {
        color: rgba(255,255,255,.8);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ocean);
    flex-shrink: 0;
}

.contact-item-text strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy);
    display: block;
    margin-bottom: 2px;
}

.contact-item-text span {
    font-size: .9rem;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

    .social-link.fb {
        background: #1877F2;
    }

    .social-link.tw {
        background: #1DA1F2;
    }

    .social-link.in {
        background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    }

    .social-link.yt {
        background: #FF0000;
    }

    .social-link.wa {
        background: #25D366;
    }

    .social-link:hover {
        opacity: .85;
        transform: translateY(-2px);
    }

.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

    .contact-form-wrap h3 {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 24px;
    }

.map-container {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .map-container iframe {
        width: 100%;
        height: 400px;
        border: none;
        display: block;
    }

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

    .map-placeholder i {
        font-size: 3rem;
        color: var(--gray);
        opacity: .4;
    }

    .map-placeholder p {
        color: var(--gray);
        font-size: .9rem;
    }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-name {
    color: var(--white);
    font-size: 1.15rem;
}

.footer-brand .logo-tagline {
    color: rgba(255,255,255,.5);
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.75;
    margin: 18px 0 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
    }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: .9rem;
        color: rgba(255,255,255,.65);
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

        .footer-links a i {
            font-size: .7rem;
            color: var(--gold);
        }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
}

    .footer-contact-item i {
        color: var(--gold);
        margin-top: 2px;
        flex-shrink: 0;
    }

    .footer-contact-item a {
        color: var(--gold);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
}

    .footer-bottom a {
        color: var(--gold);
    }

/* ── FLOATING BUTTONS ── */
.float-btn-group {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

    .float-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(0,0,0,.3);
    }

.float-wa {
    background: #25D366;
}

.float-call {
    background: var(--ocean);
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(10,31,68,.12);
    padding: 20px 24px;
    border-top: 1px solid var(--light2);
    flex-direction: column;
    gap: 4px;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: .95rem;
        color: var(--navy);
        padding: 12px 16px;
        border-radius: 10px;
        transition: var(--transition);
    }

        .mobile-menu a:hover {
            background: var(--light);
            color: var(--ocean);
        }

    .mobile-menu .btn-primary {
        margin-top: 8px;
        justify-content: center;
    }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-fadeup {
    animation: fadeUp .7s ease both;
}

.animate-delay1 {
    animation-delay: .1s;
}

.animate-delay2 {
    animation-delay: .2s;
}

.animate-delay3 {
    animation-delay: .3s;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    padding: 80px 0 60px;
    text-align: center;
}

    .page-header h1 {
        font-size: clamp(2rem,4vw,3rem);
        color: var(--white);
        font-weight: 900;
        margin-bottom: 12px;
    }

    .page-header p {
        color: rgba(255,255,255,.8);
        font-size: 1.05rem;
    }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .quote-card {
        max-width: 520px;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .top-bar .top-bar-left {
        display: none;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero {
        min-height: unset;
        padding: 60px 0 40px;
    }

    .hero-stats {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .quote-form-card {
        padding: 30px 22px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .float-btn-group {
        bottom: 20px;
        right: 16px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .why-grid, .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 480px) {
    .trust-bar .container {
        justify-content: flex-start;
        gap: 12px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SUCCESS MESSAGE ── */
.form-success {
    display: none;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    color: #2e7d32;
    font-weight: 600;
    font-size: .95rem;
    margin-top: 14px;
}

    .form-success.show {
        display: block;
    }

/* ── ACTIVE NAV ── */
.nav-active {
    color: var(--ocean) !important;
}
