/* ============================================
   INFINITY RENOVATIONS - Main Stylesheet
   Modern, premium design inspired by Nolte Kitchens
   ============================================ */

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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2c2c2c;
    --color-accent: #b8860b;
    --color-accent-light: #d4a843;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f7f5;
    --color-bg-dark: #1a1a1a;
    --color-border: #e5e5e5;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1280px;
    --header-height: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 var(--color-border);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
    width: auto;
    transition: filter var(--transition);
}

.site-header:not(.scrolled) .logo img {
    opacity: 0;
    pointer-events: none;
}

.logo img {
    transition: opacity var(--transition);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
}

.site-header:not(.scrolled) .main-nav a {
    color: #ffffff;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

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

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    border: 1px solid currentColor;
    border-radius: 0;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff !important;
}

/* Nav Social Icons */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header.scrolled .nav-social {
    border-left-color: var(--color-border);
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.nav-social a:hover {
    opacity: 1;
}

.nav-social a::after {
    display: none !important;
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.site-header:not(.scrolled) .menu-toggle span {
    background: #ffffff;
}

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

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

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

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-logo {
    position: absolute;
    top: 35%;
    left: 4rem;
    transform: translateY(-50%);
    z-index: 5;
    opacity: 0.55;
    pointer-events: none;
}

.hero-logo img {
    height: clamp(200px, 30vw, 400px);
    width: auto;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portrait video with blurred background fill */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.7);
    transform: scale(1.1);
    z-index: 0;
}

.hero-video-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    padding: 0 4rem;
    color: #ffffff;
    max-width: 700px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--color-accent-light);
}

.hero-content h1 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-nav-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.75rem 0;
    position: relative;
    min-width: 100px;
    text-align: left;
}

.hero-nav-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.hero-nav-btn.active .hero-nav-label {
    opacity: 1;
}

.hero-nav-progress {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.hero-nav-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

.hero-nav-btn.active .hero-nav-progress::after {
    width: 100%;
    transition: width 6s linear;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* --- Booking Notice --- */
.booking-notice {
    background: var(--color-accent);
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 1rem;
}

.booking-notice p {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.4;
}

.booking-notice strong {
    font-weight: 600;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-accent);
    color: #ffffff;
}

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

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

/* --- Sections --- */
.section {
    padding: 8rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header p {
    margin-top: 1rem;
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content .lead {
    font-size: 1.125rem;
    color: var(--color-text);
    margin: 1.5rem 0;
    line-height: 1.7;
}

.section-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* --- Stats --- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    padding: 2rem;
    background: var(--color-bg-alt);
    border-left: 3px solid var(--color-accent);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Credentials --- */
.credentials {
    margin-top: 2rem;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
}

.credential-text {
    display: flex;
    flex-direction: column;
}

.credential-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.credential-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

/* --- Services --- */
.services {
    background: var(--color-bg-alt);
}

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

.service-card {
    padding: 2.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

a.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.service-link {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: color var(--transition);
}

.service-card:hover .service-link {
    color: var(--color-accent-light);
}

/* --- Process --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 1.5rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.process-step h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding-left: 2rem;
    }

    .process-steps::before {
        top: 0;
        bottom: 0;
        left: 22px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .process-step {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 1.25rem;
        text-align: left;
    }

    .step-number {
        grid-row: 1 / 3;
        margin: 0;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .process-step h3 {
        align-self: end;
        margin-bottom: 0.25rem;
    }

    .process-step p {
        max-width: none;
        margin: 0;
    }
}

/* --- Quick Actions --- */
.quick-actions {
    background: var(--color-bg-alt);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.quick-action-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.quick-action-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.quick-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    transition: background var(--transition), color var(--transition);
}

.quick-action-card:hover .quick-action-icon {
    background: var(--color-accent);
    color: #ffffff;
}

.quick-action-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.quick-action-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Portfolio --- */
.portfolio-feed {
    margin-bottom: 3rem;
}

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

/* --- Before & After Slider --- */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.ba-slider-wrapper {
    width: 100%;
}

.ba-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: center;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    clip-path: inset(0 0 0 50%);
}

.ba-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ba-placeholder--before {
    background: #e0e0e0;
    color: #666;
}

.ba-placeholder--after {
    background: rgba(184, 134, 11, 0.15);
    color: var(--color-accent);
}

.ba-label {
    position: absolute;
    top: 1rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    pointer-events: none;
}

.ba-label--before {
    left: 1rem;
}

.ba-label--after {
    right: 1rem;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.ba-handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.ba-handle-circle {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 6;
}

@media (max-width: 768px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Testimonials --- */
.testimonials {
    background: var(--color-bg-dark);
    color: #ffffff;
}

.testimonials .section-label {
    color: var(--color-accent-light);
}

.testimonials .section-header h2 {
    color: #ffffff;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-card blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.8;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.testimonial-card cite {
    font-style: normal;
}

.testimonial-card cite strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-accent-light);
}

.testimonial-card cite span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.testimonial-counter {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.google-reviews-link {
    text-align: center;
    margin-top: 3rem;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.google-reviews-btn:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #ffffff;
}

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

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

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
    content: '';
}

.faq-item summary::after {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--transition), color var(--transition), border-color var(--transition);
}

.faq-item[open] summary {
    color: var(--color-accent);
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1.5rem;
    overflow: hidden;
}

.faq-answer p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 700px;
}

/* --- Areas We Cover --- */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.areas-grid li {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
}

.areas-grid li:hover {
    border-color: var(--color-accent);
    background: var(--color-bg);
    color: var(--color-accent);
}

/* --- Contact --- */
.contact {
    background: var(--color-bg-alt);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

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

/* Contact Form */
.contact-form {
    background: var(--color-bg);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: border-color var(--transition);
    outline: none;
}

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

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

/* --- Footer --- */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* WhatsApp Tooltip (desktop) */
.whatsapp-float::before {
    content: 'Message us on WhatsApp';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
}

/* WhatsApp Mobile Label */
.whatsapp-float-label {
    display: none;
}

/* --- Contact Preference --- */
.contact-preference {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--transition);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.25rem;
        color: var(--color-text) !important;
    }

    .section {
        padding: 5rem 0;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-logo {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        text-align: center;
    }

    .hero-logo img {
        height: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-content {
        padding: 0 2rem;
        bottom: 20%;
    }

    .hero-nav {
        right: 2rem;
        bottom: 3rem;
    }

    .scroll-indicator {
        left: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

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

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

    .testimonials-slider {
        min-height: 350px;
    }

    /* WhatsApp: hide tooltip, show mobile label */
    .whatsapp-float::before,
    .whatsapp-float::after {
        display: none;
    }

    .whatsapp-float-label {
        display: block;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.65rem;
        font-weight: 600;
        color: #25D366;
        white-space: nowrap;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-nav {
        right: 1.5rem;
        bottom: 2rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   PROJECT PAGES
   ============================================ */

/* Force scrolled header style on project pages (no hero video) */
.project-page .site-header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 var(--color-border);
    backdrop-filter: blur(10px);
}

.project-page .site-header .main-nav a {
    color: var(--color-text);
}

.project-page .site-header .logo img {
    opacity: 1;
}

.project-page .site-header .menu-toggle span {
    background: var(--color-primary);
}

.project-page .site-header .nav-social {
    border-left-color: var(--color-border);
}

/* --- Project Hero --- */
.project-hero {
    padding: 10rem 0 4rem;
    background: var(--color-bg-dark);
    color: #ffffff;
}

.project-back {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 2rem;
    transition: color var(--transition);
}

.project-back:hover {
    color: #ffffff;
}

.project-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.project-location {
    font-size: 1rem;
    color: var(--color-accent-light);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.project-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* --- Project Gallery Grid --- */
.project-gallery {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover,
.gallery-item:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    outline: none;
}

.gallery-item:focus {
    border-color: var(--color-accent);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Project Details --- */
.project-details {
    background: var(--color-bg-alt);
}

.project-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.project-description h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.25rem;
}

.project-description p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.project-scope h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.project-scope ul {
    list-style: none;
    padding: 0;
}

.project-scope ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    color: var(--color-text-light);
    position: relative;
    padding-left: 1.25rem;
}

.project-scope ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .project-details-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* --- Project CTA --- */
.project-cta {
    text-align: center;
    background: var(--color-bg);
}

.project-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.project-cta p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Project Cards (index.html Portfolio section) --- */
.project-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.project-card {
    display: block;
    padding: 2rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.project-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.project-card .project-card-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.project-card .project-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: color var(--transition);
}

.project-card:hover .project-card-link {
    color: var(--color-accent-light);
}

@media (max-width: 768px) {
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox[hidden] {
    display: none;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-placeholder {
    width: 60vw;
    height: 60vh;
    max-width: 800px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    font-size: 1.5rem;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition);
    opacity: 0.7;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all var(--transition);
    opacity: 0.7;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    border-color: var(--color-accent);
    background: var(--color-accent);
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 0.75rem;
    }

    .lightbox-next {
        right: 0.75rem;
    }

    .lightbox-placeholder {
        width: 85vw;
        height: 50vh;
    }
}
