/* Paradise Patio Cover - Global Styles */

/* CSS Variables */
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #141414;
    --accent-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --text-subtle: #6a6a6a;
    --accent-gold: #c9a96e;
    --accent-gold-hover: #d4b87a;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-height: 100px;
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-gold-hover);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 90px;
    width: auto;
    filter: brightness(1.1) contrast(1.05);
    transition: var(--transition-smooth);
}

.logo:hover img {
    filter: brightness(1.2) contrast(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 260px;
    background: var(--secondary-dark);
    border: 1px solid var(--accent-dark);
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.dropdown-menu li a:hover {
    color: var(--text-light);
    background: var(--accent-dark);
    padding-left: 28px;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb span {
    color: var(--text-subtle);
}

.breadcrumb .current {
    color: var(--accent-gold);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Full Hero (Homepage) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 aspect ratio */
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

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

.btn-primary:hover {
    background: var(--accent-gold-hover);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Background Variations */
.bg-primary {
    background: var(--primary-dark);
}

.bg-secondary {
    background: var(--secondary-dark);
}

.bg-accent {
    background: var(--accent-dark);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.content-image:hover img {
    transform: scale(1.03);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--accent-gold);
    z-index: -1;
}

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.content-text h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 30px;
}

.content-text p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

.content-text ul {
    list-style: none;
    margin: 24px 0;
}

.content-text ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-muted);
    border-bottom: 1px solid var(--accent-dark);
}

.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--secondary-dark);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--accent-dark);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-subtle);
    font-size: 0.9rem;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--secondary-dark);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 28px;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 16px;
}

.service-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 16px;
}

.service-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-gold);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Uniform variant: every tile is one cell, no first-item span. */
.gallery-grid-uniform .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
}

/* Lightbox modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px 60px;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 10px 60px rgba(0,0,0,0.5);
    cursor: default;
    user-select: none;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.18);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-family: 'Montserrat', sans-serif;
}
@media (max-width: 600px) {
    .lightbox { padding: 20px 12px; }
    .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* Make every gallery item visibly clickable. */
.gallery-item { cursor: zoom-in; }

/* ---- Cities We Serve section ---- */
.cities-served-section { padding: 80px 0; }
.cities-served-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 0 24px;
}
.cities-region h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,169,110,0.2);
}
.cities-region .cities-list {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 2;
    margin: 0;
}
.cities-region .cities-list a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
.cities-region .cities-list a:hover { color: var(--accent-gold-hover, #d4b87a); }
.cities-region .cities-list span { color: var(--text-muted); }

/* ---- City depth sections (Option B) ---- */
.city-depth-section { padding: 70px 0; }
.city-depth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.city-depth-block {
    background: rgba(201,169,110,0.04);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 4px;
    padding: 28px 32px;
}
.city-depth-block h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin: 0 0 16px;
}
.city-depth-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 0 14px;
}
.city-nearby-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
}
.nearby-pill {
    display: inline-block;
    background: var(--accent-dark, rgba(201,169,110,0.08));
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(201,169,110,0.2);
    transition: background 0.2s ease, color 0.2s ease;
}
.nearby-pill:hover {
    background: var(--accent-gold);
    color: var(--primary-dark, #1a1a1a);
}
@media (max-width: 600px) {
    .city-depth-block { padding: 22px 20px; }
}

/* Testimonial */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 30rem;
    color: var(--accent-dark);
    z-index: 0;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-subtle);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/updated/DJI_20250809_155227_326.jpeg') center/cover;
    opacity: 0.15;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 300;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--accent-dark);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding-bottom: 24px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold);
}

.contact-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.contact-text p,
.contact-text a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 300;
}

.contact-text a:hover {
    color: var(--accent-gold);
}

/* Contact Form */
.contact-form {
    background: var(--accent-dark);
    padding: 48px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: #101010;
    /* Visible border so the fields read as fillable boxes. With a transparent
       border they were near-black on the near-black card and looked like there
       were no inputs at all. */
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 4px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-gold);
    border: none;
    color: var(--primary-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-submit:hover {
    background: var(--accent-gold-hover);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-card {
    background: var(--secondary-dark);
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.area-card:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

.area-card a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
}

.area-card:hover a {
    color: var(--accent-gold);
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: process;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--accent-dark);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--accent-dark);
}

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

.footer-brand .logo {
    margin-bottom: 24px;
    display: inline-block;
}

.footer-brand .logo img {
    height: 120px;
    filter: brightness(1.15) contrast(1.1);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--text-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
}

.social-links a:hover svg {
    stroke: var(--primary-dark);
}

.social-links svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.footer-column ul a:hover {
    color: var(--text-light);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--accent-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-subtle);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0a0a0a;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        z-index: 999;
        padding: 120px 40px 40px;
        overflow-y: auto;
    }

    .nav-links.active > li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #1a1a1a;
    }

    .nav-links.active > li:last-child {
        border-bottom: none;
    }

    .nav-links.active > li > a {
        font-size: 1rem;
        padding: 16px 0;
        display: block;
    }

    .nav-links.active .dropdown-toggle svg {
        display: none;
    }

    .nav-links.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #141414;
        border: none;
        padding: 8px 0 16px;
        margin: 0;
        min-width: 100%;
    }

    .nav-links.active .dropdown-menu li a {
        padding: 12px 24px;
        font-size: 0.9rem;
        color: #a0a0a0;
        display: block;
    }

    .nav-links.active .dropdown-menu li a:hover {
        background: #1a1a1a;
        color: #fff;
        padding-left: 24px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .content-image {
        order: -1;
    }

    .content-image img {
        height: 400px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    .logo img {
        height: 65px;
    }

    .footer-brand .logo img {
        height: 90px;
    }

    section {
        padding: 70px 0;
    }

    .container,
    .container-narrow {
        padding: 0 24px;
    }

    .nav-container {
        padding: 0 24px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .features-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .testimonial-section::before {
        font-size: 15rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

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

/* ---- NAP + Nav Phone (added 2026-04, mobile-tuned 2026-05) ---- */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-right: 12px;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 4px;
    min-height: 40px;
    box-sizing: border-box;
    line-height: 1;
}
.nav-phone:hover { color: var(--accent-gold-hover, #d4b87a); }
.nav-phone .nav-phone-icon {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    display: block;
}

/* Mobile breakpoint MUST match the existing nav at 1024px so phone + hamburger
   share the same right-side cluster. */
@media (max-width: 1024px) {
    .nav-cta { display: none !important; }
    .nav-phone {
        background: var(--accent-gold);
        color: var(--primary-dark, #1a1a1a) !important;
        padding: 8px 14px;
        margin-right: 8px;
        font-weight: 700;
        font-size: 0.85rem;
        box-shadow: 0 2px 6px rgba(201,169,110,0.25);
        border-radius: 999px;
    }
    .nav-phone:hover, .nav-phone:active {
        background: var(--accent-gold-hover, #d4b87a);
        color: var(--primary-dark, #1a1a1a) !important;
    }
}
/* Phone-only screens: collapse to icon-only pill to save horizontal space. */
@media (max-width: 600px) {
    .nav-phone-text { display: none; }
    .nav-phone {
        padding: 10px 12px;
        margin-right: 6px;
    }
    .nav-phone .nav-phone-icon {
        width: 20px !important;
        height: 20px !important;
    }
}

.footer-nap {
    margin: 20px 0 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(201,169,110,0.15);
    border-bottom: 1px solid rgba(201,169,110,0.15);
}
.footer-nap p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 8px;
}
.footer-nap strong { color: #fff; font-weight: 600; }
.footer-nap a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-nap a:hover { color: var(--accent-gold-hover, #d4b87a); }

/* ---- Google Reviews Section ---- */
.google-reviews-section {
    padding: 80px 0;
}
.google-reviews-section .section-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: .5rem;
}
.review-aggregate-stars {
    color: var(--accent-gold);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-right: 8px;
    vertical-align: middle;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 40px;
}
.review-card {
    background: var(--primary-dark, #1a1a1a);
    border: 1px solid rgba(201,169,110,.15);
    border-radius: 4px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
}
.review-card .review-stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin-bottom: .8rem;
}
.review-card .review-text {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.2rem;
}
.review-card .review-author {
    border-top: 1px solid rgba(201,169,110,.1);
    padding-top: .9rem;
    display: flex;
    flex-direction: column;
}
.review-card .review-author strong {
    color: #fff;
    font-size: .95rem;
    margin-bottom: .15rem;
}
.review-card .review-author span {
    color: var(--accent-gold);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.reviews-cta {
    text-align: center;
    margin-top: 50px;
}
@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .google-reviews-section { padding: 60px 0; }
}
