/* =============================================
   Core Exteriors - Modern Premium Styles
   ============================================= */

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --sky-blue: #002147;
    --sky-blue-dark: #001535;
    --gold: #C9A84C;
    --gold-hover: #B8973D;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F4F4F4;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #002147 0%, #001535 100%);
    --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #B8973D 100%);
    --gradient-hero: linear-gradient(135deg, #F4F4F4 0%, #FFFFFF 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 80px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   Header Styles
   ============================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

/* Row 1: Utility Bar */
.utility-bar {
    background: var(--gradient-blue);
    padding: 10px 0;
}

.utility-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.utility-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.utility-link:hover {
    opacity: 0.85;
}

.utility-link .icon {
    width: 18px;
    height: 18px;
}

.utility-right {
    display: flex;
    align-items: center;
}

.lang-buttons {
    display: flex;
    gap: 4px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.lang-toggle.active {
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--white);
}

.lang-text {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Row 2: Main Navigation */
.main-nav {
    background: var(--white);
    padding: 16px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 72px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform var(--transition-fast);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sky-blue);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--sky-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* =============================================
   Hero Section
   ============================================= */

.hero {
    background: var(--gradient-hero);
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 28px;
}

.headline-line {
    display: block;
}

.headline-line.accent {
    color: var(--sky-blue);
}

.hero-subheadline {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    gap: 4px;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.cta-badge {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* Hero Wordmark & Seal */
.hero-wordmark {
    width: 320px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    mix-blend-mode: multiply;
}

.form-seal-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.form-seal {
    width: 110px;
    height: 110px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--sky-blue);
}

/* Hero Quote Form */
.hero-form-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-form-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 24px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sky-blue);
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-top: 12px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--medium-gray);
    margin-top: 16px;
}

.form-note svg {
    width: 14px;
    height: 14px;
    color: var(--sky-blue);
}

/* =============================================
   How It Works Section
   ============================================= */

.how-it-works {
    padding: 60px 0;
    background: var(--white);
}

.hiw-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hiw-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
}

.hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.hiw-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--sky-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--sky-blue);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
}

.hiw-connector {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: var(--light-gray);
}

.hiw-connector svg {
    width: 32px;
    height: 32px;
}

/* How It Works Responsive */
@media (max-width: 768px) {
    .hiw-steps {
        flex-direction: column;
        align-items: center;
    }

    .hiw-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }
}

/* Most Popular Tag */
.service-card.popular {
    position: relative;
    border: 2px solid var(--gold);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* =============================================
   FAQ Section
   ============================================= */

.faq {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    font-family: inherit;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.03);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: var(--sky-blue);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* =============================================
   Sticky Mobile CTA
   ============================================= */

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
        gap: 12px;
    }
}

.sticky-call,
.sticky-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sticky-call {
    background: var(--sky-blue);
    color: var(--white);
}

.sticky-quote {
    background: var(--gradient-gold);
    color: var(--black);
}

.sticky-call svg,
.sticky-quote svg {
    width: 20px;
    height: 20px;
}

/* Add padding to body on mobile for sticky CTA */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
}

/* =============================================
   Services Section
   ============================================= */

.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.services-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.services-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 340px));
    gap: 24px;
    justify-content: center;
    justify-items: center;
}

.service-card {
    background: var(--light-gray);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-blue);
    background: linear-gradient(135deg, #e8f6fc 0%, #f0faff 100%);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--sky-blue);
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.service-description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* =============================================
   Responsive Styles
   ============================================= */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtext {
        justify-content: center;
    }

    .hero-image {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .cta-button {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .utility-left {
        gap: 16px;
    }

    .utility-link span {
        display: none;
    }

    .utility-link .icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin: 0;
        flex-shrink: 0;
    }

    .service-card>div:last-child {
        flex: 1;
    }
}

/* =============================================
   Animations
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-headline {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* =============================================
   Trust Bar
   ============================================= */

.trust-bar {
    background: var(--light-gray);
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--sky-blue);
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.15);
}

/* =============================================
   Why Choose Us Section
   ============================================= */

.why-choose-us {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.why-choose-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.why-choose-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.why-choose-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 48px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.advantage-card {
    background: var(--light-gray);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-blue);
    background: linear-gradient(135deg, #e8f6fc 0%, #f0faff 100%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--sky-blue);
    transition: transform var(--transition-normal);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
}

.advantage-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.title-accent {
    font-size: 14px;
    font-weight: 600;
    color: var(--sky-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.advantage-description strong {
    color: var(--black);
}

.advantage-description .highlight {
    color: var(--sky-blue);
    font-weight: 700;
}

.guarantee-text {
    color: var(--sky-blue);
    font-style: italic;
}

/* Why Choose Us Responsive */
@media (max-width: 900px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .why-choose-title {
        font-size: 32px;
    }

    .advantage-card {
        padding: 32px 24px;
    }

    .advantage-icon {
        width: 64px;
        height: 64px;
    }

    .advantage-title {
        font-size: 20px;
    }
}

/* =============================================
   Gallery Section
   ============================================= */

.gallery {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.gallery-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.gallery-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.gallery-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}


.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.image-slot {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.image-slot.before {
    border-right: 2px solid var(--white);
}

.image-slot.after {
    border-left: 2px solid var(--white);
}

.image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    color: var(--medium-gray);
}

.image-slot.before .placeholder-image {
    background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 100%);
}

.image-slot.after .placeholder-image {
    background: linear-gradient(135deg, #c8e8c8 0%, #e8f5e8 100%);
    color: #4a8f4a;
}

.placeholder-image svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.placeholder-image span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-label {
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    background: var(--white);
}

.gallery-cta {
    margin-top: 32px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.cta-button-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* =============================================
   Testimonials Section
   ============================================= */

.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.testimonials-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 48px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.stars svg {
    width: 24px;
    height: 24px;
    color: #FFB800;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.author-location {
    font-size: 14px;
    color: var(--medium-gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.2);
}

.carousel-btn:hover {
    background: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.carousel-btn svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
    transition: color var(--transition-fast);
}

.carousel-btn:hover svg {
    color: var(--white);
}

/* Gallery Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 48px;
    }
}

/* Testimonials Responsive */
@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .gallery-title,
    .testimonials-title {
        font-size: 32px;
    }
}

/* =============================================
   Footer
   ============================================= */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--sky-blue);
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.areas-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 16px;
    position: relative;
}

.areas-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--sky-blue);
    border-radius: 50%;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .areas-list li {
        padding-left: 0;
    }

    .areas-list li::before {
        display: none;
    }
}

/* Trust Bar Responsive */
@media (max-width: 768px) {
    .trust-container {
        gap: 20px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        font-size: 12px;
    }
}

/* Why Us Responsive */
@media (max-width: 600px) {
    .why-us-description {
        font-size: 17px;
    }

    .feature-item {
        font-size: 13px;
        padding: 12px 18px;
    }
}

/* =============================================
   Service Landing Pages
   ============================================= */

/* Service Hero */
.service-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
}

.service-hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--sky-blue);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--medium-gray);
}

.service-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 16px;
}

.service-hero-title .accent {
    display: block;
    color: var(--sky-blue);
}

.service-hero-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.service-hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.service-hero-features .feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--sky-blue);
}

.service-cta {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-hero-image .image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--sky-blue);
}

.service-hero-image .image-placeholder svg {
    width: 120px;
    height: 120px;
}

.service-hero-image .image-placeholder span {
    font-size: 18px;
    font-weight: 700;
}

/* Service Details */
.service-details {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.service-details-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.service-main h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.service-main h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 32px 0 16px;
}

.service-main p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.process-step {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--sky-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: 700;
}

.area-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-list li {
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 14px;
    color: var(--dark-gray);
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 16px;
}

.sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--sky-blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.sidebar-phone:hover {
    background: var(--dark-blue);
}

.sidebar-phone svg {
    width: 20px;
    height: 20px;
}

.sidebar-cta {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sidebar-cta:hover {
    transform: translateY(-2px);
}

.other-services {
    list-style: none;
    padding: 0;
}

.other-services li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.other-services a {
    color: var(--sky-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.other-services a:hover {
    text-decoration: underline;
}

/* Service CTA Section */
.service-cta-section {
    padding: 60px 0;
    background: var(--gradient-hero);
    text-align: center;
}

.service-cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.service-cta-section p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

/* Service Pages Responsive */
@media (max-width: 900px) {

    .service-hero-container,
    .service-details-container {
        grid-template-columns: 1fr;
    }

    .service-hero-image {
        order: -1;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .service-hero-title {
        font-size: 28px;
    }
}

/* =============================================
   Legal Pages (Privacy, Terms)
   ============================================= */

.legal-page {
    padding: 140px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.legal-page .last-updated {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin: 32px 0 12px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 20px 0 8px;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.legal-page ul {
    margin: 12px 0 20px 24px;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--sky-blue);
}

.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal li {
    margin-bottom: 8px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal-links {
    margin-top: 12px;
    font-size: 13px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* =============================================
   Lightbox Styles
   ============================================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.lightbox-content img.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

.lightbox-label {
    color: var(--white);
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: var(--sky-blue);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--sky-blue);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -40px;
        right: 0;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}


/* =============================================
   Contact Page Styles
   ============================================= */

.contact-form-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-large {
    width: 100%;
    padding: 18px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-top: 8px;
}

.form-submit-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--sky-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item div {
    flex: 1;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-info-item a {
    color: var(--sky-blue);
    text-decoration: none;
    font-size: 15px;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-benefits li:last-child {
    border-bottom: none;
}

.contact-benefits svg {
    width: 20px;
    height: 20px;
    color: var(--sky-blue);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .contact-form-section {
        padding: 40px 0 60px;
    }

    .contact-info-card {
        padding: 24px;
    }
}


/* =============================================
   Enhanced Video Gallery Styles
   ============================================= */

.gallery-section-subtitle {
    text-align: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-overlay svg {
    width: 36px;
    height: 36px;
    color: var(--sky-blue);
    margin-left: 4px;
}

.video-wrapper:hover .video-play-overlay {
    opacity: 1;
}

.gallery-video:not([controls])::-webkit-media-controls-panel {
    display: none !important;
}

.video-card-label {
    padding: 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    background: var(--white);
    letter-spacing: -0.2px;
}

/* Custom video controls styling */
.gallery-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.gallery-video::-webkit-media-controls-play-button,
.gallery-video::-webkit-media-controls-current-time-display,
.gallery-video::-webkit-media-controls-time-remaining-display {
    color: var(--white);
}

.gallery-video::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.gallery-video::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: var(--sky-blue);
}

/* Responsive video grid */
@media (max-width: 900px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .video-play-overlay {
        width: 64px;
        height: 64px;
    }

    .video-play-overlay svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 600px) {
    .video-card-label {
        padding: 16px;
        font-size: 15px;
    }

    .gallery-section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
}

/* Full-width video card */
.video-card-wide {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .video-card-wide {
        grid-column: auto;
    }
}


/* Video zoom transition */
.gallery-video {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-section-subtitle {
    color: var(--medium-gray);
    margin-top: -20px;
    margin-bottom: 50px;
}


/* Updated video wrapper - lighter, less boxy */
.video-wrapper {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%) !important;
    border-radius: 16px !important;
}

/* Hide all video controls */
.gallery-video::-webkit-media-controls {
    display: none !important;
}

.gallery-video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Softer video card design */
.video-card {
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
}

.video-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}


/* =============================================
   Smooth Page Transitions
   ============================================= */

/* Fade in animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: fadeIn 0.5s ease-out;
}

/* Smooth link transitions */
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page exit animation */
body.page-exit {
    animation: fadeOut 0.3s ease-in forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}


/* Video Natural Sizing - Consolidated */
.video-wrapper {
    min-height: 300px;
    max-height: 450px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 16px;
}

.gallery-video {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 450px;
    display: block;
}

.videos-grid {
    max-width: 1100px;
}

/* Image Labels - Consolidated */
.image-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 10;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.image-slot:hover .image-label {
    background: rgba(0, 0, 0, 0.9);
}

/* Hide all labels in lightbox */
.lightbox.active .image-label,
.lightbox-content .image-label,
.lightbox-caption,
.lightbox-label {
    display: none !important;
}

/* Service Hero (Contact Page) - Consolidated */
.service-hero {
    padding: 20px 0 60px;
}

.service-hero-container {
    align-items: center;
    gap: 60px;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
}

.service-hero-image {
    max-height: 400px;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 400px;
    border-radius: 12px;
}

/* Homepage Hero - Compact */
.hero {
    padding: 30px 0 40px;
}

.hero-headline {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-subheadline {
    margin-bottom: 20px;
}

/* Quote Form - Compact */
.quote-form-card {
    padding: 24px;
}

.quote-form-card .form-title {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.quote-form-card .form-subtitle {
    margin-bottom: 16px;
}

.quote-form input,
.quote-form select {
    padding: 10px 14px;
    font-size: 0.95rem;
}

.quote-form button {
    padding: 12px;
    margin-top: 4px;
}

/* Contact Form - Compact */
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 10px 14px;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 80px;
}

.form-submit-large {
    padding: 14px 32px;
    font-size: 15px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure clean photo presentation */
.image-slot img {
    object-position: center;
}

/* Homepage gallery: force uniform card height */
.gallery-grid .before-after {
    height: 220px;
    overflow: hidden;
}

.gallery-grid .image-slot {
    aspect-ratio: unset;
    height: 100%;
}

.gallery-grid .image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =============================================
   Commercial Section Specifics
   ============================================= */

.commercial-divider {
    display: flex;
    align-items: center;
    margin: 60px 0 40px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--light-gray);
}

.divider-text {
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.commercial-grid {
    margin-bottom: 40px;
}

.service-card.commercial {
    border: 1px solid var(--light-gray);
    background: var(--white);
}

.service-card.commercial:hover {
    border-color: var(--sky-blue);
}

.service-card.commercial .service-icon {
    color: var(--dark-gray);
}

.cta-button-commercial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--black);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.cta-button-commercial:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.services-cta {
    margin-top: 40px;
}

/* Blog Page (blog.html) */

.blog-hero {
    background: var(--gradient-blue);
    padding: 100px 24px 70px;
    text-align: center;
    color: var(--white);
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto;
}

.blog-main {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 64px 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

/* Full article cards (blog.html) */
.blog-article {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.blog-article-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-article-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-article-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.blog-article-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.35;
    margin-bottom: 14px;
}

.blog-article-excerpt {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.blog-article-excerpt p { margin-bottom: 10px; }
.blog-article-excerpt ul { padding-left: 18px; list-style: disc; }
.blog-article-excerpt ul li { margin-bottom: 6px; }

.blog-article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #bbb;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.blog-cta-banner {
    background: var(--gradient-blue);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    color: var(--white);
}

.blog-cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.blog-cta-banner p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 28px;
}

.blog-cta-banner a {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 40px;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.blog-cta-banner a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.5);
}

/* Responsive – Blog */
@media (max-width: 900px) {
    .blog-preview-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-preview-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-preview-title { font-size: 28px; }
    .blog-hero h1 { font-size: 2rem; }
}

/* End of stylesheet */