        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #d8613c;
            --dark-bg: #1a1a1a;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --text-dark: #2c2c2c;
            --text-gray: #636363;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: var(--dark-bg);
            color: var(--white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 2px;
        }

        @media (max-width: 768px) {
            .logo-text {
                font-size: 1rem;
            }
            .logo-img {
                height: 40px;
            }
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-red);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* Mobile menu open state */
        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--dark-bg);
            padding: 1rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .nav-menu.active li {
            text-align: center;
            padding: 0.75rem 0;
        }

        .nav-menu.active a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2c2c2c 100%);
            color: var(--white);
            padding: 120px 2rem 80px;
            text-align: center;
            position: relative;
            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 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="%23d8613c" opacity="0.1"/></svg>') no-repeat bottom center;
            background-size: cover;
            opacity: 0.3;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .hero .tagline {
            font-size: 1.8rem;
            color: var(--primary-red);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero .subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary-red);
            color: var(--white);
        }

        .btn-primary:hover {
            background: #c24f2a;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(216, 97, 60, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--dark-bg);
        }

        /* Services Section */
        .services {
            padding: 80px 2rem;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-title-white {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-subtitle-white {
            text-align: center;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }


        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--light-gray);
            padding: 2.5rem 2rem;
            border-radius: 10px;
            transition: all 0.3s;
            border-left: 5px solid var(--primary-red);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .service-card ul {
            list-style: none;
            padding: 0;
        }

        .service-card li {
            padding: 0.5rem 0;
            color: var(--text-gray);
            position: relative;
            padding-left: 1.5rem;
        }

        .service-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: bold;
        }

        /* Service Areas - Compact */
        .service-areas {
            padding: 40px 2rem;
            background: var(--dark-bg);
            color: var(--white);
            text-align: center;
        }

        .service-areas h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .areas-compact {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .areas-compact span {
            color: var(--primary-red);
            padding: 0 0.5rem;
        }

        /* Booking Section */
        .booking {
            padding: 80px 2rem;
            background: var(--light-gray);
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        input, textarea, select {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .radio-group {
            display: flex;
            gap: 2rem;
            margin-top: 0.5rem;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .radio-option input[type="radio"] {
            width: auto;
            margin: 0;
        }

        .radio-option label {
            margin-bottom: 0;
            line-height: 1;
        }

        /* Contact Section */
        .contact {
            padding: 80px 2rem;
            background: var(--dark-bg);
            color: var(--white);
        }

        .contact-grid {
            max-width: 1200px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .contact-item {
            padding: 2rem;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            transition: all 0.3s;
        }

        .contact-item:hover {
            background: rgba(216, 97, 60, 0.2);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .contact-item a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: var(--primary-red);
        }

        /* Footer */
        .footer {
            background: #0d0d0d;
            color: var(--white);
            padding: 2.5rem 2rem 2rem;
            text-align: center;
            position: relative;
        }
        .footer::before {
            content: "";
            position: absolute;
            left: 0; right: 0; top: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
            opacity: .6;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer p {
            margin-bottom: 0.5rem;
            color: #888;
        }

        /* Ez-ai attribution card */
        .footer-credit {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.35rem;
            margin-top: 1.75rem;
            padding: 1.25rem 1.75rem;
            background: linear-gradient(140deg, rgba(255,255,255,.04) 0%, rgba(216,97,60,.05) 100%);
            border: 1px solid rgba(216,97,60,.20);
            border-radius: 12px;
            text-decoration: none;
            transition: border-color .2s ease, transform .15s ease, background .2s ease;
        }
        .footer-credit:hover {
            border-color: rgba(216,97,60,.55);
            background: linear-gradient(140deg, rgba(216,97,60,.10) 0%, rgba(216,97,60,.04) 100%);
            transform: translateY(-1px);
        }
        .footer-credit-label {
            font-size: .7rem;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            color: #888;
            font-weight: 700;
        }
        .footer-credit-logo {
            height: 28px;
            width: auto;
            margin: 2px 0 4px;
            display: block;
        }
        .footer-credit-tagline {
            font-size: .82rem;
            color: #888;
            line-height: 1.4;
            max-width: 280px;
        }
        .footer-credit-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 6px;
            font-weight: 600;
            color: var(--primary-red);
            font-size: .92rem;
            transition: color .15s ease;
        }
        .footer-credit:hover .footer-credit-link { color: #f08766; }
        .footer-credit-link svg { transition: transform .15s ease; }
        .footer-credit:hover .footer-credit-link svg { transform: translateX(3px); }

        /* Mobile Responsive - Mobile First Approach */
        @media (max-width: 768px) {
            /* Header optimizations */
            .header {
                padding: 0.75rem 0;
            }

            .header-content {
                padding: 0 1rem;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
                padding: 0.5rem;
                min-width: 44px;
                min-height: 44px;
            }

            /* Hero section mobile */
            .hero {
                padding: 100px 1.5rem 60px;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.1;
            }

            .hero .tagline {
                font-size: 1.3rem;
            }

            .hero .subtitle {
                font-size: 1rem;
            }

            /* Buttons mobile */
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                padding: 1.2rem 2rem;
                min-height: 48px;
            }

            /* Sections spacing */
            .services,
            .service-areas,
            .booking,
            .contact {
                padding: 60px 1rem;
            }

            .section-title,
            .section-title-white {
                font-size: 2rem;
            }

            /* Form mobile */
            .form-row {
                grid-template-columns: 1fr;
            }

            .booking-container {
                padding: 2rem 1.5rem;
            }

            /* Service areas mobile */
            .service-areas h2 {
                font-size: 1.3rem;
            }

            .areas-compact {
                font-size: 0.9rem;
                line-height: 1.8;
            }

            /* Contact grid mobile */
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Accessibility - Skip to content link */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--dark-bg);
            color: var(--white);
            padding: 1rem 2rem;
            z-index: 10000;
            border-radius: 0 0 8px 8px;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid var(--primary-red);
        }

        /* Improved focus indicators */
        *:focus-visible {
            outline: 3px solid var(--primary-red);
            outline-offset: 2px;
        }

        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid var(--primary-red);
            outline-offset: 0;
            border-color: var(--primary-red);
        }

        /* Form validation feedback */
        .form-feedback {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: none;
        }

        .form-feedback.error {
            background: #ffeaea;
            border: 1px solid #d32f2f;
            color: #d32f2f;
            display: block;
        }

        .form-feedback.success {
            background: #e8f5e9;
            border: 1px solid #388e3c;
            color: #388e3c;
            display: block;
        }

        input:invalid:not(:focus):not(:placeholder-shown),
        textarea:invalid:not(:focus):not(:placeholder-shown) {
            border-color: #d32f2f;
        }

        input.field-error,
        textarea.field-error {
            border-color: #d32f2f;
            background-color: #ffeaea;
        }

        /* WINZ Section */
        .winz-section {
            padding: 80px 2rem;
            background: var(--light-gray);
            text-align: center;
        }

        .winz-section h2 {
            color: var(--text-dark);
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .winz-section p {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 2.5rem;
        }

        .winz-tags {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto 2.5rem;
        }

        .winz-tag {
            background: var(--primary-red);
            color: var(--white);
            padding: 1.25rem 1rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 2rem;
            background: var(--white);
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .faq-item {
            background: var(--light-gray);
            border-left: 5px solid var(--primary-red);
            padding: 1.5rem 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .faq-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .faq-item h3 {
            color: var(--text-dark);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .faq-item p {
            color: var(--text-gray);
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 768px) {
            .winz-section {
                padding: 50px 1.5rem;
            }

            .winz-section h2 {
                font-size: 2rem;
            }

            .winz-tags {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .winz-tag {
                padding: 1rem;
                font-size: 0.95rem;
            }

            .faq-section {
                padding: 60px 1rem;
            }

            .faq-container {
                grid-template-columns: 1fr;
            }

            .faq-item {
                padding: 1.25rem 1.5rem;
            }

            .faq-item h3 {
                font-size: 1.1rem;
            }
        }
