:root {
    /* Color Palette - Premium Teal & Modern */
    --primary-hue: 175;
    --primary-sat: 80%;
    --primary-light: 40%;
    --primary-dark: 30%;

    --color-primary: hsl(var(--primary-hue), var(--primary-sat), var(--primary-light));
    --color-primary-hover: hsl(var(--primary-hue), var(--primary-sat), var(--primary-dark));
    --color-accent: #f59e0b;
    /* Amber remains for contrast */
    --color-success: #059669;
    --color-danger: #dc2626;

    /* Light Theme Defaults */
    --bg-body: #f8fafc;
    --bg-surface: rgba(255, 255, 255, 0.9);
    --bg-surface-glass: rgba(255, 255, 255, 0.7);
    --bg-subtle: rgba(241, 245, 249, 0.6);

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-inverted: #ffffff;

    --border-color: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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-glow: 0 0 20px rgba(20, 184, 166, 0.2);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --spacing-container: 1280px;
    --header-height: 80px;
}

[data-theme="dark"] {
    --bg-body: #0f172a;
    --bg-surface: rgba(30, 41, 59, 0.9);
    --bg-surface-glass: rgba(15, 23, 42, 0.85);
    --bg-subtle: rgba(51, 65, 85, 0.5);

    --text-main: #f1f5f9;
    --text-muted: #cbd5e1;

    --border-color: rgba(71, 85, 105, 0.6);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px rgba(20, 184, 166, 0.25);
    --color-primary-hover: hsl(var(--primary-hue), var(--primary-sat), 50%);
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    /* Rich, colorful atmospheric background */
    background-image:
        radial-gradient(at 0% 0%, rgba(20, 184, 166, 0.3) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.3) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(139, 92, 246, 0.2) 0px, transparent 50%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

/* Image Placeholders (SVG/CSS generated) */
.mock-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--border-color) 100%);
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.mock-image svg {
    width: 40%;
    height: 40%;
    opacity: 0.2;
    color: var(--text-muted);
}

.mock-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-image-block {
    flex: 1;
    height: 400px;
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-main);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 82, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(59, 130, 246, 0.05);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2.25rem;
    /* Increased from 1.5rem */
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero background canvas removed */

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.hero-subtext {
    font-size: 1.25rem;
    margin: 1.5rem 0;
    opacity: 0.9;
}

.hero-btns {
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--bg-subtle);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

/* Services */
.service-card {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(20, 184, 166, 0.1);
    border-color: var(--color-primary);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-card.active .service-details {
    max-height: 200px;
    margin-top: 1rem;
}

.service-card.active .expand-icon {
    transform: rotate(180deg);
}

/* Wizard Section - The Hook */
.wizard-container {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 3rem;
    min-height: 500px;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-color);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-indicator.active {
    opacity: 1;
    color: var(--color-primary);
}

.step-indicator.active .step-num {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.step-indicator.completed {
    opacity: 1;
    color: var(--color-success);
}

.step-indicator.completed .step-num {
    border-color: var(--color-success);
    background: var(--color-success);
    color: white;
}

.wizard-content {
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.step-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-panel.active {
    display: block;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.checkbox-tile {
    position: relative;
}

.checkbox-tile input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.tile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    gap: 0.75rem;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--bg-surface);
}

/* Fancy Shine Effect */
.tile-content::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 45%, rgba(20, 184, 166, 0.1) 50%, transparent 55%);
    transition: all 0.6s ease;
    pointer-events: none;
    transform: rotate(0deg);
}

.tile-content:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--color-primary);
    box-shadow: 0 12px 24px rgba(20, 184, 166, 0.2), 0 0 10px rgba(20, 184, 166, 0.1);
}

.tile-content:hover::after {
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
}

.tile-content svg {
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tile-content:hover svg {
    color: var(--color-primary);
    transform: scale(1.2) rotate(5deg);
}

.checkbox-tile input:checked+.tile-content svg {
    color: var(--color-primary);
    transform: scale(1.1);
}

.checkbox-tile input:checked+.tile-content {
    border-color: var(--color-primary);
    background: rgba(20, 184, 166, 0.05);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.1);
}

.wizard-summary {
    background: var(--bg-subtle);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.price-range {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 1rem 0;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-surface);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1);
    background: var(--color-primary);
    color: #fff;
}

/* Pricing */
.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Reviews */
.review-carousel-container {
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 300px;
    flex: 1;
    background: var(--bg-subtle);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

/* FAQ */
.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

/* Footer */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 4rem 1rem 2rem;
    margin-top: 4rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-surface);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal {
    transform: scale(1);
}

/* Floating UI */
.sticky-bar {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: top 0.4s ease;
}

.sticky-bar.visible {
    top: 20px;
}

.sticky-bar-close {
    position: absolute;
    top: 5px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.sticky-bar-close:hover {
    color: var(--color-primary);
}

.mobile-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}


/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-muted);
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook:hover {
    background: #1877F2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 5px 15px rgba(214, 36, 159, 0.3);
}

.social-icon:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Dark/Light Toggle */
.theme-toggle {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Inputs */
.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.input-field {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-body);
    color: var(--text-main);
    font-family: inherit;
    transition: border-color 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        /* Full height */
        background: var(--bg-surface);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        /* Slightly more gap for full screen */
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        justify-content: center;
        /* Center links in full height */
        align-items: center;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content,
    .hero-image-block {
        width: 100%;
        flex: none;
    }

    .hero-image-block {
        height: 300px;
    }

    .hero-badges,
    .hero-btns {
        justify-content: center;
    }

    .wizard-progress {
        padding: 1rem 0.5rem;
        gap: 0.25rem;
    }

    .step-indicator {
        gap: 0.4rem;
        font-size: 0.85rem;
    }

    .step-indicator span:not(.step-num) {
        display: block;
        max-width: 60px;
        line-height: 1.1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    @media (max-width: 480px) {
        .step-indicator span:not(.step-num) {
            display: none;
            /* Only show numbers on very small screens */
        }
    }

    .wizard-summary .flex {
        gap: 1rem;
        flex-direction: column-reverse;
    }

    .wizard-summary .btn {
        width: 100%;
    }

    .wizard-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .wizard-summary {
        margin-top: 2rem;
    }

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

    .timeline {
        flex-direction: column;
        gap: 2rem;
        margin-left: 1rem;
        border-left: 2px solid var(--border-color);
    }

    .timeline::before {
        display: none;
    }

    .timeline-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 1rem;
    }

    .step-icon {
        margin: 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer {
        text-align: center;
        padding-bottom: 5rem;
        /* Space for sticky bar/call button */
    }

    .footer .grid-4 {
        gap: 2.5rem;
    }

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

    .footer ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sticky-bar {
        width: 90%;
        top: -200px;
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 1rem;
    }

    .sticky-bar.visible {
        top: 90px;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    background: var(--bg-surface);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 184, 166, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: var(--radius-sm);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Lightbox fancy styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.open {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lightbox-overlay.open .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        bottom: 2rem;
        top: auto;
        transform: none;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 30%;
    }

    .lightbox-next {
        right: 30%;
    }
}