:root {
    --primary: #9AE87A;
    --primary-glow: rgba(154, 232, 122, 0.6);
    --primary-dark: #7CC85C;
    --dark-bg: #141414;
    --dark-card: #1E1E1E;
    --dark-surface: #2A2A2A;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-primary: #FFFFFF;
    --text-secondary: #E8E8E8;
    --text-muted: #C0C0C0;
}

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

h1, h2, h3, h4, .font-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Improved text readability - much lighter */
p, span, li {
    color: var(--text-secondary) !important;
}

.text-zinc-400, .text-zinc-500, .text-zinc-300 {
    color: var(--text-muted) !important;
}

/* Make headings stand out more */
h1, .text-5xl, .text-7xl, .text-8xl {
    color: var(--text-primary);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* Glassmorphism - lighter and more transparent */
.glass-card {
    background: rgba(30, 30, 30, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.85);
}

.glass-nav {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons - brighter and more prominent */
.glow-button {
    background: linear-gradient(135deg, #A0F080 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: #000000;
    font-weight: 800;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(154, 232, 122, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: none;
}

.glow-button:hover {
    box-shadow: 0 0 35px var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, #B0FF90 0%, #A0F080 100%);
}

/* Secondary button style */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Typography Glow - softer and more elegant */
.text-glow {
    text-shadow: 0 0 20px var(--primary-glow);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 1rem;
}

.comparison-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.comparison-slider .img-after {
    width: 50%;
    z-index: 2;
    border-right: 2px solid var(--primary);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Floating WhatsApp - brighter */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 40px rgba(37, 211, 102, 0.7);
    background: #40E880;
}

/* Custom Scrollbar - brighter */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #2A2A2A;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* FAQ - improved contrast */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-item button span {
    color: var(--text-primary);
    font-weight: 700;
}

.faq-item .faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Steam Animation */
@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.3; }
    100% { transform: translateY(-120vh) scale(2); opacity: 0; }
}

/* Mobile Nav - improved */
#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}

#mobile-menu.active {
    transform: translateX(0);
}

/* Mobile menu links - brighter */
#mobile-menu a {
    color: var(--text-primary);
    font-weight: 700;
}

#mobile-menu a:hover {
    color: var(--primary);
}

/* Service cards - improved readability */
.service-card p {
    color: var(--text-muted) !important;
    line-height: 1.7;
}

.service-card h3 {
    color: var(--text-primary);
    font-weight: 800;
}

/* Stats counters - brighter */
.text-3xl.font-bold.text-\[#78C850\] {
    color: var(--primary) !important;
    text-shadow: 0 0 15px rgba(154, 232, 122, 0.4);
}

/* Trust bar - better contrast */
.border-zinc-900 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-zinc-950\/50 {
    background: rgba(25, 25, 25, 0.9) !important;
}

/* Form inputs - lighter for readability */
input, select, textarea {
    background-color: #252525 !important;
    border-color: #3A3A3A !important;
    color: var(--text-primary) !important;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary) !important;
    outline: none !important;
    box-shadow: 0 0 10px var(--primary-glow);
}

input::placeholder, textarea::placeholder {
    color: #999999 !important;
}

/* Footer links - better contrast */
footer a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary);
}

/* Review cards - improved */
.review-card p {
    color: var(--text-secondary) !important;
    line-height: 1.7;
}

/* Badge styling */
.gauteng-badge, .trust-badge {
    background: rgba(154, 232, 122, 0.15);
    border: 1px solid rgba(154, 232, 122, 0.3);
    color: var(--primary);
    backdrop-filter: blur(8px);
}

/* Loading spinner */
.loader-logo img {
    filter: brightness(1.15);
}

/* Hero section text - extra bright */
.hero-text, .hero-subtext {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Section backgrounds - slightly lifted */
.bg-black {
    background-color: #0D0D0D !important;
}

.bg-zinc-950 {
    background-color: #121212 !important;
}

/* Borders - lighter and more defined */
.border-zinc-800 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-zinc-900 {
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* ============================================ */
/* MOBILE RESPONSIVENESS - BOOKING FORM & MORE */
/* ============================================ */

/* Mobile styles (max-width: 768px) */
@media (max-width: 768px) {
    /* General spacing adjustments */
    .py-24 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .px-6 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    /* Heading sizes on mobile */
    h2, .text-4xl {
        font-size: 1.875rem !important;
        line-height: 2.25rem !important;
    }
    
    .text-5xl, .text-7xl, .text-8xl {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    /* Booking Form - Mobile Optimized */
    .glass-card.p-10 {
        padding: 1.5rem !important;
    }
    
    /* Make form fields full width on mobile */
    .grid-cols-1.md\:grid-cols-2 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Form inputs - larger touch targets */
    input, select, textarea, .glow-button {
        font-size: 16px !important;
        padding: 0.875rem 1rem !important;
        min-height: 48px;
    }
    
    /* Quote total box - better visibility */
    .p-6.bg-\[#78C850\]\/5 {
        padding: 1rem !important;
        margin: 1rem 0;
    }
    
    .text-2xl.font-bold.text-\[#78C850\] {
        font-size: 1.5rem !important;
    }
    
    /* Booking section left column */
    .mt-12.glass-card.p-8 {
        padding: 1.25rem !important;
        margin-top: 1.5rem;
    }
    
    /* Contact info spacing */
    .flex.flex-col.gap-4 li, .flex.flex-col.gap-4 div {
        margin-top: 0.5rem;
    }
    
    /* Operating hours and areas section */
    .mt-8.pt-4 {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Even tighter spacing */
    .glass-card.p-10 {
        padding: 1.25rem !important;
    }
    
    .grid-cols-1.md\:grid-cols-2.gap-6 {
        gap: 0.75rem;
    }
    
    /* Make buttons full width */
    .glow-button, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Smaller heading text */
    h2, .text-4xl {
        font-size: 1.5rem !important;
    }
    
    /* Reduce padding on quote box */
    .p-6 {
        padding: 0.875rem !important;
    }
    
    /* Stack contact info better */
    .flex.items-center.gap-3 {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Tablet styles (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Booking form grid adjustments */
    .grid.grid-cols-1.lg\:grid-cols-2 {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Order booking form above contact info on tablet */
    .grid.grid-cols-1.lg\:grid-cols-2 > div:first-child {
        order: 2;
    }
    
    .grid.grid-cols-1.lg\:grid-cols-2 > div:last-child {
        order: 1;
    }
}

/* Desktop styles (min-width: 769px) - restore grid layout */
@media (min-width: 769px) {
    .grid.grid-cols-1.lg\:grid-cols-2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .grid.grid-cols-1.lg\:grid-cols-2 > div:first-child,
    .grid.grid-cols-1.lg\:grid-cols-2 > div:last-child {
        order: unset;
    }
    
    .grid-cols-1.md\:grid-cols-2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix for service cards on mobile */
@media (max-width: 768px) {
    #services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem !important;
    }
    
    .service-card .w-16.h-16 {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
}

/* Fix for gallery grid on mobile */
@media (max-width: 640px) {
    .grid.grid-cols-2.sm\:grid-cols-3.md\:grid-cols-4.lg\:grid-cols-5 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }
}

/* Fix for testimonials on mobile */
@media (max-width: 768px) {
    .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    
    .glass-card.p-8 {
        padding: 1.25rem !important;
    }
}

/* Fix for Why Choose Us section on mobile */
@media (max-width: 768px) {
    .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3.gap-6 {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .glass-card.p-6 {
        padding: 1rem !important;
    }
    
    .glass-card.p-6 .text-lg {
        font-size: 0.9375rem;
    }
}

/* Fix for FAQ on mobile */
@media (max-width: 768px) {
    .faq-item button {
        padding: 1rem !important;
    }
    
    .faq-item button span {
        font-size: 0.9375rem;
    }
    
    .faq-answer p {
        font-size: 0.875rem;
    }
}

/* Fix for hero section on mobile */
@media (max-width: 768px) {
    .hero-section, section.relative.h-screen {
        min-height: 100vh;
        height: auto;
        padding: 6rem 0;
    }
    
    .hero-section .text-5xl, 
    section.relative.h-screen .text-5xl {
        font-size: 2rem !important;
    }
    
    .hero-section .flex.flex-col.md\:flex-row,
    section.relative.h-screen .flex.flex-col.md\:flex-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section .glow-button,
    .hero-section .glass-card,
    section.relative.h-screen .glow-button,
    section.relative.h-screen .glass-card {
        width: 100%;
        text-align: center;
    }
}

/* Fix for navbar on mobile */
@media (max-width: 768px) {
    .fixed.top-0.w-full.z-50.px-6.py-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .fixed.top-0.w-full.z-50.px-6.py-4 .h-12.md\:h-20 {
        height: 2.5rem;
    }
}

/* Fix for footer on mobile */
@media (max-width: 768px) {
    footer .grid.grid-cols-1.md\:grid-cols-4 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    
    footer .flex.items-center.gap-3 {
        justify-content: center;
    }
    
    footer .flex.gap-4 {
        justify-content: center;
    }
    
    footer .pt-12.flex.flex-col.md\:row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Improve touch targets on all interactive elements for mobile */
@media (max-width: 768px) {
    a, button, .glow-button, .glass-card, 
    input, select, textarea, .filter-btn {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    button, .filter-btn {
        min-height: 44px;
    }
    
    .filter-btn.px-6.py-2 {
        padding: 0.625rem 1rem;
    }
}

/* Prevent zoom on form inputs on mobile (iOS) */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}
/* ============================================ */
/* BOOKING FORM - MOBILE OPTIMIZATION
/* ============================================ */

/* Booking section container */
#booking .grid-cols-1.lg\:grid-cols-2 {
    gap: 1.5rem !important;
}

/* Left column - contact info */
#booking .grid-cols-1.lg\:grid-cols-2 > div:first-child {
    order: 2 !important;
}

/* Right column - booking form */
#booking .grid-cols-1.lg\:grid-cols-2 > div:last-child {
    order: 1 !important;
}

/* Booking form glass card */
#booking .glass-card.p-10 {
    padding: 1.25rem !important;
}

/* Form spacing */
#booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
}

/* Form grid rows - make each field full width on mobile */
#booking-form .grid.grid-cols-1.md\:grid-cols-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.875rem !important;
}

/* Each form field container */
#booking-form .grid.grid-cols-1.md\:grid-cols-2 > div {
    width: 100% !important;
}

/* Labels - compact but readable */
#booking-form label {
    font-size: 0.7rem !important;
    margin-bottom: 0.25rem !important;
    display: block !important;
}

/* Inputs, selects - consistent sizing */
#booking-form input,
#booking-form select,
#booking-form textarea {
    width: 100% !important;
    padding: 0.7rem 0.875rem !important;
    font-size: 0.9rem !important;
    border-radius: 0.5rem !important;
}

/* Quote total box */
#booking-form .p-6.bg-\[#78C850\]\/5 {
    padding: 0.875rem !important;
    margin: 0.5rem 0 !important;
    border-radius: 0.75rem !important;
}

/* Grand Total row */
#booking-form .flex.justify-between.items-center {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}

/* Grand Total label */
#booking-form .flex.justify-between.items-center .text-zinc-400 {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

/* Grand Total price */
#booking-form .text-2xl.font-bold.text-\[#78C850\] {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
}

/* Small disclaimer text */
#booking-form .text-\[10px\].text-zinc-500 {
    font-size: 0.65rem !important;
    margin-top: 0.5rem !important;
    line-height: 1.3 !important;
}

/* Submit button */
#booking-form button[type="submit"] {
    padding: 0.875rem !important;
    font-size: 1rem !important;
    margin-top: 0.5rem !important;
}

/* Contact info section (left column) */
#booking .mt-12.glass-card.p-8 {
    padding: 1.25rem !important;
    margin-top: 1rem !important;
}

/* Contact info heading */
#booking .mt-12.glass-card.p-8 h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
}

/* Contact info items */
#booking .flex.flex-col.gap-4 .flex.items-center.gap-3 {
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
}

#booking .flex.items-center.gap-3 span {
    font-size: 0.85rem !important;
}

/* Operating hours and areas sections */
#booking .mt-8.pt-4 {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
}

#booking .text-xs.uppercase.tracking-widest.text-zinc-600 {
    font-size: 0.65rem !important;
    margin-bottom: 0.25rem !important;
}

#booking .text-sm {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
}

/* Bullet points in left column */
#booking ul.space-y-6 {
    margin-bottom: 1rem !important;
}

#booking ul.space-y-6 li {
    gap: 0.75rem !important;
}

#booking ul.space-y-6 li i {
    width: 1.25rem !important;
    height: 1.25rem !important;
}

#booking ul.space-y-6 li span {
    font-size: 0.9rem !important;
}

/* Heading in booking section */
#booking h2 {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem !important;
}

#booking h2 .text-\[#78C850\] {
    display: inline-block !important;
}

#booking .text-zinc-400.text-lg {
    font-size: 0.9rem !important;
    margin-bottom: 1.25rem !important;
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS
/* ============================================ */

/* Small phones (up to 480px) */
@media (max-width: 480px) {
    #booking .glass-card.p-10 {
        padding: 1rem !important;
    }
    
    #booking-form .p-6 {
        padding: 0.75rem !important;
    }
    
    #booking-form .text-2xl.font-bold.text-\[#78C850\] {
        font-size: 1.2rem !important;
    }
    
    #booking h2 {
        font-size: 1.5rem !important;
    }
    
    #booking .mt-12.glass-card.p-8 {
        padding: 1rem !important;
    }
}

/* Tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    #booking .glass-card.p-10 {
        padding: 1.5rem !important;
    }
    
    #booking h2 {
        font-size: 2rem !important;
    }
}

/* Desktop (769px and above) - restore original layout */
@media (min-width: 769px) {
    #booking .grid-cols-1.lg\:grid-cols-2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4rem !important;
    }
    
    #booking .grid-cols-1.lg\:grid-cols-2 > div:first-child {
        order: 1 !important;
    }
    
    #booking .grid-cols-1.lg\:grid-cols-2 > div:last-child {
        order: 2 !important;
    }
    
    #booking-form .grid.grid-cols-1.md\:grid-cols-2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    #booking h2 {
        font-size: 3rem !important;
    }
}

/* ============================================ */
/* EXTRA POLISH FOR MOBILE
/* ============================================ */

/* Remove extra spacing between form elements */
#booking-form .space-y-6 > * + * {
    margin-top: 0.75rem !important;
}

/* Make select dropdowns more mobile-friendly */
#booking-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239AE87A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

/* Better touch targets for selects on mobile */
@media (max-width: 768px) {
    #booking-form select,
    #booking-form input,
    #booking-form button {
        min-height: 48px !important;
    }
}

/* Ensure Grand Total stands out */
#booking-form .bg-\[#78C850\]\/5 {
    background: rgba(154, 232, 122, 0.08) !important;
    border-left: 3px solid #9AE87A !important;
}

/* Make disclaimer text more readable */
#booking-form .text-\[10px\].text-zinc-500 {
    color: #9CA3AF !important;
    line-height: 1.4 !important;
}
