:root {
    /* Dark Theme Colors */
    --primary-blue: #3b82f6;
    --primary-blue-dark: #2563eb;
    --accent-orange: #f97316;
    --accent-green: #22c55e;
    --accent-green-dark: #16a34a;

    /* Dark backgrounds */
    --dark-bg: #0a0f1a;
    --dark-bg-lighter: #111827;
    --dark-bg-card: #1a2332;
    --dark-bg-elevated: #1f2937;

    /* Light text on dark */
    --text-white: #ffffff;
    --text-light: #f1f5f9;
    --text-gray: #94a3b8;
    --text-muted: #64748b;

    /* Borders and shadows */
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(59, 130, 246, 0.3);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-dark: linear-gradient(135deg, #0a0f1a 0%, #1a2332 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Performance Optimized Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    pointer-events: none;
    will-change: transform;
    /* Hint to browser to layerize */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip to content for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Header - Dark Theme */
header {
    background: rgba(10, 15, 26, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: saturate(180%) blur(10px);
    transition: all 0.3s ease;
}

header.header-scrolled {
    background: rgba(10, 15, 26, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-white);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.logo-main {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-white);
}

.logo-sub {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-accent);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-white);
    cursor: pointer;
    padding: 12px;
    position: relative;
    z-index: 1001;
    border-radius: 8px;
    transition: background-color 0.3s;
    align-items: center;
    gap: 8px;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-text {
    font-size: 15px;
    font-weight: 600;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--dark-bg-lighter);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    display: none;
    z-index: 999;
    gap: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    font-size: 18px;
    padding: 18px 25px;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
    border-radius: 0;
}

.mobile-menu .nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
}

.mobile-menu .nav-cta {
    width: 80%;
    text-align: center;
    padding: 18px 25px;
    margin: 10px auto;
    border-radius: 50px;
    min-height: 56px;
}

/* Hero Section - Dark Theme */
.hero {
    padding: 160px 0 100px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('hero-new.png') center/cover no-repeat;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-bg) 40%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(249, 115, 22, 0.15);
    border: 2px solid var(--accent-orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.1;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    display: none;
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Button Pulse Animation - Intensified */
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.85);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.btn-primary:not(:hover) {
    animation: pulse-glow 2s infinite ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* Cards - Dark Theme High-Tech */
.card {
    background: rgba(26, 35, 50, 0.75);
    /* Slightly more opaque fallback */
    backdrop-filter: blur(8px);
    /* Reduced blur radius for performance */
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    /* Promote to compositor layer */
    transform: translateZ(0);
    /* Hardware acceleration hack */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4), 0 0 10px rgba(249, 115, 22, 0.2);
    border-color: rgba(59, 130, 246, 0.8);
}

/* Neon Border animation on hover */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), var(--accent-orange), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    opacity: 1;
    z-index: 10;
    box-shadow: 0 0 15px var(--primary-blue);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 30px;
}

.card-icon.accent {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.1) 100%);
    color: var(--accent-orange);
}

.card-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.1) 100%);
    color: var(--accent-green);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-blue);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(249, 115, 22, 0.25);
    z-index: -1;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Services Section */
.services {
    background: var(--dark-bg-lighter);
}

/* Pricing */
/* Pricing Cards - Specific Overrides */
.pricing-card {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    text-align: center;
    /* Ensure overflow doesn't clip badge */
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-accent);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2), var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    z-index: 20;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.price {
    font-size: 60px;
    font-weight: 900;
    color: var(--primary-blue);
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-white);
}



/* Availability Calendar */
.availability-section {
    background: var(--dark-bg-lighter);
}

.availability-calendar {
    max-width: 900px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.calendar-header h3 {
    margin: 0;
    color: var(--text-white);
    font-size: 22px;
}

.calendar-nav {
    width: 45px;
    height: 45px;
    background: var(--dark-bg-elevated);
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-nav:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.calendar-day {
    background: var(--dark-bg-elevated);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border: 2px solid var(--border-dark);
    transition: all 0.3s;
}

.calendar-day:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.calendar-day.today {
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.calendar-day-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.calendar-day-date {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
}

.calendar-slots {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.calendar-slots.available {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-green);
}

.calendar-slots.limited {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
}

.calendar-slots.unavailable {
    background: rgba(148, 163, 184, 0.15);
    color: var(--text-muted);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-dark);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.available {
    background: var(--accent-green);
}

.legend-dot.limited {
    background: var(--accent-orange);
}

.legend-dot.unavailable {
    background: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
    background: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg-card);
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question span {
    display: flex;
    align-items: center;
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 22px 25px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--text-light);
}

.testimonials {
    background: var(--dark-bg-lighter);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered Hero Animations */
.hero-content>* {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
    animation-delay: 0.2s;
}

.hero h1 {
    animation-delay: 0.4s;
}

.hero p {
    animation-delay: 0.6s;
}

.hero-buttons {
    animation-delay: 0.8s;
}

.testimonial-card {
    background: var(--dark-bg-card);
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
    text-align: center;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--border-accent);
}

/* Review Author - Name First Layout */
.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.stars {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--dark-bg-elevated);
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-bg-elevated);
    border: 2px solid var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.2);
}

.carousel-dot:hover {
    border-color: var(--primary-blue);
}

/* Google Badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-bg-card);
    border: 2px solid var(--border-dark);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s;
}

.google-badge:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Booking Form */
.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-bg-card);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.form-header {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    text-align: center;
}

.form-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
}

.form-body {
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group label .required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--dark-bg-elevated);
    color: var(--text-white);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-control.error {
    border-color: #ef4444;
}

.form-control.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.error-message {
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.45);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 40px;
}

/* MOT Reminder Section */
.reminder-preview {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px 30px;
    transition: all 0.3s;
    border: 2px solid transparent;
    background: var(--dark-bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    cursor: pointer;
}

.reminder-preview:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.preview-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.preview-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.preview-toggle {
    background: var(--gradient-accent);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.preview-toggle:hover {
    transform: scale(1.05);
}

.reminder-expanded {
    animation: slideDown 0.4s ease-out;
    margin-top: 30px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reminder-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reminder-benefits {
    background: var(--dark-bg-elevated);
}

.steps {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-dark);
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--text-white);
    font-size: 18px;
}

.step-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg-lighter);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.contact-info-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
    border: 1px solid var(--border-dark);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 900;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-blue);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

/* Floating Book Now Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-accent);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    z-index: 1001;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        padding: 15px 0;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .reminder-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero::before {
        width: 100%;
        opacity: 0.2;
        clip-path: none;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(10, 15, 26, 0.8) 0%, var(--dark-bg) 100%);
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .card {
        padding: 35px 25px;
        text-align: center;
    }

    .card-icon {
        margin: 0 auto 25px;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .form-body {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 15px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .reminder-preview {
        padding: 20px;
    }

    .preview-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .preview-toggle {
        width: 100%;
        justify-content: center;
    }

    .reminder-benefits,
    .reminder-form {
        padding: 25px 20px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .menu-text {
        display: none;
    }

    .testimonial-text {
        font-size: 17px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    /* Calendar responsive */
    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .calendar-day {
        padding: 15px 10px;
    }

    .calendar-day-date {
        font-size: 20px;
    }

    .calendar-legend {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* FAQ responsive */
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }

    /* Price comparison responsive */
    .comparison-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .card {
        padding: 30px 20px;
    }

    .price {
        font-size: 48px;
    }

    .map-container {
        height: 300px;
    }

    .container {
        padding: 0 16px;
    }
}