/*
Theme Name: Oswego Web Co
Theme URI: http://ecoshuttle.local
Author: Oswego Web Co
Description: Custom theme for Oswego Web Co - Lake Oswego's premier web design agency
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: owc-theme
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #38b2ac;
    --accent: #ed8936;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #38b2ac 100%);
    --gradient-light: linear-gradient(135deg, #38b2ac 0%, #4fd1c5 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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 { color: var(--gray); }

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.site-header.scrolled,
.site-header.header-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.site-header.scrolled .logo,
.site-header.header-light .logo {
    color: var(--primary);
    text-shadow: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    font-weight: 500;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    padding: 0.5rem 0;
}

.site-header.scrolled .main-nav a,
.site-header.header-light .main-nav a {
    color: var(--dark);
    text-shadow: none;
}

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

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

.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    text-shadow: none !important;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.site-header.scrolled .nav-toggle span,
.site-header.header-light .nav-toggle span {
    background: var(--dark);
}

/* ============================================
   HERO SECTION - FULLSCREEN
   ============================================ */
.hero-fullscreen {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 54, 93, 0.7) 0%,
        rgba(26, 54, 93, 0.5) 50%,
        rgba(26, 32, 44, 0.8) 100%
    );
    z-index: -1;
}

.hero-content-centered {
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-fullscreen h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */
.value-proposition {
    padding: 5rem 0;
    background: white;
}

.value-content {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.value-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-lead {
    font-size: 1.25rem !important;
    color: var(--dark) !important;
    margin-bottom: 1.5rem !important;
}

.value-problems {
    list-style: none;
    margin-bottom: 1.5rem;
}

.value-problems li {
    font-size: 1.125rem;
    color: var(--dark);
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.value-problems li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #e53e3e;
    border-radius: 50%;
}

.value-problems li strong {
    color: var(--primary);
}

.value-note {
    font-size: 1rem !important;
    color: var(--gray) !important;
    line-height: 1.6;
}

.pricing-cards {
    display: flex;
    gap: 1rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid #e2e8f0;
    text-align: center;
    min-width: 180px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pricing-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-price span {
    font-size: 1.25rem;
}

.pricing-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
}

.pricing-perks {
    list-style: none;
    margin-bottom: 1.25rem;
    text-align: left;
}

.pricing-perks li {
    font-size: 0.9rem;
    color: var(--dark);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.pricing-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.icon-check {
    color: var(--secondary);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .value-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .value-problems {
        text-align: left;
        display: inline-block;
    }

    .pricing-cards {
        justify-content: center;
    }

    .value-proposition {
        padding: 3rem 0;
    }
}

@media (max-width: 500px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   IMAGE BANNER SECTION
   ============================================ */
.image-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.85);
    z-index: -1;
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.banner-stat {
    text-align: center;
    padding: 2rem;
}

.banner-stat .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-stat .stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION WITH BACKGROUND
   ============================================ */
.services-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.92);
    z-index: -1;
}

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

.section-header.light h2,
.section-header.light p {
    color: white;
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

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

.glass-card {
    background: #2d3748;
    border: 1px solid #3d4a5c;
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: #374151;
}

.glass-card:hover {
    background: #374151;
    transform: translateY(-10px);
    border-color: rgba(56, 178, 172, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: var(--transition);
}

.glass-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.glass-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.glass-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION - SPLIT LAYOUT
   ============================================ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.about-image-side {
    position: relative;
    overflow: hidden;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.about-section:hover .about-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(26, 54, 93, 0.3) 100%);
}

.about-image-content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.about-content-side {
    display: flex;
    align-items: center;
    background: var(--light);
    padding: 4rem;
}

.about-content {
    max-width: 550px;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(56, 178, 172, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9375rem;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.portfolio-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.9);
    z-index: -1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.portfolio-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(26, 32, 44, 0.95));
    transform: translateY(30%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.portfolio-overlay-content h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(44, 82, 130, 0.85) 100%);
    z-index: -1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BOOKING PAGE (Contact)
   ============================================ */
.booking-page {
    padding: 8rem 0 4rem;
    background: var(--light);
    min-height: 100vh;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

/* Main Content */
.booking-main {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.booking-header {
    background: var(--gradient-primary);
    padding: 2rem 2.5rem;
    color: white;
}

.booking-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
}

.booking-calendar-wrapper {
    padding: 0;
}

.booking-calendar-wrapper .owc-booking-calendar {
    border-radius: 0;
    box-shadow: none;
}

.booking-calendar-wrapper .calendar-header {
    border-radius: 0;
}

/* Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.sidebar-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.sidebar-card p {
    font-size: 0.875rem;
    margin: 0;
}

/* Expect List */
.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--dark);
    font-size: 0.9375rem;
}

.expect-list li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.expect-list svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Sidebar Contact */
.sidebar-contact {
    background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
    border: 1px solid rgba(56, 178, 172, 0.2);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--secondary);
}

.email-link svg {
    color: var(--secondary);
}

/* Sidebar Meta */
.sidebar-meta {
    padding: 0 0.5rem;
}

.sidebar-meta p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.sidebar-meta svg {
    color: var(--gray);
    flex-shrink: 0;
}

/* Booking Page Responsive */
@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }

    .sidebar-meta {
        width: 100%;
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .sidebar-meta p {
        margin: 0;
    }
}

@media (max-width: 640px) {
    .booking-page {
        padding: 6rem 0 2rem;
    }

    .booking-header {
        padding: 1.5rem;
    }

    .booking-header h1 {
        font-size: 1.5rem;
    }

    .booking-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        min-width: auto;
    }

    .sidebar-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */
.owc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.owc-contact-form .form-group {
    position: relative;
}

.owc-contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.9375rem;
}

.owc-contact-form input[type="text"],
.owc-contact-form input[type="email"],
.owc-contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light);
}

.owc-contact-form input:focus,
.owc-contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(56, 178, 172, 0.1);
}

.owc-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.owc-contact-form button[type="submit"] {
    background: var(--gradient-primary);
    color: white;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
}

.owc-contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.form-success {
    background: rgba(56, 178, 172, 0.1);
    color: #234e52;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    border-left: 4px solid var(--secondary);
}

.form-error {
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    border-left: 4px solid #c53030;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    padding: 5rem 0 2rem;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: none;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-main {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

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

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image-side {
        min-height: 400px;
    }

    .about-content-side {
        padding: 3rem;
    }

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

    .portfolio-item.large {
        grid-row: span 1;
    }

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        padding: 6rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

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

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

    .main-nav a {
        color: var(--dark);
        text-shadow: none;
    }

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

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

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

    .footer-social { justify-content: center; }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .banner-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .banner-stat {
        padding: 1rem;
    }

    .banner-stat .stat-number {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .hero-bg-image,
    .banner-image,
    .services-bg,
    .portfolio-bg,
    .cta-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }

    .container { padding: 0 1rem; }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .location-badge {
        left: 1rem;
        bottom: 1rem;
    }
}

/* ============================================
   3-COLUMN FOOTER GRID
   ============================================ */
.footer-grid-3col {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* ============================================
   4-COLUMN FOOTER GRID
   ============================================ */
.footer-grid-4col {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-contact-info a {
    color: var(--secondary);
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: white;
}

/* ============================================
   MOBILE SCROLL INDICATOR FIX
   ============================================ */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-fullscreen {
        min-height: calc(100vh - 60px);
        padding-bottom: 2rem;
    }
    
    .footer-grid-3col,
    .footer-grid-4col {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
    }
    
    .footer-contact-info {
        border-top: none;
        padding-top: 1rem;
    }
    
    /* Fix animation performance on mobile */
    .glass-card,
    .portfolio-item,
    .btn {
        transform: none !important;
    }
    
    .glass-card:hover,
    .portfolio-item:hover {
        transform: none !important;
    }
    
    /* Simpler hover effects on mobile */
    .glass-card:hover {
        background: #374151;
    }
    
    .portfolio-overlay-content {
        transform: translateY(0);
        background: linear-gradient(transparent 0%, rgba(26, 32, 44, 0.9) 40%);
    }
    
}

@media (max-width: 480px) {
    .footer-grid-3col,
    .footer-grid-4col {
        gap: 1.5rem;
    }
    
    .banner-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .banner-stat .stat-number {
        font-size: 2rem;
    }
    
    .banner-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-content-centered h1 {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* ============================================
   2-COLUMN PORTFOLIO GRID
   ============================================ */
.portfolio-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
}

.portfolio-grid-2 .portfolio-item {
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.portfolio-grid-2 .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-slow);
}

.portfolio-grid-2 .portfolio-item:hover img {
    transform: scale(1.05);
}

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

/* ============================================
   BOOKING CALENDAR STYLES
   ============================================ */
.owc-booking-calendar {
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

/* Calendar Header */
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
}

.calendar-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.calendar-nav {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
}

.calendar-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.25);
}

.calendar-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Calendar Grid */
.calendar-grid {
    padding: 1rem;
    position: relative;
}

.calendar-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

.calendar-grid.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--secondary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.calendar-row {
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 6px;
}

.calendar-row:last-child {
    margin-bottom: 0;
}

/* Day Headers */
.calendar-header-row {
    margin-bottom: 12px;
}

.calendar-time-header {
    /* Empty cell for alignment */
}

.calendar-day-header {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--light);
    border-radius: 8px;
}

.calendar-day-header.today {
    background: var(--secondary);
    color: white;
}

.calendar-day-header .day-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray);
}

.calendar-day-header.today .day-name {
    color: rgba(255, 255, 255, 0.8);
}

.calendar-day-header .day-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 2px;
}

.calendar-day-header.today .day-number {
    color: white;
}

/* Time Labels */
.calendar-time-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray);
}

/* Time Slots */
.calendar-slot {
    min-height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.calendar-slot.available {
    background: rgba(56, 178, 172, 0.1);
    color: var(--secondary);
    border-color: rgba(56, 178, 172, 0.2);
}

.calendar-slot.available:hover {
    background: rgba(56, 178, 172, 0.2);
    border-color: var(--secondary);
    transform: scale(1.02);
}

.calendar-slot.available.selected {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(56, 178, 172, 0.4);
}

.calendar-slot.booked {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

.calendar-slot.past {
    background: #fafafa;
    color: #cbd5e1;
    cursor: not-allowed;
}

.available-indicator,
.booked-indicator {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Booking Form Container */
.booking-form-container {
    border-top: 1px solid #e2e8f0;
    padding: 2rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form-header {
    margin-bottom: 1.5rem;
}

.booking-form-header h4 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.selected-slot-display {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
}

/* Booking Form */
.owc-booking-form .form-group {
    margin-bottom: 1.25rem;
}

.owc-booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.9375rem;
}

.owc-booking-form input[type="text"],
.owc-booking-form input[type="tel"],
.owc-booking-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light);
}

.owc-booking-form input:focus,
.owc-booking-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(56, 178, 172, 0.1);
}

.owc-booking-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Booking Form Actions */
.booking-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-cancel-booking {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: var(--gray);
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel-booking:hover {
    border-color: var(--gray);
    color: var(--dark);
}

.owc-booking-form button[type="submit"] {
    flex: 1;
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.owc-booking-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

/* Calendar Responsive */
@media (max-width: 900px) {
    .calendar-row {
        grid-template-columns: 60px repeat(5, 1fr);
        gap: 4px;
    }

    .calendar-time-label {
        font-size: 0.75rem;
        padding-right: 8px;
    }

    .calendar-slot {
        min-height: 44px;
    }

    .available-indicator,
    .booked-indicator {
        font-size: 0.5625rem;
    }

    .calendar-day-header {
        padding: 0.5rem 0.25rem;
    }

    .calendar-day-header .day-name {
        font-size: 0.625rem;
    }

    .calendar-day-header .day-number {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .calendar-header {
        padding: 1rem;
    }

    .calendar-title {
        font-size: 0.9375rem;
    }

    .calendar-nav {
        width: 36px;
        height: 36px;
    }

    .calendar-grid {
        padding: 0.75rem;
    }

    .calendar-row {
        grid-template-columns: 50px repeat(5, 1fr);
        gap: 3px;
        margin-bottom: 3px;
    }

    .calendar-time-label {
        font-size: 0.6875rem;
        padding-right: 6px;
    }

    .calendar-slot {
        min-height: 38px;
        border-radius: 6px;
    }

    .available-indicator,
    .booked-indicator {
        font-size: 0.5rem;
        letter-spacing: 0;
    }

    .calendar-day-header .day-name {
        font-size: 0.5625rem;
    }

    .calendar-day-header .day-number {
        font-size: 0.875rem;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .booking-form-actions {
        flex-direction: column;
    }

    .btn-cancel-booking {
        order: 2;
    }

    .owc-booking-form button[type="submit"] {
        order: 1;
    }
}

/* Hide slot text on very small screens */
@media (max-width: 480px) {
    .available-indicator,
    .booked-indicator {
        display: none;
    }

    .calendar-slot.available::after {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--secondary);
        border-radius: 50%;
    }

    .calendar-slot.available.selected::after {
        background: white;
    }

    .calendar-slot.booked::after {
        content: '';
        width: 8px;
        height: 2px;
        background: #cbd5e1;
    }
}

/* ============================================
   LOCATION PAGE SECTIONS
   ============================================ */

/* SEO Section */
.seo-section {
    padding: 6rem 0;
    background: var(--light);
}

.seo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.seo-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.seo-features {
    list-style: none;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.seo-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.seo-features li:last-child {
    border-bottom: none;
}

.seo-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Area Section */
.area-section {
    padding: 5rem 0;
    background: white;
}

.area-content {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.area-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--light);
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Location Page Responsive */
@media (max-width: 768px) {
    .seo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .seo-section,
    .faq-section {
        padding: 4rem 0;
    }

    .area-section {
        padding: 3rem 0;
    }
}

/* ============================================
   CONTACT PAGE INTAKE FORM
   ============================================ */

.intake-form-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.intake-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group label .optional {
    font-weight: 400;
    color: var(--gray);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Calendar Step */
.calendar-intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.calendar-prompt {
    color: var(--dark);
    font-weight: 500;
    margin: 0;
}

/* Booking Confirmation Details */
.booking-confirm-details {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.confirm-detail {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.confirm-detail:last-child {
    border-bottom: none;
}

.confirm-label {
    font-weight: 600;
    color: var(--dark);
    min-width: 60px;
}

.confirm-value {
    color: var(--gray);
    word-break: break-word;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .intake-form-wrapper {
        padding: 1.5rem;
    }

    .calendar-intro {
        flex-direction: column;
        align-items: flex-start;
    }
}
