/* 
    Premium CSS System
    Theme: Modern, Trustworthy, High-Conversion
*/

:root {
    /* Color Palette */
    --primary-color: #0d2c3e; /* Deep Water Blue */
    --primary-light: #184a68;
    --accent-color: #00a8e8; /* Bright Cyan */
    --accent-light: #e6f7ff;
    --action-color: #ff6b00; /* Vibrant Orange for high conversion */
    --action-hover: #e56000;
    
    /* Neutral Colors */
    --dark-bg: #091a25;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Spacing & Utilities */
    --section-pad: 5rem 0;
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-card: 0 20px 25px -5px rgba(0,0,0,0.03), 0 8px 10px -6px rgba(0,0,0,0.01);
    --shadow-action: 0 10px 20px -5px rgba(255,107,0,0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-pad);
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-light { background-color: var(--bg-light); }
.w-full { width: 100%; }

/* Typography Scale */
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--action-color);
    color: white;
    box-shadow: var(--shadow-action);
}
.btn-primary:hover {
    background-color: var(--action-hover);
    transform: translateY(-2px);
    color: white;
}

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

.btn-outline {
    border-color: var(--border-color);
    color: var(--text-main);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-outline-light {
    border-color: rgba(255,255,255,0.4);
    color: white;
    background: transparent;
}
.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1rem 0;
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}
.navbar.scrolled .logo-text { color: var(--primary-color); }
.navbar.scrolled .nav-links a { color: var(--text-main); }
.navbar.scrolled .nav-links a:hover { color: var(--accent-color); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    object-position: top; /* Crops out the text at the bottom */
    border-radius: 50%;
    background: #000;
}
.logo-text {
    font-size: 1.125rem;
    font-weight: 800;
    color: white; /* default transparent header */
    line-height: 1.1;
    text-transform: uppercase;
    transition: var(--transition-normal);
}

.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-normal);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.nav-phone {
    background-color: white; 
    border-color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.navbar.scrolled .mobile-menu-btn { color: var(--primary-color); }

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(9, 26, 37, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.mobile-nav-content {
    text-align: center;
    width: 100%;
}
.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}
.mobile-link {
    font-size: 2rem;
    color: white;
    font-weight: 700;
}
.mobile-contact {
    color: var(--text-muted);
}
.mobile-phone {
    display: block;
    font-size: 1.5rem;
    color: var(--action-color);
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* space for navbar */
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--dark-bg); /* Clean dark background while video loads */
}
.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}
.hero-bg video.video-ready {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,44,62,0.9) 0%, rgba(13,44,62,0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
}
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
.hero-title .text-gradient {
    background: linear-gradient(to right, #00A8E8, #5EE6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-image-wrapper {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: var(--transition-fast);
}
.service-card:hover .service-image-wrapper {
    border-color: var(--accent-color);
}
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-logo-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    object-fit: cover;
    object-position: top; /* Crops out the text */
    border-radius: 50%;
    border: 2px solid white;
    background: #000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 2;
}
.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1; /* Pushes meta and button to bottom */
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.service-meta .price { color: var(--primary-color); font-size: 1.125rem; }
.service-meta .duration { color: var(--text-muted); font-size: 0.875rem; }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.benefit-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.benefit-list li {
    display: flex;
    gap: 1rem;
}
.benefit-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.benefit-text h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}
.benefit-text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ===========================================
   GALLERY PAGE STYLES
   =========================================== */
.gallery-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #184a68 100%);
    text-align: center;
}
.gallery-hero .section-title {
    color: white;
    margin-bottom: 0.75rem;
}
.gallery-hero .section-subtitle {
    color: rgba(255,255,255,0.7);
}
.gallery-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #184a68 100%);
    color: white;
    text-align: center;
}
.gallery-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.gallery-cta .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}
.gallery-cta .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.nav-links a.active {
    color: var(--accent-color);
}

/* ===========================================
   OUR WORK GALLERY SECTION
   =========================================== */
.gallery {
    background: var(--bg-white);
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: var(--bg-white);
    color: var(--text-muted);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-normal);
}
.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: var(--transition-normal);
}
.gallery-item.hidden {
    display: none;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(transparent, rgba(9, 26, 37, 0.85));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-tag {
    background: var(--action-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gallery-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* ===========================================
   GOOGLE REVIEWS SECTION
   =========================================== */
.reviews {
    background: var(--bg-light);
}
.reviews-header {
    margin-bottom: 3rem;
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9375rem;
}
.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.stars-large {
    color: #FBBC05;
    font-size: 1.5rem;
    letter-spacing: 2px;
}
.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}
.rating-count {
    color: var(--text-muted);
    font-size: 0.875rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.reviewer-info {
    flex: 1;
}
.reviewer-info h4 {
    font-size: 0.9375rem;
    margin-bottom: 0;
    color: var(--primary-color);
}
.review-stars {
    color: #FBBC05;
    font-size: 0.875rem;
    letter-spacing: 1px;
}
.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.google-icon-small {
    flex-shrink: 0;
    margin-left: auto;
}
.review-text {
    color: var(--text-main);
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: italic;
}

/* Gallery Loading & Empty States */
.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: 1rem;
}
.gallery-empty,
.empty-gallery-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}
.empty-gallery-message p {
    margin-top: 0.5rem;
    font-size: 1.125rem;
}

/* Reviews CTA Box */
.reviews-cta-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.04);
}
.cta-stars {
    color: #FBBC05;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}
.reviews-cta-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.reviews-cta-box p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}


.before-after-card {
    height: 500px;
    background: url('assets/hero_background.png') center/cover;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}
.card-glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    width: 100%;
}
.card-glass-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Lead Gen Form */
.lead-gen { background: var(--dark-bg); color: white; }
.lead-gen h2 { color: white; }

.lead-gen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.lead-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.contact-method h5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.contact-method p, .contact-method a {
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: var(--text-main);
}
.form-card h3 { color: var(--primary-color); }
.form-card > p { color: var(--text-muted); margin-bottom: 2rem; }

.premium-form .form-group {
    margin-bottom: 1.5rem;
}
.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.premium-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
}
.premium-form .required { color: var(--action-color); }
.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--bg-light);
    color: var(--text-main);
}
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}
.premium-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Booking Calendar Styles */
.booking-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.booking-widget {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    background: white;
    user-select: none;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.calendar-header h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--primary-color);
}
.calendar-nav-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition-fast);
}
.calendar-nav-btn:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
    color: var(--text-main);
}
.calendar-day.empty {
    cursor: default;
    background: transparent;
}
.calendar-day:not(.empty):not(.disabled):hover {
    background: var(--bg-light);
    color: var(--primary-color);
}
.calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}
.calendar-day.selected {
    background: var(--primary-color) !important;
    color: white !important;
    font-weight: 600;
}
.time-slots-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 0.3s ease;
}
.time-slots-container h5 {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--text-main);
    font-weight: 600;
}
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem;
}
.time-slot {
    border: 1px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}
.time-slot:hover {
    background: var(--accent-light);
}
.time-slot.selected {
    background: var(--primary-color);
    color: white;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.checkbox-group {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal !important;
}
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}
.compliance-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.compliance-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    margin-top: 1rem;
    height: 52px;
}
.spinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: relative;
    width: 24px;
    height: 24px;
    stroke: white;
}
.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

.form-success-msg {
    text-align: center;
    padding: 2rem;
}
.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* Footer */
.footer {
    background: #061118;
    color: var(--text-muted);
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo { margin-bottom: 1.5rem; }
.footer-logo .logo-text { color: white; }
.footer-desc {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}
.social-link:hover {
    background: var(--accent-color);
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
}
.footer ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer ul a {
    color: var(--text-muted);
}
.footer ul a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.footer-contact .icon { font-size: 1.25rem; }
.footer-contact a { color: var(--text-muted); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.875rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}
.cta-pulse {
    animation: pulse-shadow 2s infinite;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.125rem; }
    .about-grid, .lead-gen-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrapper { order: -1; } /* Image on top for mobile */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 4rem 0; }
    .hero { padding: 8rem 0 5rem; }
    .hero-overlay { background: rgba(9, 26, 37, 0.75); }
    .hero-title { font-size: 2.5rem; }
    
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1.5rem;
        gap: 1rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 0.5rem 1.5rem 1rem 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    .services-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .service-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        max-width: 320px;
    }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-filter { gap: 0.375rem; }
    .filter-btn { padding: 0.375rem 0.875rem; font-size: 0.75rem; }
    .overall-rating { flex-wrap: wrap; justify-content: center; }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row { flex-direction: column; gap: 0; }
    .premium-form .form-row {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
