:root {
    /* Google Stitch Inspired Dark Palette */
    --navy-bg: #0B0F19; /* Deep Space Navy */
    --navy-card: #151B28; /* Slightly lighter card bg */
    --vivid-blue: #3B82F6; /* Modern AI Blue */
    --crimson-red: #EF4444; /* Vivid Modern Red */
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --border-glass: rgba(255, 255, 255, 0.08);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.15);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Inter', sans-serif;
    --badge-gold: #F59E0B; /* Professional certification gold */
    --vivid-blue-glow: rgba(59, 130, 246, 0.4);
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--navy-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 900px; /* Slimmer for that modern app feel */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glassmorphic Sticky Header */
.header {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-joy {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: -0.4rem;
}

.logo-cart {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--crimson-red);
}

/* AI-Stitch Style Hero */
.hero {
    padding: 4rem 0 6rem;
    text-align: center;
}

.hero-tagline {
    font-weight: 700;
    color: var(--vivid-blue);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 6vw, 3.2rem);
    background: linear-gradient(135deg, #FFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.certified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--badge-gold);
    color: var(--badge-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speed-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--vivid-blue);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 3rem;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.hero-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 450px; /* Slightly wider for two buttons */
    margin: 0 auto;
}

/* Connected Service Grid */
.services {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
}

/* Unified Service Panel List */
.service-panel {
    background: var(--navy-card);
    border-radius: 32px;
    border: 1px solid var(--border-glass);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    list-style: none;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-item span {
    margin-top: 0.3rem;
    color: var(--vivid-blue);
    font-size: 1rem;
}

.service-info {
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

.service-highlight-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.service-highlight-tag span {
    font-size: 1.4rem;
}

/* Supported Brands Strip */
.brands-strip {
    margin: 3rem auto 0;
    text-align: center;
    max-width: 800px;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.brands-grid:hover {
    opacity: 1;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* First 5-Star Review Incentive */
.review-incentive {
    padding: 6rem 0;
}

.incentive-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(11, 15, 25, 0) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.incentive-card h3 {
    font-family: var(--font-heading);
    color: var(--badge-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.incentive-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Payment Status Badge */
.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Contact Links */
.cta-link {
    color: #CBD5E0; /* Lighter color for header links */
    font-weight: 800;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.contact-link {
    color: #A5B4FC; /* Lighter color for contact actions */
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.contact-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--vivid-blue);
}

/* App-Style Minimalist Form */
.booking-form {
    max-width: 550px;
    margin: 0 auto;
    background: var(--navy-card);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--border-glass);
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, select, textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: rgba(255,255,255,0.03);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

/* Improved select dropdown styling */
/* Native Select Element Styling */
select {
    width: 100%;
    padding: 1.2rem 2.5rem 1.2rem 1.2rem;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: rgba(21, 27, 40, 0.8);
    color: var(--text-primary);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F8FAFC' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding-right: 2.5rem;
}

select:hover {
    border-color: var(--vivid-blue);
    background-color: rgba(21, 27, 40, 0.9);
}

select:focus {
    outline: none;
    border-color: var(--vivid-blue);
    background-color: rgba(21, 27, 40, 0.95);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

select option {
    background-color: rgba(21, 27, 40, 0.95);
    color: var(--text-primary);
    padding: 0.8rem;
}

/* Dropdown option styling */
select option {
    background-color: rgba(21, 27, 40, 0.95);
    color: var(--text-primary);
    padding: 0.8rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--vivid-blue);
    background-color: rgba(255,255,255,0.08);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

select:focus {
    background-color: rgba(21, 27, 40, 0.9);
}

/* Custom Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.custom-select-display {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: rgba(21, 27, 40, 0.8);
    color: var(--text-primary);
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: left;
    position: relative;
    padding-right: 2.5rem;
}

.custom-select-display::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--text-primary);
    pointer-events: none;
}

.custom-select-display:hover {
    border-color: var(--vivid-blue);
    background-color: rgba(21, 27, 40, 0.9);
}

.custom-select-display:focus {
    outline: none;
    border-color: var(--vivid-blue);
    background-color: rgba(21, 27, 40, 0.95);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.custom-select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(21, 27, 40, 0.95);
    border: 1px solid var(--border-glass);
    border-top: none;
    border-radius: 0 0 16px 16px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    margin-top: -1px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.custom-select-option {
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:not([style*="pointer-events: none"]):hover {
    background-color: rgba(59, 130, 246, 0.15);
    color: var(--text-primary);
}

.custom-select-option:not([style*="pointer-events: none"]):active {
    background-color: rgba(59, 130, 246, 0.25);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 2rem;
    border-radius: 50px; /* Pill Shape for App vibe */
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--vivid-blue);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

/* Modern Footer */
.footer {
    padding: 6rem 0 4rem;
    text-align: center;
    border-top: 1px solid var(--border-glass);
}

.footer h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-primary); }
.footer p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.5rem; }

/* Compact Accordion FAQ */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--navy-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.03);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--vivid-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0.5rem 2rem 2rem;
    max-height: 200px;
}

/* Service Towns Pills */
.towns-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.town-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Floating Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--vivid-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--vivid-blue-glow);
}

/* Form Success State */
.form-success-msg {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeIn 0.5s ease;
}

.form-success-msg h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.form-success-msg p {
    color: var(--text-secondary);
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
    .service-card { padding: 2rem; border-radius: 20px; }
    .hero-title { font-size: 2.2rem; }
    .hero { padding: 3rem 0 4rem; }
}

