/* ══════════════════════════════════════════════
   Mo's Handyman Services — style.css
   ══════════════════════════════════════════════ */

/* ── Google Fonts loaded in HTML head ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #1a2744;
    --blue: #2c5f8a;
    --gold: #e0a830;
    --gold-dark: #c4921e;
    --light: #f5f7fa;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --radius: 10px;
    --radius-pill: 50px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    color: var(--text);
    line-height: 1.65;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ── Scroll animation base ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Top Bar ── */
.top-bar {
    background: var(--navy);
    color: #ccc;
    font-size: 0.82rem;
    padding: 7px 0;
    text-align: center;
    letter-spacing: 0.2px;
}
.top-bar span { margin: 0 12px; }
.top-bar a { color: #ccc; text-decoration: none; }

/* ── Header ── */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}
.header.scrolled {
    box-shadow: var(--shadow-lg);
}
.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    line-height: 1.2;
}
.logo img {
    height: 90px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}
.header.scrolled .logo img {
    height: 50px;
}
.logo small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.55em;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 480px) {
    .logo img {
        height: 44px;
    }
}

/* ── Nav links ── */
.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.header-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}
.header-nav a:hover {
    color: var(--navy);
}
.header-nav a:hover::after {
    width: 100%;
}

/* ── Mobile Hamburger Menu ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 210;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 36, 0.95);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 205;
    padding: 80px 24px 40px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-nav li {
    border-bottom: 1px solid rgba(26,39,68,0.08);
}
.mobile-menu-nav a {
    display: block;
    padding: 18px 0;
    color: var(--navy);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-nav a:hover {
    color: var(--gold-dark);
    padding-left: 8px;
}
.mobile-menu-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(26,39,68,0.1);
}
.mobile-menu-cta .phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--navy);
}
.mobile-menu-cta .btn {
    width: 100%;
    text-align: center;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.phone-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
}
.phone-link:hover {
    color: var(--gold-dark);
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
    text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(224,168,48,0.3);
}
.btn-primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 4px 16px rgba(224,168,48,0.45);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover { background: #f0f0f0; }

/* ── Hero ── */
.hero {
    background: linear-gradient(165deg, #0f1724 0%, #1a2744 40%, #0f1724 100%);
    color: var(--white);
    padding: 120px 24px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Luxury pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Ambient glow effects */
.hero .hero-glow-left {
    position: absolute;
    top: -30%;
    left: -15%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero .hero-glow-right {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero h1 span {
    background: linear-gradient(135deg, #f5d485 0%, var(--gold) 50%, #c4921e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns .btn-white {
    background: linear-gradient(135deg, var(--gold) 0%, #c4921e 100%);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

.hero-btns .btn-white:hover {
    box-shadow: 0 6px 30px rgba(212,175,55,0.5);
    transform: translateY(-2px);
}

.hero-btns .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
}

.hero-btns .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,175,55,0.3);
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.3);
}

/* Hero wave divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ── Section defaults ── */
section { padding: 80px 24px; position: relative; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 560px;
    margin: 16px auto 52px;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* ── Wave dividers ── */
.section-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.section-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}
.section-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.section-wave-bottom svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* ── Section dividers (elegant gold line for dark sections) ── */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212,175,55,0.1) 20%,
        rgba(212,175,55,0.4) 50%,
        rgba(212,175,55,0.1) 80%,
        transparent 100%
    );
    z-index: 10;
}

/* Light section divider (subtle navy line) */
.section-divider-light {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(26,39,68,0.06) 20%,
        rgba(26,39,68,0.12) 50%,
        rgba(26,39,68,0.06) 80%,
        transparent 100%
    );
    z-index: 10;
}

/* Wave at top of section (for light-to-dark transitions) */
.section-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.section-wave-top svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* ── Services ── */
.services {
    background: linear-gradient(165deg, #0f1724 0%, #1a2744 50%, #0f1724 100%);
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle luxury pattern overlay */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Ambient glow */
.services::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.services .section-inner {
    position: relative;
    z-index: 1;
}

.services .section-title {
    color: var(--white);
}

.services .section-title::after {
    background: linear-gradient(90deg, var(--gold), #f5d485, var(--gold));
}

.services .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212,175,55,0.15);
}

/* Top accent line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        0 0 40px rgba(212,175,55,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(212,175,55,0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
    margin-bottom: 20px;
    border: 2px solid rgba(212,175,55,0.3);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.service-card:hover .service-icon svg {
    stroke: #f5d485;
    filter: drop-shadow(0 0 4px rgba(212,175,55,0.5));
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ── About ── */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}

.about .section-inner {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

.about-photo-wrapper {
    position: relative;
}

/* Photo card with shadow */
.about-photo {
    background: linear-gradient(145deg, #ffffff 0%, #f5f7fa 100%);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 20px 60px rgba(26,39,68,0.12),
        0 8px 24px rgba(26,39,68,0.08);
    border: 1px solid rgba(26,39,68,0.06);
}

/* Decorative accent behind photo */
.about-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, #f5d485 100%);
    border-radius: 16px;
    z-index: 0;
}

.about-photo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6d 100%);
    border-radius: 12px;
    z-index: 0;
}

/* "Since 1982" badge on photo */
.about-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold) 0%, #c4921e 100%);
    color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px rgba(212,175,55,0.4);
    z-index: 3;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1.02rem;
}

.about-text p strong {
    color: var(--navy);
}

.about-stats {
    display: flex;
    gap: 16px;
    margin-top: 36px;
}

.stat {
    text-align: center;
    background: linear-gradient(145deg, var(--navy) 0%, #243752 100%);
    padding: 24px 20px;
    border-radius: 16px;
    flex: 1;
    box-shadow: 0 8px 24px rgba(26,39,68,0.2);
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ── How It Works ── */
.how {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.how::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a2744' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.how .section-inner {
    position: relative;
    z-index: 1;
}

.how .section-title {
    color: var(--navy);
}

.how .section-title::after {
    background: linear-gradient(90deg, var(--gold), #f5d485, var(--gold));
}

.how .section-subtitle {
    color: var(--text-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
}

/* Connecting line between steps (desktop) */
.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(16.67% + 50px);
    right: calc(16.67% + 50px);
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
    border-radius: 2px;
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 24px 32px;
    border: 1px solid rgba(26,39,68,0.08);
    box-shadow: 0 4px 20px rgba(26,39,68,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 0 0 4px 4px;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,39,68,0.12);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6d 100%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(26,39,68,0.2), 0 0 0 4px var(--white), 0 0 0 6px rgba(224,168,48,0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    box-shadow: 0 6px 24px rgba(26,39,68,0.25), 0 0 0 4px var(--white), 0 0 0 8px rgba(224,168,48,0.4);
}

.step-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 600;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-icon {
    display: none;
}

/* ── Reviews ── */
.reviews {
    background: linear-gradient(165deg, #0f1724 0%, #1a2744 50%, #0f1724 100%);
    padding: 140px 24px 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Ambient glow */
.reviews::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.reviews .section-inner {
    position: relative;
    z-index: 1;
}

.reviews .section-title {
    color: var(--white);
}

.reviews .section-title::after {
    background: linear-gradient(90deg, var(--gold), #f5d485, var(--gold));
}

.reviews .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.reviews-rating {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    border: 1px solid rgba(212,175,55,0.15);
    border-left: 3px solid var(--gold);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.3);
}

/* Decorative large quote mark */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.review-card p {
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.review-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.review-author span {
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}

/* ── Areas ── */
.areas {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}

.areas .section-inner {
    position: relative;
    z-index: 1;
}

.areas .section-title {
    color: var(--navy);
}

.areas .section-title::after {
    background: linear-gradient(90deg, var(--gold), #f5d485, var(--gold));
}

.areas .section-subtitle {
    color: var(--text-light);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.area-tag {
    background: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(26,39,68,0.06);
}

/* Location pin icon */
.area-tag::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0a830' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Highlight primary area */
.area-tag:first-child {
    background: linear-gradient(135deg, var(--navy) 0%, #243752 100%);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(26,39,68,0.2);
}

.area-tag:first-child::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0a830' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

/* ── FAQ ── */
.faq {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    padding: 100px 24px 120px;
    position: relative;
}

.faq .section-title {
    color: var(--navy);
}

.faq .section-title::after {
    background: linear-gradient(90deg, var(--gold), #f5d485, var(--gold));
}

.faq .section-subtitle {
    color: var(--text-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(26,39,68,0.06);
    border-left: 4px solid var(--gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,39,68,0.1);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ── Availability Banner ── */
.availability-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(76,175,80,0.15) 0%, rgba(76,175,80,0.08) 100%);
    border: 1px solid rgba(76,175,80,0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4caf50;
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(76,175,80,0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(76,175,80,0);
    }
}

/* ── Contact / CTA ── */
.contact {
    background: linear-gradient(165deg, #0f1724 0%, #1a2744 50%, #0f1724 100%);
    color: var(--white);
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}

/* Pattern overlay */
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Ambient glow */
.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.contact .section-inner {
    position: relative;
    z-index: 1;
}

.contact .section-title { color: var(--white); }
.contact .section-title::after { background: linear-gradient(90deg, var(--gold), #f5d485, var(--gold)); }
.contact .section-subtitle { color: rgba(255,255,255,0.6); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}

.contact-info h3 {
    font-size: 1.15rem;
    margin-bottom: 22px;
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-item-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: #f0c050; }
.contact-item span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* "Why choose me?" box — glass morphism */
.why-choose {
    margin-top: 34px;
    padding: 26px;
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.2);
}

.why-choose strong {
    color: var(--gold);
    font-size: 1.02rem;
}

.why-choose ul {
    margin-top: 12px;
    padding-left: 18px;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 2;
}

/* Contact form */
.contact-form {
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(212,175,55,0.15);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.7);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    min-height: 48px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15), 0 0 20px rgba(212,175,55,0.1);
    background: rgba(255,255,255,0.08);
}
.contact-form select option { color: var(--text); background: var(--white); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-group { margin-bottom: 0; }
.form-full { grid-column: 1 / -1; }

.contact-form .btn-primary {
    width: 100%;
    font-size: 1.05rem;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--gold) 0%, #c4921e 100%);
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    box-shadow: 0 6px 30px rgba(212,175,55,0.5);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
}

/* ── Footer ── */
footer {
    background: linear-gradient(180deg, #0a0f18 0%, #060a10 100%);
    color: rgba(255,255,255,0.5);
    padding: 48px 24px 40px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-copy {
    margin-bottom: 14px;
    color: rgba(255,255,255,0.4);
}

.footer-copy a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-copy a:hover {
    color: var(--gold);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
}

.back-to-top:hover {
    color: var(--gold);
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
}

/* ── Mobile call bar ── */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(135deg, var(--gold) 0%, #c4921e 100%);
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(212,175,55,0.3);
}

.mobile-call-bar a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.mobile-call-bar .phone-pulse {
    display: inline-block;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-call-bar .phone-pulse {
        animation: none;
    }
}

/* ══════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* Mobile menu visibility */
    .hamburger { display: flex; }
    .mobile-menu-overlay { display: block; }
    .mobile-menu { display: block; }

    /* Header adjustments */
    .header-inner {
        justify-content: space-between;
        text-align: left;
        flex-wrap: nowrap;
    }
    .header-nav { display: none; }
    .header-cta .btn { display: none; }
    .phone-link { display: none; }

    /* Larger logo on mobile */
    .logo img { height: 60px; }
    .header.scrolled .logo img { height: 50px; }

    /* Hide hours in top bar */
    .top-bar span:nth-child(2),
    .top-bar span:nth-child(3) { display: none; }

    .about-grid,
    .contact-grid,
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .step-card { padding: 32px 20px 28px; }
    .step-number { width: 56px; height: 56px; font-size: 1.3rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pricing-item { padding: 20px 16px; }
    .pricing-item .price { font-size: 1.3rem; }
    .pricing-item .pricing-icon { font-size: 1.6rem; }
    .area-tags { gap: 10px; }
    .area-tag { padding: 10px 18px; font-size: 0.88rem; }
    .faq-grid { grid-template-columns: 1fr; gap: 16px; }
    .faq-item { padding: 20px 22px; }
    .faq-item h3 { font-size: 0.95rem; }
    .faq-item p { font-size: 0.85rem; }
    .availability-banner { font-size: 0.85rem; padding: 10px 18px; }
    .form-row { grid-template-columns: 1fr; }
    .hero { padding: 80px 20px 100px; }
    .hero-wave svg { height: 35px; }
    .section-wave svg,
    .section-wave-bottom svg { height: 30px; }
    .about-stats { justify-content: center; flex-wrap: wrap; }
    .trust-row { gap: 12px; flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .trust-item { width: auto; }
    .mobile-call-bar { display: block; }
    body { padding-bottom: 60px; }
    /* Prevent scroll when menu open */
    body.menu-open { overflow: hidden; }
    section { padding: 60px 20px; }
    .services,
    .pricing-guide,
    .how,
    .areas,
    .faq,
    .reviews,
    .about { padding: 80px 20px 100px; }
    .contact { padding: 80px 20px 100px; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-photo-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    .about-photo-wrapper::before {
        width: 60px;
        height: 60px;
        top: -6px;
        right: -6px;
    }
    .about-photo-wrapper::after {
        width: 50px;
        height: 50px;
        bottom: -6px;
        left: -6px;
    }
    .about-badge {
        right: -10px;
        bottom: 15px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    .stat {
        flex: 1 1 100px;
        padding: 18px 14px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .area-tag {
        padding: 10px 16px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .trust-row {
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .trust-item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .trust-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .about-stats {
        gap: 10px;
        flex-wrap: wrap;
    }
    .stat {
        padding: 16px 12px;
        flex: 1 1 90px;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
}

/* Ensure 48px min touch targets on mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .area-tag {
        display: inline-flex;
        align-items: center;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        min-height: 48px;
    }
    .btn:active {
        transform: scale(0.97);
    }
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 190;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.whatsapp-float:active {
    transform: scale(0.95);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 74px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ══════════════════════════════════════════════
   Pricing Guide Section - Premium Luxury Design
   ══════════════════════════════════════════════ */

.pricing-guide {
    background: linear-gradient(165deg, #0f1724 0%, #1a2744 50%, #0f1724 100%);
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}

/* Subtle luxury pattern overlay */
.pricing-guide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Ambient glow effects */
.pricing-guide::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-guide .section-inner {
    position: relative;
    z-index: 1;
}

.pricing-guide .section-title {
    color: var(--white);
    font-size: 2.4rem;
    letter-spacing: -0.5px;
}

.pricing-guide .section-title::after {
    background: linear-gradient(90deg, var(--gold), #f5d485, var(--gold));
    height: 4px;
    width: 60px;
}

.pricing-guide .section-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212,175,55,0.15);
}

/* Gold gradient border effect */
.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Subtle corner accents */
.pricing-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.pricing-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        0 0 40px rgba(212,175,55,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(212,175,55,0.4);
}

/* Icon container with gold ring */
.pricing-item .pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(212,175,55,0.3);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-item .pricing-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    transition: all 0.3s ease;
}

.pricing-item:hover .pricing-icon {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.pricing-item:hover .pricing-icon svg {
    stroke: #f5d485;
    filter: drop-shadow(0 0 4px rgba(212,175,55,0.5));
}

.pricing-item h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-item .price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f5d485 0%, var(--gold) 50%, #c4921e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 8px;
}

.pricing-item .price-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
}

/* Featured/popular item styling */
.pricing-item.featured {
    background: linear-gradient(145deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.03) 100%);
    border-color: rgba(212,175,55,0.4);
    transform: scale(1.02);
}

.pricing-item.featured::before {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #f5d485, var(--gold));
}

/* Disclaimer box */
.pricing-disclaimer {
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.2);
    position: relative;
}

.pricing-disclaimer::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: rgba(212,175,55,0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.pricing-disclaimer strong {
    color: var(--gold);
    font-weight: 600;
}

.pricing-guide .section-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}
.pricing-guide .section-wave-bottom svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* Responsive grid */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pricing-item {
        padding: 28px 20px;
    }
    .pricing-guide {
        padding: 80px 20px 100px;
    }
}

/* ══════════════════════════════════════════════
   Cookie Consent Banner
   ══════════════════════════════════════════════ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner p {
    flex: 1;
    min-width: 280px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.cookie-banner a {
    color: var(--gold);
    text-decoration: underline;
}
.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
}
.cookie-btn:hover {
    transform: translateY(-1px);
}
.cookie-btn-accept {
    background: var(--gold);
    color: var(--navy);
}
.cookie-btn-accept:hover {
    background: var(--gold-dark);
}
.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 10px 16px;
        padding-bottom: 70px; /* Space for mobile call bar */
    }
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cookie-banner p {
        min-width: 100%;
        font-size: 0.8rem;
        margin: 0;
        line-height: 1.4;
    }
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
