/* 
* Green Steam Luxury Auto Detailing
* Main Stylesheet
*/

/* Base Styles */
:root {
    --dark-bg: #111111;
    --dark-bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --green-accent: #4ade80;
    --blue-accent: #38bdf8;
    --gradient-dark: linear-gradient(145deg, #111111, #1a1a1a);
    --gradient-card: linear-gradient(145deg, #1a1a1a, #222222);
    --gradient-accent: linear-gradient(145deg, #38bdf8, #4ade80);
    
    /* Fallback gradient definitions for better cross-browser support */
    --gradient-dark-webkit: -webkit-linear-gradient(145deg, #111111, #1a1a1a);
    --gradient-dark-moz: -moz-linear-gradient(145deg, #111111, #1a1a1a);
    --gradient-card-webkit: -webkit-linear-gradient(145deg, #1a1a1a, #222222);
    --gradient-card-moz: -moz-linear-gradient(145deg, #1a1a1a, #222222);
    --gradient-accent-webkit: -webkit-linear-gradient(145deg, #38bdf8, #4ade80);
    --gradient-accent-moz: -moz-linear-gradient(145deg, #38bdf8, #4ade80);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Gradient Colors - with enhanced fallbacks for better compatibility */
    --gradient-green: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
    --gradient-blue-grey: linear-gradient(135deg, #38bdf8 0%, #475569 100%);
    --gradient-dark: linear-gradient(to bottom, #1e1e1e 0%, #121212 100%);
}

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

/* Fix for Internet Explorer and older browsers */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS */
    body {
        background-color: #121212 !important;
    }
    .service-tab-btn {
        background-color: #1a1a1a !important;
    }
    .service-tab-btn.active {
        background-color: rgba(56, 189, 248, 0.2) !important;
    }
    .most-popular-tag {
        background-color: #4ade80 !important;
    }
    .service-tier-option {
        background-color: rgba(30, 30, 30, 0.8) !important;
    }
    .btn.primary, .btn.secondary, .booking-form .btn.book-appointment {
        background-color: #4ade80 !important;
    }
    .btn.book-now {
        background-color: #ef4444 !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #121212; /* Solid fallback */
    background: -webkit-gradient(linear, left top, left bottom, from(#1e1e1e), to(#121212)); /* Old webkit */
    background: -webkit-linear-gradient(top, #1e1e1e 0%, #121212 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(top, #1e1e1e 0%, #121212 100%); /* FF3.6+ */
    background: -ms-linear-gradient(top, #1e1e1e 0%, #121212 100%); /* IE10+ */
    background: -o-linear-gradient(top, #1e1e1e 0%, #121212 100%); /* Opera 11.10+ */
    background: linear-gradient(to bottom, #1e1e1e 0%, #121212 100%); /* W3C */
    background-attachment: fixed; /* Prevent gradient from repeating */
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    /* Hardware acceleration for smoother rendering */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
}

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

a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--green-accent);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn.primary {
    background-color: #4ade80; /* Solid fallback */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #4ade80), color-stop(100%, #10b981)); /* Old webkit */
    background: -webkit-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* FF3.6+ */
    background: -ms-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* IE10+ */
    background: -o-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* Opera 11.10+ */
    background: linear-gradient(135deg, #4ade80 0%, #10b981 100%); /* W3C */
    color: #000;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.btn.primary:hover {
    background-color: #3cca70;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: #38bdf8; /* Solid fallback */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #38bdf8), color-stop(100%, #475569)); /* Old webkit */
    background: -webkit-linear-gradient(315deg, #38bdf8 0%, #475569 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(315deg, #38bdf8 0%, #475569 100%); /* FF3.6+ */
    background: -ms-linear-gradient(315deg, #38bdf8 0%, #475569 100%); /* IE10+ */
    background: -o-linear-gradient(315deg, #38bdf8 0%, #475569 100%); /* Opera 11.10+ */
    background: linear-gradient(135deg, #38bdf8 0%, #475569 100%); /* W3C */
    color: #000;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn.secondary:hover {
    background-color: rgba(74, 222, 128, 0.1);
    transform: translateY(-2px);
}

.btn.book-now {
    background-color: #ef4444; /* Red color */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ef4444), color-stop(100%, #b91c1c)); /* Old webkit */
    background: -webkit-linear-gradient(315deg, #ef4444 0%, #b91c1c 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(315deg, #ef4444 0%, #b91c1c 100%); /* FF3.6+ */
    background: -ms-linear-gradient(315deg, #ef4444 0%, #b91c1c 100%); /* IE10+ */
    background: -o-linear-gradient(315deg, #ef4444 0%, #b91c1c 100%); /* Opera 11.10+ */
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); /* W3C */
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn.book-appointment {
    background-color: #3b82f6;
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
    margin-top: 20px;
}

.btn.book-appointment:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.btn.select-package {
    background-color: var(--gradient-green);
    color: #000;
    width: 100%;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.2);
}

.select-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.3);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--gradient-dark);
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.text-logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.text-logo .green {
    color: var(--green-accent);
}

.text-logo .blue {
    color: var(--blue-accent);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green-accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(74, 222, 128, 0.1), transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h1 .green {
    color: var(--green-accent);
}

.hero-content h1 .blue {
    color: var(--blue-accent);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.hero-image {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, var(--dark-bg-lighter), var(--dark-bg));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center right, rgba(56, 189, 248, 0.08), transparent 60%);
    pointer-events: none;
}

/* Service Tabs Layout */
.service-tabs {
    margin-top: 50px;
}

.service-tab-headers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.service-tab-btn {
    background-color: var(--dark-bg-card); /* Solid fallback */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(37, 37, 37, 0.9)), color-stop(100%, rgba(30, 30, 30, 0.8))); /* Old webkit */
    background: -webkit-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* FF3.6+ */
    background: -ms-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* IE10+ */
    background: -o-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* Opera 11.10+ */
    background: linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* W3C */
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.service-tab-btn:hover {
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.service-tab-btn.active {
    background-color: rgba(56, 189, 248, 0.2); /* Solid fallback */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(56, 189, 248, 0.3)), color-stop(100%, rgba(71, 85, 105, 0.3))); /* Old webkit */
    background: -webkit-linear-gradient(145deg, rgba(56, 189, 248, 0.3), rgba(71, 85, 105, 0.3)); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(145deg, rgba(56, 189, 248, 0.3), rgba(71, 85, 105, 0.3)); /* FF3.6+ */
    background: -ms-linear-gradient(145deg, rgba(56, 189, 248, 0.3), rgba(71, 85, 105, 0.3)); /* IE10+ */
    background: -o-linear-gradient(145deg, rgba(56, 189, 248, 0.3), rgba(71, 85, 105, 0.3)); /* Opera 11.10+ */
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.3), rgba(71, 85, 105, 0.3)); /* W3C */
    border-color: var(--blue-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.most-popular-tag {
    background-color: #4ade80; /* Solid fallback */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #4ade80), color-stop(100%, #10b981)); /* Old webkit */
    background: -webkit-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* FF3.6+ */
    background: -ms-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* IE10+ */
    background: -o-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* Opera 11.10+ */
    background: linear-gradient(135deg, #4ade80 0%, #10b981 100%); /* W3C */
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.service-tab-content {
    background-color: var(--dark-bg-card);
    background: -webkit-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8));
    background: -moz-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8));
    background: linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-tab-pane {
    display: none;
    padding: 30px;
}

.service-tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Service Tier Styles */
.service-tier-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-tier-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--green-accent);
    flex-grow: 1;
}

.service-tier-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.service-tier-option {
    flex: 1;
    min-width: 200px;
    background-color: rgba(0, 0, 0, 0.2); /* Solid fallback */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(37, 37, 37, 0.9)), color-stop(100%, rgba(30, 30, 30, 0.8))); /* Old webkit */
    background: -webkit-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* FF3.6+ */
    background: -ms-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* IE10+ */
    background: -o-linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* Opera 11.10+ */
    background: linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8)); /* W3C */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-tier-option:hover {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.service-tier-title h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .service-details-wrapper {
        flex-direction: row;
    }
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .service-image {
        width: 300px;
    }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.service-option {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .service-option {
        flex-direction: row;
        gap: 20px;
    }
    
    .service-image {
        width: 250px;
        flex-shrink: 0;
    }
}

.service-details {
    flex-grow: 1;
}

.service-details h4 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: var(--green-accent);
}

.service-features {
    flex-grow: 1;
}

.feature-category {
    font-weight: 600;
    color: var(--blue-accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    margin-bottom: 10px;
    margin-top: 15px;
    font-size: 1.1rem;
}

.service-features ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
    padding-left: 5px;
}

.service-features li:before {
    content: '•';
    color: var(--green-accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.service-time {
    background-color: rgba(0, 0, 0, 0.7); /* Solid fallback */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0.6))); /* Old webkit */
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); /* FF3.6+ */
    background: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); /* IE10+ */
    background: -o-linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); /* Opera 11.10+ */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); /* W3C */
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-left: 2px solid var(--green-accent);
    display: inline-block;
}

.service-tier-header .service-time {
    margin-left: 15px;
}

.most-popular {
    background: #4ade80; /* Fallback */
    background: -webkit-linear-gradient(315deg, #4ade80 0%, #10b981 100%);
    background: -moz-linear-gradient(315deg, #4ade80 0%, #10b981 100%);
    background: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
    color: #000;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 1;
    margin-left: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.service-price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--blue-accent);
    margin: 0;
}

.service-tier-title .service-price {
    margin-top: 5px;
}

/* Legacy service price for backwards compatibility */
.service-card .service-price {
    background-color: var(--dark-bg);
    padding: 10px 15px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-price span {
    color: var(--text-light);
}

.service-card h3 {
    background: #4ade80; /* Fallback */
    background: -webkit-linear-gradient(315deg, #4ade80 0%, #10b981 100%);
    background: -moz-linear-gradient(315deg, #4ade80 0%, #10b981 100%);
    background: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px 20px 5px;
}

.service-tag {
    color: var(--green-accent);
    font-size: 0.9rem;
    padding: 0 20px 10px;
}

.service-category {
    color: var(--green-accent);
    font-weight: 600;
    padding: 10px 20px 0;
}

.service-card ul {
    padding: 5px 20px 10px;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
}

.service-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0 20px;
    font-style: italic;
}

.service-card .btn {
    margin: 15px 20px 0;
    width: calc(100% - 40px);
}

/* About Section */
.about {
    background-color: var(--dark-bg);
}

.mission-box {
    background-color: var(--dark-bg-card);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 50px;
    border-left: 4px solid var(--green-accent);
}

.mission-box h3 {
    color: var(--green-accent);
}

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

.feature-box {
    background-color: var(--dark-bg-card);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: var(--green-accent);
    font-size: 1.8rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--dark-bg), var(--dark-bg-lighter));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.contact h2 {
    text-align: center;
    margin-bottom: 15px;
}

.contact .section-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
    text-align: center;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.contact-info, .contact-form {
    flex: 1;
    max-width: 450px;
    text-align: left;
}

.contact-info {
    padding-right: 20px;
}

.contact-form {
    background-color: var(--dark-bg-card);
    border-radius: 8px;
    padding: 30px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .contact-info, .contact-form {
        width: 100%;
        max-width: 600px;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .contact-info, .contact-form {
        max-width: 100%;
    }
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--green-accent);
    color: #000;
    transform: translateY(-3px);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--green-accent);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-success {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: var(--success-color);
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    border-left: 3px solid var(--success-color);
    animation: fadeIn 0.5s ease-in-out;
}

.form-error {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: var(--danger-color);
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    border-left: 3px solid var(--danger-color);
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Booking Section */
.booking {
    background: var(--gradient-dark);
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(74, 222, 128, 0.1), transparent 50%);
    pointer-events: none;
}

.booking-form {
    background-color: var(--dark-bg-card);
    background: linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.8));
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .form-group {
        width: 100%;
        min-width: 0;
    }
    .booking-form .btn.book-appointment {
        width: 100%;
        margin: 20px 0 0 0;
        display: block;
    }
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.booking-form .form-group {
margin-bottom: 20px;
position: relative;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    height: 45px;
    padding: 12px 15px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.booking-form textarea {
    height: 120px;
    resize: vertical;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-light);
    background-color: var(--dark-bg); /* Fallback */
background: var(--gradient-dark-webkit);
background: var(--gradient-dark-moz);
background: var(--gradient-dark);
line-height: 1.6;
    
/* Hardware acceleration for smoother gradients */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
    
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
    
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--green-accent);
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2);
    outline: none;
}

.booking-form input[type="date"] {
    padding: 10px 15px;
}

.booking-form .btn.book-appointment {
    background-color: #4ade80; /* Solid fallback */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #4ade80), color-stop(100%, #10b981)); /* Old webkit */
    background: -webkit-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* FF3.6+ */
    background: -ms-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* IE10+ */
    background: -o-linear-gradient(315deg, #4ade80 0%, #10b981 100%); /* Opera 11.10+ */
    background: linear-gradient(135deg, #4ade80 0%, #10b981 100%); /* W3C */
    color: #000;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 6px;
    display: block;
    width: 50%;
    margin: 10px auto 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.booking-form .btn.book-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.price-display {
    background-color: rgba(74, 222, 128, 0.1);
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--green-accent);
    text-align: center;
}

/* Radio button styling for yes/no options */
.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.radio-option input[type="radio"] {
    width: auto;
    margin-right: 5px;
}

.radio-option label {
    margin-bottom: 0;
    display: inline;
}

/* Footer */
footer {
    background-color: var(--dark-bg-lighter);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-muted);
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.credit a {
    color: var(--green-accent);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact .container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-form .btn.book-appointment {
        width: 70%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--dark-bg);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .booking-grid {
        grid-template-columns: 1fr !important;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .booking-form .btn.book-appointment {
        width: 100% !important;
        margin: 20px 0 0 0 !important;
        display: block;
    }
    
    .form-group {
        width: 100% !important;
        min-width: 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
