/* ============================================================
   REMODEL RIGHT NORTH TEXAS — DESIGN SYSTEM & STYLES
   Premium, modern, high-end home remodeling aesthetic
   ============================================================ */

/* Accessibility: screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Also hide nav close button on desktop */
.nav-close-btn {
    display: none;
}

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Colors */
    --navy: #0a1628;
    --navy-light: #0f1f38;
    --navy-mid: #152440;
    --gold: #c9a96e;
    --gold-light: #d4bc8a;
    --gold-dark: #b08f55;
    --white: #ffffff;
    --off-white: #fafaf8;
    --cream: #f5f0e8;
    --charcoal: #2c2c2c;
    --gray-text: #6b7280;
    --gray-light: #e5e7eb;
    --gray-border: #d1d5db;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-py: 120px;
    --container-px: 24px;
    --container-max: 1280px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 30px 80px rgba(10, 22, 40, 0.16);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--off-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ---------- UTILITIES ---------- */
.accent-text {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 48px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 2px;
    background: var(--gold);
    transform: translateY(-50%);
}

.section-tag-light {
    color: var(--gold-light);
}

.section-tag-light::before {
    background: var(--gold-light);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-text);
    line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    width: auto;
    transition: height 0.3s var(--ease);
}

.navbar.scrolled .nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.nav-phone:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   HERO — DRAMATIC SLIDESHOW
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}

/* Ken Burns Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 1.5s ease;
    animation: kenBurns 24s linear infinite;
}

.hero-slide-active {
    opacity: 1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.25);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 22, 40, 0.6) 0%, rgba(10, 22, 40, 0.3) 30%, rgba(10, 22, 40, 0.5) 70%, rgba(10, 22, 40, 0.95) 100%),
        linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, transparent 50%, rgba(10, 22, 40, 0.7) 100%);
    z-index: 1;
}

/* Decorative golden corner borders */
.hero-deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-deco-tl {
    top: 60px;
    left: 40px;
    width: 120px;
    height: 120px;
    border-top: 2px solid rgba(201, 169, 110, 0.4);
    border-left: 2px solid rgba(201, 169, 110, 0.4);
    opacity: 0;
    animation: fadeInUp 1s 1.5s forwards;
}

.hero-deco-br {
    bottom: 100px;
    right: 40px;
    width: 120px;
    height: 120px;
    border-bottom: 2px solid rgba(201, 169, 110, 0.4);
    border-right: 2px solid rgba(201, 169, 110, 0.4);
    opacity: 0;
    animation: fadeInUp 1s 1.7s forwards;
}

/* 3D Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    perspective: 600px;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.25), transparent 70%);
    animation: particleFloat 12s infinite ease-in-out;
}

.particle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.particle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 8%;
    animation-delay: -3s;
    animation-duration: 10s;
}

.particle-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 25%;
    animation-delay: -6s;
    animation-duration: 16s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.particle-4 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    left: 20%;
    animation-delay: -2s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent 70%);
}

.particle-5 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 15%;
    animation-delay: -8s;
    animation-duration: 12s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
}

.particle-6 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 60%;
    animation-delay: -4s;
    animation-duration: 15s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate3d(30px, -40px, 50px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate3d(-20px, -60px, 30px) scale(0.95);
        opacity: 0.5;
    }

    75% {
        transform: translate3d(15px, -20px, 60px) scale(1.05);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 960px;
    padding: 0 var(--container-px);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

/* Tag with decorative lines */
.hero-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

.hero-tag-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.hero-tag-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--white);
    margin: 20px 0 28px;
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
    line-height: 1.1;
}

.hero-line {
    display: block;
}

.hero-line-1 {
    font-weight: 400;
    opacity: 0.9;
}

.hero-line-2 {
    color: var(--gold);
}

/* Rotating text effect */
.hero-rotate-wrapper {
    display: inline-block;
    position: relative;
    height: 1.15em;
    overflow: hidden;
    vertical-align: bottom;
}

.hero-rotate-word {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-rotate-word.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.hero-rotate-word.exit {
    opacity: 0;
    transform: translateY(-100%);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s 0.7s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s 0.9s forwards;
}

.hero-btn-glow {
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.4), 0 0 60px rgba(201, 169, 110, 0.15);
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(201, 169, 110, 0.4), 0 0 60px rgba(201, 169, 110, 0.15);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 169, 110, 0.6), 0 0 80px rgba(201, 169, 110, 0.25);
    }
}

/* Hero badges bar — separated to bottom to fix overlap */
.hero-badges-bar {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 32px 0;
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: fadeInUp 1s 1.1s forwards;
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.hero-badge {
    text-align: center;
}

.badge-number {
    display: inline;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.badge-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.badge-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.hero-badge-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   BOOKING SECTION (Prominent)
   ============================================================ */
.booking {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1), transparent 70%);
    pointer-events: none;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.booking-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.booking-info>p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.booking-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.booking-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.booking-perk svg {
    color: var(--gold);
    flex-shrink: 0;
}

.booking-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s var(--ease);
}

.booking-phone:hover {
    color: var(--gold);
}

.booking-phone strong {
    color: var(--gold);
}

.booking-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    /* 3D tilt glow effect */
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.5s var(--ease);
}

.booking-form:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.booking-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.booking-form-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.booking-form h3 {
    font-size: 1.4rem;
}

.booking-form .form-group {
    margin-bottom: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--off-white);
    transition: all 0.3s var(--ease);
    outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
    background: var(--white);
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 12px;
}

/* ============================================================
   SERVICES — 3D Floating Cards
   ============================================================ */
.services {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    perspective: 1200px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.6s var(--ease-out);
    box-shadow: var(--shadow-sm);
    position: relative;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
    will-change: transform;
}

.service-card:nth-child(1) {
    animation-delay: 0s;
}

.service-card:nth-child(2) {
    animation-delay: -1s;
}

.service-card:nth-child(3) {
    animation-delay: -2s;
}

.service-card:nth-child(4) {
    animation-delay: -0.5s;
}

.service-card:nth-child(5) {
    animation-delay: -1.5s;
}

.service-card:nth-child(6) {
    animation-delay: -2.5s;
}

.service-card:nth-child(7) {
    animation-delay: -3s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
        box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
    }

    25% {
        transform: translateY(-8px) rotateX(1.5deg) rotateY(-1deg);
        box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
    }

    50% {
        transform: translateY(-14px) rotateX(0.5deg) rotateY(1deg);
        box-shadow: 0 28px 60px rgba(10, 22, 40, 0.15);
    }

    75% {
        transform: translateY(-6px) rotateX(-1deg) rotateY(-0.5deg);
        box-shadow: 0 16px 40px rgba(10, 22, 40, 0.1);
    }
}

.service-card:hover {
    animation-play-state: paused;
    transform: translateY(-16px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(10, 22, 40, 0.18), 0 0 0 1px rgba(201, 169, 110, 0.15);
    cursor: pointer;
}

/* Depth-of-field: alternating cards have subtle blur + recede */
.service-card:nth-child(2),
.service-card:nth-child(5) {
    animation-delay: -1s;
    filter: blur(0px);
    transform-origin: center center;
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
    filter: blur(0.3px);
    opacity: 0.97;
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
    filter: blur(0.5px);
    opacity: 0.94;
}

.service-card:hover {
    filter: blur(0px) !important;
    opacity: 1 !important;
}

/* Service detail modal */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.service-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.service-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-modal-overlay.active .service-modal {
    transform: translateY(0) scale(1);
}

.service-modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-modal-body {
    padding: 40px;
}

.service-modal-body h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-modal-body p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.service-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-modal-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--charcoal);
}

.service-modal-body ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    z-index: 1;
}

.service-modal-close:hover {
    background: var(--gold);
    color: var(--navy);
}

.service-modal-cta {
    margin-top: 24px;
}

.service-card-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-card-wide .service-img {
    height: 100%;
    min-height: 320px;
}

.service-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.3), transparent);
    pointer-events: none;
}

.service-content {
    padding: 28px;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--navy);
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    transition: all 0.3s var(--ease);
}

.service-link:hover {
    color: var(--gold);
    gap: 10px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 24px;
}

.about-text {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.value-item h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.value-item p {
    font-size: 14px;
    color: var(--gray-text);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
    position: relative;
    padding: var(--section-py) 0;
    background: url('https://remodelntx.com/wp-content/uploads/2024/02/8.png') center/cover no-repeat fixed;
    overflow: hidden;
}

.why-us-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.94), rgba(15, 31, 56, 0.92));
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.5s var(--ease);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-6px);
}

.why-card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================================
   TESTIMONIALS & REVIEWS
   ============================================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--gold);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-text);
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--charcoal);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-text);
}

/* Review CTA card */
.testimonial-cta-card {
    background: linear-gradient(135deg, var(--navy), #142238);
    border-top: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.testimonial-cta-card:hover {
    transform: translateY(-6px) scale(1.01);
}

.testimonial-cta-inner {
    text-align: center;
    padding: 20px;
}

.testimonial-cta-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.testimonial-cta-inner h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.testimonial-cta-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-cta-inner .btn {
    display: inline-flex;
    gap: 8px;
}

/* ============================================================
   SERVICE AREA — RICH CARDS
   ============================================================ */
.service-area {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.area-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.area-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    border: 1px solid var(--gray-light);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 110, 0.3);
}

.area-card:hover::before {
    opacity: 1;
}

.area-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.area-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.area-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.area-card-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
}

.area-card-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.area-stat {
    flex: 1;
    background: var(--cream);
    border-radius: 6px;
    padding: 6px 8px;
    text-align: center;
}

.area-stat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1.2;
}

.area-stat-label {
    display: block;
    font-size: 10px;
    color: var(--gray-text);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 1px;
}

.area-card-desc {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.area-card-neighborhoods {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 10px;
}

.area-card-neighborhoods span {
    padding: 3px 8px;
    background: rgba(10, 22, 40, 0.04);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    color: var(--navy);
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.area-card-services {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-text);
    padding-top: 8px;
    border-top: 1px solid var(--gray-light);
}

.area-card-services svg {
    flex-shrink: 0;
}

/* Map section below cards */
.area-map-section {
    max-width: 900px;
    margin: 0 auto;
}

.area-map {
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://remodelntx.com/wp-content/uploads/2024/02/5-2.png') center/cover no-repeat fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(15, 31, 56, 0.88));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.contact-text {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--charcoal);
    font-size: 15px;
    transition: color 0.3s var(--ease);
}

.contact-item a:hover {
    color: var(--gold-dark);
}

.contact-item p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 32px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--off-white);
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a,
.footer-links-col li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s var(--ease);
}

.footer-links-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 28px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-wide {
        grid-column: span 2;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 56px;
    }

    /* Nav mobile — polished overlay */
    .nav-links {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgba(10, 22, 40, 0.99);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s var(--ease), visibility 0.4s;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-close-btn {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 8px;
        z-index: 10;
    }

    .nav-links.active .nav-close-btn {
        display: block;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0s;
    }

    .nav-links a {
        font-size: 22px;
        color: var(--white);
        padding: 16px 24px;
        letter-spacing: 1px;
        position: relative;
        display: block;
        transition: color 0.3s;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.08s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.14s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.20s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.26s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.32s;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 40px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: transform 0.3s var(--ease);
    }

    .nav-links a:hover::after,
    .nav-links a:active::after {
        transform: translateX(-50%) scaleX(1);
    }

    .nav-links a:hover {
        color: var(--gold);
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    /* Hero mobile */
    .hero-content {
        padding-top: 80px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 2.4rem;
        margin: 16px 0 20px;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-tag {
        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .hero-tag-line {
        width: 30px;
    }

    .hero-tag-wrapper {
        gap: 12px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-btn-glow {
        animation: none;
    }

    .hero-badges {
        gap: 16px;
    }

    .badge-number {
        font-size: 1.6rem;
    }

    .badge-label {
        font-size: 11px;
    }

    .hero-badge-divider {
        height: 28px;
    }

    .hero-badges-bar {
        padding: 24px 16px;
    }

    .hero-particles {
        display: none;
    }

    .hero-deco {
        display: none;
    }

    .hero-slideshow .hero-slide {
        animation-duration: 30s;
    }

    /* Section headers mobile */
    .section-header h2,
    h2 {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 14px;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .testimonial-cta-card {
        min-height: auto;
        padding: 40px 24px;
    }

    .testimonial-cta-inner h3 {
        font-size: 1.3rem;
    }

    .testimonial-cta-stars svg {
        width: 24px;
        height: 24px;
    }

    /* Booking mobile */
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-form {
        transform: none;
        padding: 28px 20px;
    }

    .booking-form:hover {
        transform: none;
    }

    .booking-perks {
        grid-template-columns: 1fr;
    }

    .booking-section {
        padding: 56px 0;
    }

    .booking-section h2 {
        font-size: 1.6rem;
    }

    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        animation: none;
        filter: none !important;
        opacity: 1 !important;
    }

    .service-card:hover {
        transform: translateY(-4px);
    }

    .service-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .service-card-body {
        padding: 24px 20px;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-img-accent {
        right: 12px;
        bottom: -12px;
        width: 120px;
        height: 160px;
    }

    .about-experience-badge {
        top: -10px;
        left: -10px;
        width: 90px;
        height: 90px;
    }

    .exp-number {
        font-size: 1.4rem;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.75;
    }

    /* Why Us mobile */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 28px 22px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    /* Service Area mobile */
    .area-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .area-card {
        padding: 22px 18px;
    }

    .area-card-desc {
        font-size: 13px;
    }

    .area-map {
        height: 280px;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Floating review — icon only */
    .floating-review-btn .review-btn-inner span {
        display: none;
    }

    .floating-review-btn .review-btn-inner {
        padding: 14px;
        border-radius: 50%;
    }

    .floating-review-btn {
        bottom: 20px;
        right: 20px;
    }

    /* Service modal mobile */
    .service-modal {
        max-width: 95vw;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    :root {
        --section-py: 48px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 0.88rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-badge-divider {
        width: 40px;
        height: 1px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .section-header h2,
    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 16px;
    }

    .area-cities {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        max-width: 280px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ============================================================
   FLOATING REVIEW BUTTON
   ============================================================ */
.floating-review-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    text-decoration: none;
    animation: reviewPulse 3s ease-in-out infinite;
}

.review-btn-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.4s var(--ease);
    white-space: nowrap;
}

.review-btn-inner svg {
    flex-shrink: 0;
}

.floating-review-btn:hover .review-btn-inner {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 50px rgba(201, 169, 110, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

@keyframes reviewPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}