/* ============================================================
   SwiftShift Moving & Logistics — Ontario, Canada
   style.css
   ============================================================ */

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
    --navy: #0d1b2a;
    --navy-mid: #1a2e45;
    --gold: #c9a84c;
    --gold-light: #e8c96b;
    --cream: #f5f0e8;
    --white: #ffffff;
    --gray: #6b7280;
    --light-gray: #f0ede8;
    --green: #2e7d32;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────── */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 18px;
}

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

.section-divider {
    width: 52px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 28px;
}

.center-divider {
    margin-left: auto;
    margin-right: auto;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary,
.btn-outline,
.btn-pricing-primary,
.btn-pricing-outline {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-pricing-primary {
    background: var(--gold);
    color: var(--navy);
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-pricing-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-pricing-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(13, 27, 42, 0.25);
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-pricing-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(13, 27, 42, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: background 0.3s;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--navy);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--gold);
}

/* Desktop nav links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile menu */
nav.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 8px 0 20px;
}

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

nav.mobile-menu a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 6%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s, background 0.2s;
}

nav.mobile-menu a:last-child {
    border-bottom: none;
}

nav.mobile-menu a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.03);
}


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #0d1b2a 0%, #1a2e45 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 5% 160px;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

#home h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 22px;
    animation: fadeUp 0.7s 0.1s ease both;
}

#home h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 5%;
    display: flex;
    gap: 48px;
    z-index: 2;
    animation: fadeUp 0.7s 0.4s ease both;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}


/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 5%;
}

.about-visual {
    position: relative;
}

.about-img-block {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.about-svg {
    width: 65%;
    opacity: 0.3;
}

.about-badge-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    border-radius: 6px;
    text-align: center;
    z-index: 2;
}

.about-badge-box strong {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    display: block;
    line-height: 1;
}

.about-badge-box span {
    font-size: 0.78rem;
    font-weight: 600;
}

.about-text {
    padding-right: 10px;
}

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

.about-list {
    list-style: none;
    margin: 20px 0 32px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    color: var(--navy);
    font-weight: 500;
}

.about-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services {
    background: var(--navy);
    padding: 100px 5%;
}

.services-header {
    max-width: 560px;
    margin-bottom: 56px;
}

.services-header p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 34px 26px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.7;
}


/* ═══════════════════════════════════════════
   GALLERY / SLIDER
═══════════════════════════════════════════ */
#gallery {
    background: var(--light-gray);
    padding: 80px 0;
}

.gallery-header {
    padding: 0 5%;
    margin-bottom: 44px;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    height: 480px;
}

.slide-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg-1 {
    background: linear-gradient(135deg, #1a2e45 30%, #0d1b2a 100%);
}

.slide-bg-2 {
    background: linear-gradient(135deg, #2c3e50 30%, #1a252f 100%);
}

.slide-bg-3 {
    background: linear-gradient(135deg, #1e3a5f 30%, #0d1b2a 100%);
}

.slide-bg-4 {
    background: linear-gradient(135deg, #243447 30%, #162030 100%);
}

.slide-bg-5 {
    background: linear-gradient(135deg, #1b3a4b 30%, #0a1520 100%);
}

.slide-art {
    opacity: 0.2;
    max-width: 80%;
}

.slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 27, 42, 0.92));
    padding: 60px 5% 32px;
    color: var(--white);
}

.slide-label h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    margin-bottom: 6px;
}

.slide-label p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    padding: 0 5%;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--navy);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.slider-btn:hover {
    background: var(--navy);
}

.slider-btn svg {
    stroke: var(--navy);
    width: 18px;
    height: 18px;
    fill: none;
    stroke-width: 2;
    transition: stroke 0.2s;
}

.slider-btn:hover svg {
    stroke: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(13, 27, 42, 0.25);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.35);
}


/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
#pricing {
    background: var(--cream);
    padding: 100px 5%;
}

.pricing-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.pricing-subtext {
    color: var(--gray);
    line-height: 1.75;
    font-size: 1rem;
    margin-top: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* ── Individual card ── */
.pricing-card {
    background: var(--white);
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 10px;
    padding: 36px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13, 27, 42, 0.1);
}

/* Featured (middle) card */
.pricing-featured {
    background: var(--navy);
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.18);
}

.pricing-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(13, 27, 42, 0.25);
}

/* "Most Popular" ribbon */
.pricing-badge {
    position: absolute;
    top: 20px;
    right: -28px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 36px;
    transform: rotate(45deg);
    transform-origin: center;
    right: -22px;
    top: 16px;
}

.pricing-top {
    margin-bottom: 18px;
}

.pricing-tier {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-featured .pricing-tier {
    color: var(--white);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-from {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-featured .price-from {
    color: rgba(255, 255, 255, 0.5);
}

.price-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--gold);
    line-height: 1;
}

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

.pricing-featured .price-unit {
    color: rgba(255, 255, 255, 0.5);
}

/* Paragraph description */
.pricing-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 22px;
    flex-grow: 0;
}

.pricing-featured .pricing-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* Feature list */
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-yes {
    color: var(--navy);
    font-weight: 500;
}

.feat-no {
    color: var(--gray);
    opacity: 0.55;
}

.pricing-featured .feat-yes {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-featured .feat-no {
    color: rgba(255, 255, 255, 0.3);
}

.feat-yes::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feat-no::before {
    content: '✕';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(13, 27, 42, 0.06);
    color: var(--gray);
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.pricing-featured .feat-no::before {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
}

/* Override outline btn colors inside featured card */
.pricing-featured .btn-pricing-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-featured .btn-pricing-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Footnote */
.pricing-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

.pricing-note a {
    color: var(--gold);
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}


/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
#testimonials {
    background: var(--white);
    padding: 100px 5%;
}

.testimonials-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 56px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonial-card {
    background: var(--cream);
    border-radius: 8px;
    padding: 34px 28px;
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(13, 27, 42, 0.1);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.22;
    line-height: 0.5;
    margin-bottom: 18px;
    display: block;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.stars span {
    color: var(--gold);
    font-size: 0.88rem;
}

.testimonial-card>p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.av-1 {
    background: linear-gradient(135deg, #c9a84c, #8b6914);
}

.av-2 {
    background: linear-gradient(135deg, #1a2e45, #0d1b2a);
}

.av-3 {
    background: linear-gradient(135deg, #c0392b, #7b241c);
}

.author-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.93rem;
}

.author-location {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 2px;
}


/* ═══════════════════════════════════════════
   CONTACT  (info cards, no form)
═══════════════════════════════════════════ */
#contact {
    background: var(--navy);
    padding: 100px 5%;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.contact-intro {
    margin-top: 8px;
    font-size: 1rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: 22px 24px;
    transition: background 0.2s, border-color 0.2s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.contact-card>div strong {
    display: block;
    color: var(--white);
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.contact-card>div span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-card>div small {
    display: block;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
    margin-top: 2px;
}


/* ═══════════════════════════════════════════
   SERVICE AREAS
═══════════════════════════════════════════ */
#areas {
    background: var(--white);
    padding: 90px 5%;
}

.areas-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.areas-intro p {
    color: var(--gray);
    line-height: 1.75;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}

.area-card {
    background: var(--light-gray);
    border: 1px solid rgba(13, 27, 42, 0.06);
    border-radius: 8px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s, transform 0.2s;
}

.area-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.area-card strong {
    font-size: 0.85rem;
    color: var(--navy);
    line-height: 1.3;
}

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


/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#faq {
    background: var(--cream);
    padding: 90px 5%;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.faq-q:hover {
    background: rgba(201, 168, 76, 0.04);
}

.faq-q span {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}

.faq-q[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
}

.faq-a.open {
    max-height: 240px;
    padding: 0 24px 20px;
}

.faq-a p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 0.92rem;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer#footer {
    background: #070f18;
    color: rgba(255, 255, 255, 0.5);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
    padding: 68px 5% 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo-text {
    font-size: 1.1rem;
}

.footer-desc {
    font-size: 0.87rem;
    line-height: 1.75;
    margin: 16px 0 22px;
    max-width: 280px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.2s, color 0.2s;
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
}

.social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    stroke: none;
}

.footer-col h4 {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.87rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.44);
    line-height: 1.5;
}

.footer-contact-list li svg {
    width: 13px;
    height: 13px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 5%;
    font-size: 0.79rem;
}


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

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {

    /* Nav */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-stats {
        position: static;
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 28px;
    }

    .hero-content {
        padding-bottom: 60px;
    }

    /* About */
    #about {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 70px 5%;
    }

    .about-text {
        padding-right: 0;
    }

    .about-badge-box {
        right: 0;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Slider */
    .slide {
        height: 300px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* FAQ */
    .faq-a.open {
        max-height: 320px;
    }
}

@media (max-width: 480px) {
    #home h1 {
        font-size: 2.4rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns a {
        text-align: center;
    }
}