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

:root {
    /* Modern Purple & Coral Theme */
    --primary-purple: #7c3aed;
    --primary-dark: #5b21b6;
    --secondary-purple: #a855f7;
    --accent-coral: #f97066;
    --accent-pink: #ec4899;
    --accent-orange: #fb923c;
    --accent-emerald: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-light: #faf5ff;
    --bg-lighter: #f3e8ff;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);
    --shadow-light: 0 1px 3px rgba(124, 58, 237, 0.12), 0 1px 2px rgba(124, 58, 237, 0.24);
    --shadow-medium: 0 4px 6px rgba(124, 58, 237, 0.07), 0 2px 4px rgba(124, 58, 237, 0.06);
    --shadow-heavy: 0 10px 15px rgba(124, 58, 237, 0.1), 0 4px 6px rgba(124, 58, 237, 0.05);
    --shadow-xl: 0 25px 50px rgba(124, 58, 237, 0.25);
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    --gradient-secondary: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    --gradient-accent: linear-gradient(135deg, #f97066 0%, #ec4899 100%);
    --gradient-warm: linear-gradient(135deg, #fb923c 0%, #f97066 100%);
    --gradient-hero: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(91, 33, 182, 0.95) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    --car-wash-purple: #7c3aed;
    --water-coral: #f97066;
    --soap-white: #faf5ff;
    --shine-emerald: #10b981;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow-medium);
    border-bottom-color: rgba(124, 58, 237, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-brand h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 400;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

/* He
ro Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--car-wash-purple) 0%, var(--primary-dark) 50%, var(--water-coral) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="bubbles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="15" cy="15" r="0.8" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23bubbles)"/></svg>');
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(249, 112, 102, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    opacity: 0.6;
}

/* New Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 20px 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
}

.hero-stats-card h3 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-glass);
    backdrop-filter: blur(15px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-badge i {
    color: var(--shine-emerald);
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-stats-card .hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-stats-card .feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.stat {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: var(--gradient-warm);
    color: white;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.cta-button.secondary {
    background: var(--gradient-glass);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.feature i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

/* Combined Services & Pricing Section */
/* Services Section - Hero Layout Style */
.services {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--soap-white) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--water-coral) 0%, transparent 100%);
    opacity: 0.1;
}

.service-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.service-layout.premium {
    flex-direction: row-reverse;
}

.service-pricing-card {
    background: var(--bg-white);
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

.service-pricing-card.premium::before {
    background: var(--gradient-accent);
}

.service-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--water-blue);
}

.service-pricing-card.premium {
    border-color: var(--water-blue);
    transform: scale(1.02);
}

.service-pricing-card.premium:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.service-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.service-pricing-card.premium .service-header {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, var(--bg-white) 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.service-pricing-card.premium .service-icon {
    background: var(--gradient-accent);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.service-title .service-description {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.service-features {
    padding: 2rem;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.service-features h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features h4 i {
    color: var(--primary-blue);
}

.service-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-weight: 500;
}

.service-features li i {
    color: var(--primary-blue);
    font-size: 1rem;
}

/* Pricing and CTA Container */
.pricing-cta-container {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    padding: 2rem;
}

.pricing-section {
    flex: 1;
    padding: 0;
}

.pricing-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-section h4 i {
    color: var(--accent-orange);
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.price-option:hover {
    background: var(--bg-white);
    border-color: var(--water-blue);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vehicle-info i {
    color: var(--water-blue);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.vehicle-info span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--car-wash-blue);
}

.service-pricing-card.premium .price {
    color: var(--water-blue);
}

.service-cta {
    padding: 0;
    text-align: center;
    flex-shrink: 0;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.book-btn.premium {
    background: var(--gradient-accent);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--soap-white) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--water-blue) 0%, transparent 100%);
    opacity: 0.1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(6,182,212,0.1)"/></svg>');
    background-size: 200px 20px;
    background-repeat: repeat-x;
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100px);
    }
}

/* Modern Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.modern-service-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.modern-service-card.premium::before {
    background: var(--gradient-accent);
}

.modern-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.2);
}

.modern-service-card.premium:hover {
    box-shadow: 0 20px 60px rgba(249, 112, 102, 0.2);
    border-color: rgba(249, 112, 102, 0.2);
}

.service-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon-modern.premium {
    background: var(--gradient-accent);
    box-shadow: 0 8px 24px rgba(249, 112, 102, 0.3);
}

.service-icon-modern i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.service-icon-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.modern-service-card:hover .service-icon-modern::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.service-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.basic {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: var(--primary-purple);
}

.service-badge.premium {
    background: var(--gradient-accent);
    color: white;
}

.service-content {
    padding: 0 2rem 1rem;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.service-tagline {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price-from {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-purple);
}

.modern-service-card.premium .price-amount {
    color: var(--accent-coral);
}

.feature-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-purple);
    font-size: 1rem;
}

.modern-service-card.premium .feature-list i {
    color: var(--accent-coral);
}

.pricing-breakdown {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: var(--text-medium);
    font-weight: 500;
}

.price-item .price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.modern-service-card.premium .price-item .price {
    color: var(--accent-coral);
}

.service-card-footer {
    padding: 0 2rem 2rem;
}

.book-service-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-service-btn.premium {
    background: var(--gradient-accent);
}

.book-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.book-service-btn.premium:hover {
    box-shadow: 0 8px 24px rgba(249, 112, 102, 0.3);
}

/* Section Intro Styling */
.section-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* New Services Layout */
.services-layout {
    position: relative;
    z-index: 2;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--water-blue);
    margin-top: 0.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

.service-card.premium::before {
    background: var(--gradient-accent);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(6, 182, 212, 0.3);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.service-card.premium .service-icon {
    background: var(--gradient-accent);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.service-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

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

.service-features i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.service-price {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 15px;
}

.service-card.premium .service-price {
    background: var(--gradient-accent);
    color: white;
}

/* Pric
ing Section */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(30,64,175,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.pricing h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

/* New Pricing Layout */
.pricing-layout {
    position: relative;
    z-index: 2;
}

.pricing-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-service-card {
    background: var(--bg-white);
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.pricing-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--water-blue);
}

.pricing-service-card.premium {
    border-color: var(--water-blue);
    transform: scale(1.05);
}

.pricing-service-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.service-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.pricing-service-card.premium .service-header {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, var(--bg-white) 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.pricing-service-card.premium .service-icon {
    background: var(--gradient-accent);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.pricing-service-card:hover .service-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.service-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.service-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.pricing-options {
    padding: 2rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--bg-lighter);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.price-option:hover {
    background: var(--bg-white);
    border-color: var(--water-blue);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.price-option:last-child {
    margin-bottom: 0;
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vehicle-info i {
    color: var(--water-blue);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.vehicle-info span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--car-wash-blue);
    position: relative;
}

.pricing-service-card.premium .price {
    color: var(--water-blue);
}

.price::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.price-option:hover .price::before {
    transform: scaleX(1);
}



.pricing-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    background: var(--bg-white);
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-card.featured .price-item {
    background: var(--bg-light);
}

.price-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-type {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

/* Modern Loyalty Section */
.loyalty {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--car-wash-purple) 0%, var(--water-coral) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.loyalty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.8" fill="rgba(255,255,255,0.12)"/><circle cx="70" cy="70" r="1.2" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    opacity: 0.4;
    animation: drift 25s linear infinite;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100px, -100px);
    }
}

.loyalty-modern-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.loyalty-content-modern {
    text-align: left;
}

.loyalty-header {
    margin-bottom: 3rem;
}

.loyalty-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(249, 112, 102, 0.3);
}

.loyalty-icon i {
    font-size: 2rem;
    color: white;
}

.rewards-showcase {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.reward-item.free {
    background: var(--gradient-accent);
    padding: 1rem;
    border-radius: 16px;
}

.reward-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.reward-text span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.reward-text small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.reward-arrow {
    font-size: 1.5rem;
    color: var(--shine-emerald);
}

.loyalty-benefits h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-weight: 500;
}

.benefits-list i {
    color: var(--shine-emerald);
    font-size: 1rem;
}

.loyalty-card-modern {
    display: flex;
    justify-content: center;
}

.digital-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo i {
    font-size: 1.2rem;
    color: white;
}

.card-title h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.card-title p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.progress-count {
    font-weight: 700;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.stamps-modern {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stamp-modern {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.stamp-modern.filled {
    background: var(--shine-emerald);
    color: white;
}

.stamp-modern.next {
    background: var(--gradient-accent);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.card-footer-modern {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.card-footer-modern p {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.card-footer-modern strong {
    color: var(--shine-emerald);
}

.loyalty h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.loyalty-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.loyalty-offer {
    margin-bottom: 2rem;
}

.offer-text {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.offer-highlight {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.loyalty-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.loyalty-card-visual {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.loyalty-card-visual .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0;
    text-align: left;
    background: none;
    border-bottom: none;
}

.loyalty-card-visual .card-header i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.loyalty-card-visual .card-header span {
    color: white;
}

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

.stamp {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stamp.filled {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent-gold);
}

.stamp.free {
    background: var(--gradient-accent);
    border-color: var(--accent-orange);
    font-weight: 800;
}

.stamp i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stamp span {
    font-size: 0.8rem;
    font-weight: 700;
}

/* Co
ntact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f8 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.contact-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    padding: 1.5rem 2rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 2;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #856404;
    font-weight: 600;
    font-size: 1.1rem;
}

.notice-content i {
    font-size: 1.3rem;
    color: #d4a017;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-cards-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card-modern {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.contact-card-modern.phone {
    border-left-color: var(--primary-purple);
}

.contact-card-modern.phone:hover {
    border-left-color: var(--accent-coral);
}

.contact-card-modern.email {
    border-left-color: var(--accent-coral);
}

.contact-card-modern.location {
    border-left-color: var(--accent-emerald);
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-card-modern.phone .contact-icon-modern {
    background: var(--gradient-primary);
}

.contact-card-modern.email .contact-icon-modern {
    background: var(--gradient-accent);
}

.contact-card-modern.location .contact-icon-modern {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
}

.contact-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.contact-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-coral);
}

.contact-text {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.availability {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.booking-section-modern {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.booking-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-option-modern {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-option-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.booking-option-modern:hover::before {
    left: 100%;
}

.booking-option-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.booking-option-modern.primary {
    border-color: var(--primary-purple);
}

.booking-option-modern.primary:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.booking-option-modern.secondary {
    border-color: var(--accent-coral);
}

.booking-option-modern.secondary:hover {
    background: linear-gradient(135deg, rgba(249, 112, 102, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.booking-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.booking-option-modern.primary .booking-icon {
    background: var(--gradient-primary);
}

.booking-option-modern.secondary .booking-icon {
    background: var(--gradient-accent);
}

.booking-content {
    flex: 1;
}

.booking-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.booking-content p {
    color: var(--text-light);
    margin: 0 0 1rem 0;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-features span {
    font-size: 0.9rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-features i {
    color: var(--primary-purple);
    font-size: 0.8rem;
}

.phone-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-coral);
}

.booking-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.booking-option-modern.secondary .booking-cta {
    color: var(--accent-coral);
}

.booking-cta i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.booking-option-modern:hover .booking-cta i {
    transform: translateX(5px);
}

.payment-info {
    background: var(--bg-lighter);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.payment-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-info i {
    color: var(--primary-purple);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

.payment-method i {
    color: var(--primary-purple);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    box-shadow: var(--shadow-medium);
}

.section-header i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.section-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.contact-cards,
.booking-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--primary-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.contact-icon.phone {
    background: var(--gradient-primary);
}

.contact-icon.email {
    background: var(--gradient-accent);
}

.contact-icon.location {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.contact-icon.payment {
    background: var(--gradient-accent);
}

.contact-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-orange);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.booking-action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: none;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.booking-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.booking-action:hover::before {
    left: 100%;
}

.booking-action:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.booking-action.primary {
    border-left: 4px solid var(--primary-blue);
}

.booking-action.secondary {
    border-left: 4px solid var(--accent-orange);
}

.action-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.booking-action.primary .action-icon {
    background: var(--gradient-primary);
}

.booking-action.secondary .action-icon {
    background: var(--gradient-accent);
}

.action-content {
    flex-grow: 1;
}

.action-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.action-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 0 0.75rem 0;
}

.action-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-action.secondary .action-badge {
    background: #fff5f5;
    color: var(--accent-orange);
}

.action-arrow {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.booking-action:hover .action-arrow {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.booking-action.secondary:hover .action-arrow {
    color: var(--accent-orange);
}

/* Simple Modern Footer */
.footer {
    background: var(--gradient-primary);
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -10%;
    width: 120%;
    height: 120px;
    background: var(--bg-white);
    border-radius: 50%;
    transform: rotate(-2deg);
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-main {
    padding: 4rem 0 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-section {
    color: white;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-cta-section h3::after {
    width: 100%;
}

/* Quick Links Section */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.footer-link i {
    color: var(--accent-coral);
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}



/* Ready to Book Section */
.footer-cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.footer-btn:hover::before {
    left: 100%;
}

.footer-btn.primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 8px 30px rgba(249, 112, 102, 0.4);
}

.footer-btn.primary:hover {
    background: var(--gradient-warm);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(249, 112, 102, 0.6);
}

.footer-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}



/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}



.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-value {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: var(--accent-coral);
}

/* CTA Section */
.footer-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.footer-cta h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 6px 20px rgba(249, 112, 102, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-warm);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 112, 102, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-coral);
    color: var(--accent-coral);
    transform: translateY(-3px);
}

.highlights {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlights span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlights i {
    color: var(--accent-coral);
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-badges i {
    color: var(--accent-coral);
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    padding: 2rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-badges i {
    color: var(--accent-coral);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 4rem;
    }
    
    .footer-main {
        padding: 3rem 20px 2rem;
        gap: 2.5rem;
    }
    
    .footer-cta-section {
        padding: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}
}
}



.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".4" fill="rgba(6,182,212,0.6)"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".6" fill="rgba(20,184,166,0.4)"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="rgba(59,130,246,0.3)"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    animation: waveFlow 12s ease-in-out infinite;
}

@keyframes waveFlow {

    0%,
    100% {
        transform: translateX(0) scaleX(1);
    }

    50% {
        transform: translateX(-30px) scaleX(1.02);
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(6,182,212,0.15)" opacity="0.8"><animate attributeName="r" values="1.5;2.5;1.5" dur="4s" repeatCount="indefinite"/></circle><circle cx="15" cy="45" r="1.2" fill="rgba(20,184,166,0.12)" opacity="0.6"><animate attributeName="r" values="1;1.8;1" dur="3s" repeatCount="indefinite"/></circle><circle cx="45" cy="15" r="1.8" fill="rgba(59,130,246,0.1)" opacity="0.7"><animate attributeName="r" values="1.3;2.2;1.3" dur="5s" repeatCount="indefinite"/></circle><circle cx="10" cy="10" r="1" fill="rgba(234,179,8,0.08)" opacity="0.5"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="50" cy="50" r="0.8" fill="rgba(249,115,22,0.06)" opacity="0.4"><animate attributeName="opacity" values="0.2;0.6;0.2" dur="3s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100%" height="100%" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.7;
    animation: drift 40s linear infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.9;
    }
}









.footer-link,
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-left: 3px solid transparent;
    padding-left: 0;
}

.footer-link:hover,
.info-item:hover {
    color: var(--water-blue);
    border-left-color: var(--water-blue);
    padding-left: 8px;
}

.info-item i {
    color: var(--water-blue);
    font-size: 1rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.8;
}

.info-item span {
    flex: 1;
    line-height: 1.4;
}





.footer-link a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright p {
    margin: 0 0 0.5rem 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.copyright p:first-child {
    font-weight: 600;
    opacity: 0.9;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .loyalty-modern-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .modern-service-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .section-header {
        padding: 1rem 1.5rem;
    }

    .section-header h3 {
        font-size: 1.5rem;
    }

    .contact-card,
    .booking-action {
        padding: 1.5rem;
    }

    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }


}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 15px;
        min-height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .modern-service-card {
        margin: 0;
    }

    .service-card-header {
        padding: 1.5rem 1.5rem 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .service-content {
        padding: 0 1.5rem 1rem;
        text-align: center;
    }

    .service-content h3 {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .service-card-footer {
        padding: 0 1.5rem 1.5rem;
    }

    .loyalty-modern-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .rewards-showcase {
        flex-direction: column;
        gap: 1rem;
    }

    .reward-arrow {
        transform: rotate(90deg);
    }

    .stamps-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-section-modern {
        padding: 1.5rem;
        margin: 0;
    }
    
    .contact-card-modern {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .booking-option-modern {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .booking-option-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .booking-cta {
        flex-direction: row;
        justify-content: center;
    }

    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 20px;
        white-space: nowrap;
        flex: 0 1 auto;
    }

    .nav-links a:last-child {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .logo {
        flex-wrap: nowrap;
        min-width: auto;
        justify-content: center;
    }

    .logo-image {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .tagline {
        font-size: 0.8rem;
        text-align: center;
    }

    /* New Hero Mobile Layout */
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 6rem 20px 3rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-left h2 {
        font-size: 2.5rem;
    }

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

    .hero-stats-card {
        max-width: 100%;
        padding: 2rem;
    }

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

    /* Services Mobile */
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .section-intro h2 {
        font-size: 2.2rem;
    }

    /* Pricing Mobile */
    .pricing-services {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pricing-service-card.premium {
        transform: none;
    }

    .pricing-service-card.premium:hover {
        transform: translateY(-10px);
    }

    .service-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .pricing-options {
        padding: 1.5rem;
    }

    .price-option {
        padding: 1rem 1.25rem;
    }

    .vehicle-info span {
        font-size: 1rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

    .contact-button {
        display: block;
        text-align: center;
        margin-right: 0;
    }

    .hero-content {
        padding: 6rem 20px 3rem;
    }

    .service-card,
    .pricing-card {
        padding: 2rem;
    }





    .booking-notice {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.75rem 10px;
    }

    .nav-brand h1 {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .nav-links {
        gap: 0.25rem;
    }

    .nav-links a {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
    }

    .nav-links a:last-child {
        font-size: 0.7rem;
        padding: 0.4rem 0.4rem;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .offer-highlight {
        font-size: 2.2rem;
    }

    .services h2,
    .pricing h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Mobile FAQ */
    .faq {
        padding: 4rem 0;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }



    /* Mobile Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Scroll Animations */
html {
    scroll-behavior: smooth;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
}

/* Staggered animations for grid items */
.services-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.3s;
}

.pricing-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.pricing-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.3s;
}

.contact-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.contact-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.3s;
}

/* Enhanced hover effects with animations */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Loyalty card stamps animation */
.stamp {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loyalty-card-visual.animate-in .stamp {
    animation: stampPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.loyalty-card-visual.animate-in .stamp:nth-child(1) {
    animation-delay: 0.1s;
}

.loyalty-card-visual.animate-in .stamp:nth-child(2) {
    animation-delay: 0.2s;
}

.loyalty-card-visual.animate-in .stamp:nth-child(3) {
    animation-delay: 0.3s;
}

.loyalty-card-visual.animate-in .stamp:nth-child(4) {
    animation-delay: 0.4s;
}

.loyalty-card-visual.animate-in .stamp:nth-child(5) {
    animation-delay: 0.5s;
}

.loyalty-card-visual.animate-in .stamp:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes stampPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(-90deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Hero elements fade in on load */
.hero-badge,
.hero h2,
.hero-subtitle,
.hero-stats,
.hero-buttons,
.hero-features {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-badge {
    animation-delay: 0.2s;
}

.hero h2 {
    animation-delay: 0.4s;
}

.hero-subtitle {
    animation-delay: 0.6s;
}

.hero-stats {
    animation-delay: 0.8s;
}

.hero-buttons {
    animation-delay: 1s;
}

.hero-features {
    animation-delay: 1.2s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats counter animation */
.stat-number {
    transition: all 0.3s ease;
}

/* Price items slide in animation */
.price-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card.animate-in .price-item {
    animation: slideInRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card.animate-in .price-item:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card.animate-in .price-item:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card.animate-in .price-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Service features animation */
.service-features li {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.animate-in .service-features li {
    animation: fadeInLeft 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.animate-in .service-features li:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card.animate-in .service-features li:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card.animate-in .service-features li:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card.animate-in .service-features li:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card.animate-in .service-features li:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card.animate-in .service-features li:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Contact items animation */
.contact-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info.animate-in .contact-item {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-info.animate-in .contact-item:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-info.animate-in .contact-item:nth-child(3) {
    animation-delay: 0.2s;
}

.contact-info.animate-in .contact-item:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    .animate-on-scroll,
    .service-card,
    .pricing-card,
    .contact-item,
    .stamp,
    .hero-badge,
    .hero h2,
    .hero-subtitle,
    .hero-stats,
    .hero-buttons,
    .hero-features {
        animation: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-modal.show {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.booking-modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
    transform: scale(0.7) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.booking-modal.show .booking-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.booking-modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-modal-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

#booking-widget-container {
    height: 700px;
    overflow: auto;
}

#booking-widget-container iframe {
    width: 100% !important;
    height: 700px !important;
    border: none;
}

/* Button styling for booking buttons */
.cta-button,
.contact-button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-light);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-button.secondary {
    background: var(--gradient-accent);
}

/* Booking Buttons */
.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.booking-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: none;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    min-height: 100px;
    margin-bottom: 1.5rem;
}

.booking-card:last-child {
    margin-bottom: 0;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.booking-card i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.booking-card.blue i {
    background: var(--gradient-primary);
}

.booking-card.orange i {
    background: var(--gradient-accent);
}

.booking-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.booking-text small {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Mobile responsive for booking modal */
@media (max-width: 768px) {
    .booking-modal {
        padding: 10px;
    }

    .booking-modal-content {
        max-height: 95vh;
    }

    .booking-modal-header {
        padding: 1rem 1.5rem;
    }

    .booking-modal-header h3 {
        font-size: 1.2rem;
    }

    #booking-widget-container {
        height: 600px;
    }

    #booking-widget-container iframe {
        height: 600px !important;
    }

    .booking-loading {
        height: 600px;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .booking-card i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Booki
ng Loading Indicator */
.booking-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 700px;
    background: var(--bg-white);
    color: var(--text-dark);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.booking-loading p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faqPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(30,64,175,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23faqPattern)"/></svg>');
    opacity: 0.5;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

/* Ensure FAQ items start closed - Force hide all answers by default */
.faq-item .faq-answer {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    background: var(--bg-white);
}

/* Only show when explicitly active */
.faq-item.active .faq-answer {
    max-height: 1200px !important;
    opacity: 1 !important;
    padding-bottom: 1.5rem !important;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, var(--bg-white) 100%);
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question h3 i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--accent-orange);
    transform: rotate(45deg);
}

.faq-item:not(.active) .faq-toggle {
    background: var(--primary-blue);
    transform: rotate(0deg);
}



.faq-answer p {
    padding: 1.5rem 2rem 1.5rem;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}



.loading-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
}

.loading-error i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.loading-error p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 400px;
    line-height: 1.6;
}

/* Invisible features for alignment */
.invisible-feature {
    visibility: hidden;
    height: 2.5rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

/*
 Service Cards - New Design */
.service-card {
    background: var(--bg-white);
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card.premium {
    border-color: var(--water-blue);
    transform: scale(1.02);
}

.service-card.premium:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: var(--shadow-medium);
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.service-card.premium .card-header {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, var(--bg-white) 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.service-card.premium .service-icon {
    background: var(--gradient-accent);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.card-header p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features-section {
    padding: 2rem;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    flex: 1;
}

.features-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-section h4 i {
    color: var(--primary-blue);
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--primary-blue);
    font-size: 1rem;
    width: 16px;
}

.pricing-booking {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    padding: 2rem;
}

.pricing-info {
    flex: 1;
}

.pricing-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-info h4 i {
    color: var(--accent-orange);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: rgba(30, 64, 175, 0.05);
    transform: translateX(5px);
}

.price-item span:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-weight: 500;
}

.price-item span:first-child i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.service-card.premium .price {
    color: var(--water-blue);
}

.book-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-medium);
}

.book-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.book-button.premium {
    background: var(--gradient-accent);
}

.book-button i {
    font-size: 1.1rem;
}

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

    .service-card.premium {
        transform: none;
    }

    .service-card.premium:hover {
        transform: translateY(-10px);
    }

    .pricing-booking {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .book-button {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 4rem 0;
    }

    .card-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .features-section {
        padding: 1.5rem;
    }

    .pricing-booking {
        padding: 1.5rem;
        gap: 1rem;
    }
}

/*
 Service Layout Components */
.service-left {
    flex: 1;
    padding-right: 2rem;
}

.service-right {
    flex: 0 0 400px;
}

.service-layout.premium .service-left {
    padding-right: 0;
    padding-left: 2rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.service-badge.premium {
    background: var(--gradient-accent);
}

.service-badge i {
    font-size: 1.1rem;
}

.service-layout h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.service-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features h4 i {
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.feature i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.feature span {
    color: var(--text-medium);
    font-weight: 500;
}

.service-buttons {
    margin-top: 2rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-heavy);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

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

.pricing-card.premium {
    border-color: var(--water-blue);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, var(--bg-white) 100%);
}

.pricing-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    justify-content: center;
}

.pricing-card h4 i {
    color: var(--accent-orange);
    font-size: 1.6rem;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-lighter);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.price-row:hover {
    background: rgba(30, 64, 175, 0.08);
    transform: scale(1.02);
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vehicle-info i {
    color: var(--primary-blue);
    font-size: 1.3rem;
    width: 24px;
}

.vehicle-info span {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 1.1rem;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.pricing-card.premium .price {
    color: var(--water-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-layout {
        gap: 3rem;
    }

    .service-right {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .service-layout {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .service-layout.premium {
        flex-direction: column;
    }

    .service-left {
        padding-right: 0;
    }

    .service-layout.premium .service-left {
        padding-left: 0;
    }

    .service-right {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-layout h3 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .services {
        padding: 4rem 0;
    }

    .service-layout {
        margin: 2.5rem 0;
    }

    .service-layout h3 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price-row {
        padding: 1rem 1.25rem;
    }

    .price {
        font-size: 1.5rem;
    }
}

/* I
nline service badge */
.service-badge.inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
    box-shadow: var(--shadow-medium);
    vertical-align: middle;
}

.service-badge.inline.premium {
    background: var(--gradient-accent);
}

.service-badge.inline i {
    font-size: 0.9rem;
}

/* Orange bu
tton variant */
.cta-button.orange {
    background: var(--gradient-warm);
    color: white;
}

.cta-button.orange:hover {
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Teal button variant */
.cta-button.teal {
    background: var(--gradient-accent);
    color: white;
}

.cta-button.teal:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* C
omparison Table Responsive Design */
@media (max-width: 1024px) {

    .comparison-header,
    .feature-row,
    .pricing-row,
    .action-buttons {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 0;
    }

    .package-column,
    .feature-check,
    .price-cell {
        padding: 1rem;
    }

    .feature-name,
    .vehicle-type {
        padding: 1rem 1.5rem;
    }

    .package-column h3 {
        font-size: 1.2rem;
    }

    .package-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        overflow-x: auto;
        margin: 2rem -20px;
    }

    .comparison-header,
    .feature-row,
    .pricing-row,
    .action-buttons {
        min-width: 700px;
    }

    .package-column {
        padding: 1.5rem 1rem;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .package-badge {
        position: relative;
        margin-bottom: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .popular-ribbon {
        top: -8px;
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    .package-column h3 {
        font-size: 1.1rem;
        margin: 0.5rem 0;
        line-height: 1.2;
    }

    .package-column p {
        font-size: 0.8rem;
        margin: 0;
    }

    .add-ons-grid {
        grid-template-columns: 1fr;
    }

    .add-on-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 4rem 0;
    }

    .comparison-table {
        margin: 2rem -10px;
    }

    .comparison-header,
    .feature-row,
    .pricing-row,
    .action-buttons {
        min-width: 600px;
    }

    .package-column {
        padding: 1rem 0.5rem;
        min-height: 120px;
    }

    .package-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }

    .package-column h3 {
        font-size: 1rem;
        margin: 0.25rem 0;
    }

    .package-column p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .popular-ribbon {
        font-size: 0.65rem;
        padding: 0.25rem 0.8rem;
    }

    .add-ons-section {
        padding: 2rem;
        margin-top: 2rem;
    }

    .add-ons-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .add-on-item {
        padding: 1rem;
        gap: 1rem;
    }

    .add-on-icon {
        width: 50px;
        height: 50px;
    }

    .add-on-icon i {
        font-size: 1.2rem;
    }
}

/* Compar
ison Table CSS - Fixed */
.comparison-table {
    background: var(--bg-white);
    border-radius: 25px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin: 3rem 0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    border-bottom: 2px solid rgba(30, 64, 175, 0.1);
}

.feature-column {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-dark);
}

.package-column {
    padding: 2rem;
    text-align: center;
    position: relative;
    border-left: 1px solid rgba(30, 64, 175, 0.1);
}

.package-column.popular {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, var(--bg-white) 100%);
    border-left: 2px solid var(--water-blue);
    border-right: 2px solid var(--water-blue);
    transform: scale(1.02);
    z-index: 3;
}

.popular-ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-badge.basic {
    background: var(--gradient-primary);
    color: white;
}

.package-badge.popular {
    background: var(--gradient-accent);
    color: white;
}

.package-badge.premium {
    background: var(--gradient-warm);
    color: white;
}

.package-column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.package-column p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.comparison-body {
    background: var(--bg-white);
}

.feature-category {
    background: var(--bg-lighter);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.category-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.category-header i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(30, 64, 175, 0.05);
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(30, 64, 175, 0.02);
}

.feature-name {
    padding: 1.25rem 2rem;
    font-weight: 500;
    color: var(--text-medium);
    display: flex;
    align-items: center;
}

.feature-check {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(30, 64, 175, 0.05);
}

.feature-check.included i {
    color: #22c55e;
    font-size: 1.2rem;
}

.feature-check.not-included i {
    color: #ef4444;
    font-size: 1.2rem;
    opacity: 0.5;
}

.pricing-section {
    background: var(--bg-lighter);
    border-top: 2px solid rgba(30, 64, 175, 0.1);
}

.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.pricing-header .feature-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-header .feature-column i {
    color: var(--accent-orange);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(30, 64, 175, 0.05);
}

.vehicle-type {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
}

.vehicle-type i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.price-cell {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    border-left: 1px solid rgba(30, 64, 175, 0.05);
}

.price-cell.popular {
    background: rgba(6, 182, 212, 0.05);
    color: var(--water-blue);
    font-size: 1.8rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 2rem 0;
    background: var(--bg-white);
}

.package-btn {
    margin: 0 1rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-btn.basic {
    background: var(--gradient-primary);
    color: white;
}

.package-btn.popular {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.05);
}

.package-btn.premium {
    background: var(--gradient-warm);
    color: white;
}

.package-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.package-btn.popular:hover {
    transform: translateY(-3px) scale(1.1);
}

.add-ons-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
}

.add-ons-header {
    text-align: center;
    margin-bottom: 3rem;
}

.add-ons-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.add-ons-header i {
    color: var(--accent-orange);
}

.add-ons-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.add-on-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-lighter);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-on-item:hover {
    background: rgba(30, 64, 175, 0.05);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.add-on-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.add-on-icon i {
    font-size: 1.5rem;
    color: white;
}

.add-on-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.add-on-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.add-on-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-orange);
}