/* ============================================
   Bath Shine Repair - Professional Bath Restoration
   Clean, Trustworthy Design
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #1a4d5c;
    --color-primary-dark: #0f3640;
    --color-primary-light: #2a6b7d;
    --color-accent: #3d9eb5;
    --color-accent-light: #5bb8ce;
    --color-gold: #c4a35a;
    --color-gold-light: #d4b86e;
    
    --color-text: #2c3e44;
    --color-text-light: #5a6d73;
    --color-text-muted: #8a9a9f;
    
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9fa;
    --color-bg-dark: #1a4d5c;
    
    --color-border: #e1e8eb;
    --color-border-light: #f0f4f5;
    
    --color-success: #22c55e;
    --color-error: #ef4444;
    
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(26, 77, 92, 0.08);
    --shadow-md: 0 4px 12px rgba(26, 77, 92, 0.1);
    --shadow-lg: 0 8px 30px rgba(26, 77, 92, 0.12);
    --shadow-xl: 0 20px 50px rgba(26, 77, 92, 0.15);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--color-success);
    color: #166534;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--color-error);
    color: #991b1b;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
}

.logo svg {
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transform: translateX(100%);
        transition: var(--transition);
    }
    
    .nav.open {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.btn-white:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-bg-alt);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--color-primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header.light {
    color: white;
}

.section-header.light h2 {
    color: white;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(61, 158, 181, 0.1);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.section-title {
    margin-bottom: 16px;
}

.section-text {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 50%, rgba(61, 158, 181, 0.05) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(61, 158, 181, 0.08) 0%, transparent 70%);
}

.hero-content {
    max-width: 700px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 77, 92, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-bath-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-bath-image {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    max-width: 560px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

.trust-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }
}

/* Services Preview */
.services-preview {
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    position: relative;
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--color-gold);
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    min-height: 60px;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.service-card.featured .service-price {
    color: var(--color-gold-light);
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* Process Section */
.process-section {
    background: var(--color-primary);
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
    padding: 24px;
}

.step-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.process-step h3 {
    color: white;
    margin-bottom: 12px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-content .section-badge {
    display: inline-block;
}

.why-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.why-list {
    list-style: none;
    margin-bottom: 32px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.why-list svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.why-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-card-content {
    position: relative;
    z-index: 1;
}

.why-card h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.75rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.why-card-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.1;
}

.why-card-icon svg {
    width: 160px;
    height: 160px;
}

/* Coverage Section */
.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.coverage-tag {
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.coverage-tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.coverage-tag.highlight {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: var(--color-bg-alt);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    color: var(--color-text-light);
    font-size: 1.15rem;
}

/* Content Block */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    margin-bottom: 24px;
}

.content-block p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Services Detail */
.services-detail {
    background: var(--color-bg-alt);
}

.services-detail .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .services-detail .container {
        grid-template-columns: 1fr;
    }
}

.service-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    position: relative;
}

.service-detail-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.service-detail-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-gold);
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.service-detail-header {
    padding: 32px;
    text-align: center;
    border-bottom: 1px solid var(--color-border-light);
}

.service-detail-price {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.service-detail-header h3 {
    margin-bottom: 4px;
}

.service-subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.service-detail-body {
    padding: 32px;
}

.service-detail-body h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    margin-top: 24px;
}

.service-detail-body h4:first-child {
    margin-top: 0;
}

.service-detail-body ul {
    list-style: none;
}

.service-detail-body li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text-light);
}

.service-detail-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.service-detail-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Additional Services */
.additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .additional-grid {
        grid-template-columns: 1fr;
    }
}

.additional-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    text-align: center;
}

.additional-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-accent);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.additional-card h3 {
    margin-bottom: 12px;
}

.additional-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.additional-note {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-bg-alt);
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
}

/* Limitations Section */
.limitations-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-gold);
}

.limitations-card h3 {
    margin-bottom: 16px;
}

.limitations-card > p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.limitations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.limitation {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
}

.limitation svg {
    flex-shrink: 0;
    color: #c44;
}

.limitations-note {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Property Section */
.property-section {
    background: var(--color-bg-alt);
}

.property-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .property-content {
        grid-template-columns: 1fr;
    }
}

.property-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.property-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.property-features {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.property-feature:last-child {
    border-bottom: none;
}

.property-feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Gallery Section */
.gallery-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-item.featured {
    grid-column: 1 / -1;
}

.gallery-item.featured .gallery-image-wrapper {
    aspect-ratio: 16/9;
}

.gallery-item.featured .gallery-item-info {
    text-align: center;
    padding: 28px 32px;
}

.gallery-item.featured .gallery-item-info h3 {
    font-size: 1.5rem;
}

.gallery-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: ew-resize;
    background: var(--color-bg-alt);
}

.comparison-image {
    position: absolute;
    inset: 0;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.comparison-after {
    z-index: 1;
}

.comparison-label {
    position: absolute;
    bottom: 12px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    z-index: 5;
}

.comparison-before .comparison-label {
    left: 12px;
}

.comparison-after .comparison-label {
    right: 12px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-line {
    position: absolute;
    inset: 0;
    background: white;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.handle-circle svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.gallery-item-info {
    padding: 24px;
}

.gallery-item-info h3 {
    margin-bottom: 8px;
}

.gallery-item-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* What We Fix */
    width: 4px;
    background: white;
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-line {
    position: absolute;
    inset: 0;
    background: white;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.handle-circle svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.gallery-item-info {
    padding: 24px;
}

.gallery-item-info h3 {
    margin-bottom: 8px;
}

.gallery-item-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* What We Fix */
.fix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .fix-grid {
        grid-template-columns: 1fr;
    }
}

.fix-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.fix-card.can-fix {
    border-top: 4px solid var(--color-accent);
}

.fix-card.cannot-fix {
    border-top: 4px solid #c44;
}

.fix-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.fix-card.can-fix .fix-icon {
    background: rgba(61, 158, 181, 0.1);
    color: var(--color-accent);
}

.fix-card.cannot-fix .fix-icon {
    background: rgba(204, 68, 68, 0.1);
    color: #c44;
}

.fix-card h3 {
    margin-bottom: 16px;
}

.fix-card ul {
    list-style: none;
}

.fix-card li {
    padding: 8px 0;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border-light);
}

.fix-card li:last-child {
    border-bottom: none;
}

.fix-note {
    margin-top: 16px;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Photos Note */
.note-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--color-border);
}

.note-card svg {
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.note-content h3 {
    margin-bottom: 8px;
}

.note-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrapper h2 {
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(61, 158, 181, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    margin-bottom: 0;
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-box {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    background: var(--color-bg-alt);
    transition: var(--transition);
}

.file-upload-wrapper:hover .file-upload-box,
.file-input:focus + .file-upload-box {
    border-color: var(--color-accent);
    background: rgba(61, 158, 181, 0.05);
}

.file-upload-box svg {
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.file-upload-text {
    display: block;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
}

.file-upload-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.file-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
}

.file-preview-remove:hover {
    background: rgba(200, 0, 0, 0.8);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--color-accent);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-link-large {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

a.contact-link-large:hover {
    color: var(--color-accent);
}

.contact-card-content p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing Summary */
.pricing-summary {
    background: var(--color-primary);
    color: white;
    padding: 24px;
    border-radius: var(--radius-lg);
}

.pricing-summary h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-item:last-of-type {
    border-bottom: none;
}

.pricing-item .price {
    font-weight: 600;
    color: var(--color-gold-light);
}

.pricing-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 0;
}

/* Coverage Contact */
.coverage-contact {
    background: var(--color-bg-alt);
}

.coverage-tags.centered {
    justify-content: center;
}

.coverage-note {
    text-align: center;
    color: var(--color-text-muted);
    margin-top: 24px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links a,
.footer-contact a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact p {
    padding: 6px 0;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility */
.text-center {
    text-align: center;
}