/* SparkleIt Cleaning - Modern Design 2025 */

/* =============================================
   CSS Variables
   ============================================= */
:root {
    /* Colors */
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #dcfce7;
    --primary-gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
    
    --dark: #0f172a;
    --text: #1e293b;
    --text-light: #475569;
    --text-muted: #94a3b8;
    
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Spacing & Sizing */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Font */
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-dark);
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.75;
}

/* =============================================
   Container
   ============================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   Top Bar
   ============================================= */
.top-bar {
    background: var(--dark);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
}

.top-bar-contact a {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact a:hover {
    color: var(--primary);
}

.top-bar-contact svg {
    opacity: 0.7;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: white;
    transition: var(--transition);
}

.social-facebook { background: #1877f2; }
.social-facebook:hover { background: #166fe5; transform: translateY(-2px); }

.social-google { background: #ea4335; }
.social-google:hover { background: #d93025; transform: translateY(-2px); }

.social-yelp { background: #d32323; }
.social-yelp:hover { background: #c41200; transform: translateY(-2px); }

/* =============================================
   Header
   ============================================= */
.header {
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 10px 18px;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.nav-cta {
    margin-left: 8px;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.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: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(34, 197, 94, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(34, 197, 94, 0.5);
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}

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

.btn-white {
    background: white;
    color: var(--dark);
}

.btn-white:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .lead {
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-stats {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================================
   Sections
   ============================================= */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

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

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

.section-header p {
    margin-top: 16px;
    font-size: 1.125rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   Cards
   ============================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    margin-bottom: 12px;
}

.card-content p {
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary);
}

.card-link:hover {
    gap: 12px;
}

/* Service Cards */
.service-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.service-card h3 {
    margin-bottom: 12px;
}

/* =============================================
   Features Section
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.features-list {
    list-style: none;
    margin-top: 24px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 18px;
}

.feature-text h4 {
    margin-bottom: 4px;
}

.feature-text p {
    margin: 0;
    font-size: 14px;
}

/* =============================================
   Testimonials
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--secondary);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info strong {
    display: block;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   Page Header
   ============================================= */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-light) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

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

.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* =============================================
   Contact Form
   ============================================= */
.contact-form-container {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =============================================
   Sidebar
   ============================================= */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.sidebar-card h4 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
}

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

.footer-brand img {
    height: 48px;
    margin-bottom: 20px;
}

.footer-brand > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    max-width: 300px;
}

/* Footer Social Media Buttons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.social-btn svg {
    flex-shrink: 0;
}

.social-btn.social-facebook {
    background: #1877f2;
}

.social-btn.social-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    color: white;
}

.social-btn.social-google {
    background: #ea4335;
}

.social-btn.social-google:hover {
    background: #d93025;
    transform: translateY(-2px);
    color: white;
}

.social-btn.social-yelp {
    background: #d32323;
}

.social-btn.social-yelp:hover {
    background: #c41200;
    transform: translateY(-2px);
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-hours {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-hours strong {
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.license-badge,
.years-badge {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* =============================================
   Utility Classes
   ============================================= */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-stats {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 24px;
        justify-content: center;
    }
    
    .cards-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
    }
    
    .top-bar-contact {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        gap: 8px;
        display: none;
        z-index: 1000;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        width: 100%;
        text-align: center;
        font-size: 18px;
        padding: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cards-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-social {
        flex-wrap: wrap;
    }
    
    .social-btn span {
        display: none;
    }
    
    .social-btn {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-badges {
        flex-direction: column;
        width: 100%;
    }
    
    .license-badge,
    .years-badge {
        text-align: center;
    }
}

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

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============================================
   Page Hero (Internal Pages)
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .lead {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* =============================================
   Booking Page Styles
   ============================================= */
.booking-section {
    background: var(--bg-alt);
    padding: 60px 0 80px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.booking-form-wrap {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-form {
    padding: 0;
}

.form-section {
    padding: 32px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.form-section-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

/* Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.service-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option-content {
    flex: 1;
}

.service-option-content strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}

.service-desc {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.service-price {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
}

.service-option .checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-option.selected .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.service-option.selected .checkmark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Form Row Variants */
.form-row-3 {
    grid-template-columns: 2fr 1fr 1fr;
}

/* Checkbox Styling */
.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* Required Marker */
.required {
    color: var(--primary);
}

/* Field Error & Hints */
.field-error {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
}

.field-hint {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 6px;
}

.form-control.error {
    border-color: #ef4444;
}

/* Form Submit */
.form-submit {
    padding: 32px;
    background: var(--bg-alt);
    text-align: center;
}

.form-submit .btn {
    min-width: 280px;
}

.submit-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Booking Sidebar */
.booking-sidebar .sidebar-card {
    margin-bottom: 20px;
}

.booking-sidebar .sidebar-card.sticky {
    position: sticky;
    top: 100px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list span {
    font-size: 14px;
    color: var(--text-light);
}

.benefits-list strong {
    color: var(--dark);
}

.sidebar-hours {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

.service-areas-list {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Alert Messages */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 15px;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.alert svg {
    flex-shrink: 0;
}

/* =============================================
   Booking Confirmation Page
   ============================================= */
.confirmation-section {
    background: var(--bg-alt);
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.confirmation-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    text-align: center;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.confirmation-icon svg {
    color: var(--primary);
}

.confirmation-card h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.confirmation-card .lead {
    max-width: 500px;
    margin: 0 auto 32px;
}

.booking-reference {
    background: var(--bg-alt);
    padding: 20px 32px;
    border-radius: var(--radius);
    display: inline-block;
    margin-bottom: 40px;
}

.booking-reference span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.booking-reference strong {
    font-size: 1.5rem;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

.confirmation-details {
    text-align: left;
    background: var(--bg-alt);
    padding: 28px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.confirmation-details h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.details-grid {
    display: grid;
    gap: 16px;
}

.detail-item {
    display: flex;
    gap: 16px;
}

.detail-item .detail-label {
    width: 120px;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.detail-item .detail-value {
    font-size: 14px;
    color: var(--dark);
}

.confirmation-next {
    text-align: left;
    margin-bottom: 32px;
}

.confirmation-next h3 {
    text-align: center;
    margin-bottom: 24px;
}

.next-steps {
    list-style: none;
    counter-reset: steps;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.next-steps li:last-child {
    border-bottom: none;
}

.step-icon {
    font-size: 24px;
}

.next-steps strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}

.next-steps p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.confirmation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.confirmation-contact {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.confirmation-contact p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

.contact-options {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.contact-options a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
}

.contact-options a:hover {
    color: var(--primary);
}

/* Responsive Booking */
@media (max-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar .sidebar-card.sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 24px 20px;
    }
    
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    
    .confirmation-card {
        padding: 32px 24px;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn {
        width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 12px;
    }
}
