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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: #0a0a0a;
}

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

/* Colors */
:root {
    --primary-color: #FFD700;
    --secondary-color: #FFA500;
    --dark-grey: #000000;
    --light-grey: #666666;
    --white: #FFFFFF;
    --light-bg: #1a1a1a;
    --border-color: #333333;
    --success-color: #28a745;
    --error-color: #dc3545;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Logo Styling */
.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo i {
    margin-right: 10px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger active state */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-grey);
    transform: translateY(-2px);
}

/* Hero Booking */
.hero-booking {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Instant Booking Section */
.booking-preview {
    padding: 80px 0;
    background: var(--light-bg);
}

.booking-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.booking-preview p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-grey);
}

.instant-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.instant-service-card {
    background: #0a0a0a;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instant-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.service-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.service-description p {
    color: var(--light-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-includes h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.service-includes li {
    color: var(--light-grey);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "·";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-action .btn-primary {
    width: 100%;
    max-width: 200px;
}

/* More Services Section */
.more-services {
    background: #0a0a0a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.more-services h3 {
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 5px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.service-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.service-item:hover i {
    color: var(--white);
}

.service-item span:first-of-type {
    flex: 1;
    font-weight: 600;
}


.view-all {
    text-align: center;
}

/* Garage Details Section */
.garage-details {
    padding: 80px 0;
    background: #0a0a0a;
}

.garage-details h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.garage-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.garage-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.garage-address h3,
.garage-hours h3,
.garage-features h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.garage-address p {
    display: flex;
    align-items: center;
    color: var(--light-grey);
    margin-bottom: 1rem;
}

.garage-address i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.garage-hours ul {
    list-style: none;
    padding: 0;
}

.garage-hours li {
    color: var(--light-grey);
    margin-bottom: 0.5rem;
}

.garage-hours strong {
    color: var(--white);
}

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

.feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--white);
    font-weight: 600;
}


/* Featured Services */
.featured-services {
    padding: 80px 0;
    background: #0a0a0a;
}

.featured-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
    opacity: 1;
    background: #FFD700;
    padding: 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 3px solid #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--light-grey);
    line-height: 1.6;
}

.garage-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    max-height: 300px;
}

.garage-photo:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-item {
    display: flex;
    align-items: flex-start;
    background: #0a0a0a;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item:hover .service-icon {
    background: #FFD700;
    transform: scale(1.1);
    border-color: #000000;
}

.service-icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    border: 3px solid #000000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.service-icon i {
    font-size: 1.5rem;
    color: #000000;
    opacity: 1;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.service-info p {
    color: var(--light-grey);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #0a0a0a;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--light-grey);
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
    margin-left: 0;
}

.about-text li {
    color: var(--light-grey);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.availability-notice {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.availability-notice i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.availability-notice p {
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.availability-notice strong {
    color: var(--primary-color);
    font-weight: bold;
}

.availability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item p {
    color: var(--light-grey);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: #0a0a0a;
}

.booking h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

/* Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #0a0a0a;
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.hours li,
.contact-info li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    list-style: none;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Company registration number styling */
.footer-bottom p:nth-child(2) {
    font-size: 0.85rem;
    color: var(--light-grey);
    opacity: 0.8;
    font-weight: 400;
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .footer-bottom p:nth-child(2) {
        font-size: 0.8rem;
        text-align: center;
    }
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    /* Image scaling */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .garage-photo {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-grey);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .nav-logo span {
        font-size: 1.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-booking {
        flex-direction: column;
        align-items: center;
    }

    .hero-booking .btn-primary,
    .hero-booking .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .instant-service-card {
        padding: 1.5rem;
    }

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

    .service-action .btn-primary {
        width: 100%;
    }

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

    .service-card {
        padding: 1.5rem;
        text-align: center;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

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

    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .booking-form {
        padding: 2rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        border-radius: 8px;
        box-sizing: border-box;
        min-height: 48px; /* Touch-friendly height */
    }

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

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
        display: block;
    }

    /* Button improvements for mobile */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        min-height: 48px;
        box-sizing: border-box;
        margin-bottom: 1rem;
    }

    /* Checkbox styling */
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
        padding: 12px 0;
    }

    .checkbox-group input[type="checkbox"] {
        min-width: 20px;
        min-height: 20px;
        margin: 0;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .checkbox-group .checkbox-text {
        flex: 1;
        font-size: 14px;
        line-height: 1.4;
        color: var(--light-grey);
    }

    .checkbox-group .checkbox-text a {
        color: var(--primary-color);
        text-decoration: underline;
    }

    
    /* Availability system mobile improvements */
    .availability-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .availability-calendar,
    .availability-slots {
        padding: 1.5rem;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.3rem;
        font-size: 0.8rem;
    }

    .calendar-day {
        font-size: 0.8rem;
        padding: 0.5rem;
        min-height: 40px;
    }

    .time-slots-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .time-slot {
        padding: 1rem;
        font-size: 0.9rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer improvements for mobile */
    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section ul {
        text-align: left;
    }

    .footer-section li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .footer-links {
        text-align: center;
        margin-top: 1rem;
    }

    .footer-links a {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    /* Contact form mobile improvements */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Service cards mobile improvements */
    .service-card {
        padding: 1.5rem;
        text-align: center;
    }

    .service-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .availability-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calendar-grid {
        gap: 0.4rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .garage-info {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .featured-services h2,
    .services h2,
    .about h2,
    .contact h2,
    .booking h2 {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
    
    /* Enhanced small screen forms */
    .booking-form {
        padding: 1.5rem 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }
    
    /* Better button sizing for small screens */
    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Improved calendar for very small screens */
    .calendar-grid {
        gap: 0.2rem;
        font-size: 0.7rem;
    }
    
    .calendar-day {
        font-size: 0.7rem;
        padding: 0.4rem;
        min-height: 35px;
    }
    
    /* Better time slots for small screens */
    .time-slot {
        padding: 0.8rem;
        font-size: 0.8rem;
        min-height: 44px;
    }
    
    /* Improved service cards */
    .service-card {
        padding: 1rem;
    }
    
    .service-card i {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    /* Better footer for small screens */
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section li {
        font-size: 0.85rem;
    }
    
    /* Privacy policy mobile improvements */
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .privacy-content .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-content .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

    .contact-content {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
        min-height: 48px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .form-group select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 20px;
        padding-right: 40px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
        display: block;
        font-weight: 600;
    }

    .form-group input[type="date"],
    .form-group input[type="time"] {
        color: var(--white);
    }

    .form-group input[type="date"]::-webkit-calendar-picker-indicator,
    .form-group input[type="time"]::-webkit-calendar-picker-indicator {
        filter: invert(1);
        cursor: pointer;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .container {
        padding: 0 15px;
    }

    .garage-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }

    .feature-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }


/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #0a0a0a;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.privacy-section p {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    color: var(--light-grey);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.privacy-section strong {
    color: var(--primary-color);
    font-weight: bold;
}

/* Privacy contact info styling */
.privacy-content .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.privacy-content .contact-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.privacy-content .contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.privacy-content .contact-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.privacy-content .contact-item p {
    margin: 0;
    color: var(--light-grey);
}

/* Responsive design for privacy policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 1rem 0;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Checkbox styling for all devices */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px 0;
}

.checkbox-group input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group .checkbox-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: var(--light-grey);
}

.checkbox-group .checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Improved Form Layout and Spacing */
.booking-form {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.form-group {
    display: block;
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

/* Improved input styling */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

/* Select styling improvements */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 12px;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Date and time inputs */
.form-group input[type="date"],
.form-group input[type="time"] {
    color: var(--white);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-group input[type="date"]:hover::-webkit-calendar-picker-indicator,
.form-group input[type="time"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* Responsive form improvements */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 15px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .form-group select {
        background-position: right 14px center;
        background-size: 14px;
        padding-right: 42px;
    }
}

@media (max-width: 480px) {
    .form-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .form-group select {
        background-position: right 12px center;
        background-size: 12px;
        padding-right: 36px;
    }
}

/* Form inputs - Full width */
.form-group input,
.form-group textarea {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    box-sizing: border-box;
}

/* Select elements - Normal dropdown behavior */
.form-group select {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #111;
    color: white;
    border: 1px solid #333;
    appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group select option {
    background-color: #111;
    color: white;
    padding: 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Form labels */
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

/* Checkbox styling - ONLY apply flex to checkbox labels */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    color: var(--light-grey);
    padding: 8px 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
    margin: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.service-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Improved Card Alignment and Equal Heights */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    flex-grow: 0;
}

.service-card p {
    color: var(--light-grey);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card .garage-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Service Items Equal Height */
.service-item {
    display: flex;
    align-items: flex-start;
    background: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 140px;
}

.service-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item:hover .service-icon {
    background: #FFD700;
    transform: scale(1.1);
    border-color: #000000;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-item:hover .service-icon i {
    color: var(--white);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.service-info p {
    color: var(--light-grey);
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for improved cards */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .services-full-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-item {
        padding: 1.5rem;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card .garage-photo {
        height: 150px;
    }
    
    .service-item {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-info h3 {
        font-size: 1.2rem;
    }
}

/* Section Spacing and Global Responsive Improvements */
section {
    overflow: hidden;
    padding: 60px 0;
}

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

/* Hero section improvements */
.hero {
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Content sections spacing */
.about,
.services,
.booking,
.contact {
    padding: 80px 0;
}

/* Typography improvements */
h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--white);
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Button improvements */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 52px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-grey);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer improvements */
.footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-links a {
    color: var(--light-grey);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

/* Comprehensive responsive design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .about,
    .services,
    .booking,
    .contact {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0 60px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .about,
    .services,
    .booking,
    .contact {
        padding: 50px 0;
    }
    
    .hero {
        padding: 60px 0 40px 0;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    h2::after {
        width: 60px;
        bottom: -12px;
    }
    
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 48px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .about,
    .services,
    .booking,
    .contact {
        padding: 40px 0;
    }
    
    .hero {
        padding: 50px 0 30px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    h2::after {
        width: 50px;
        height: 2px;
        bottom: -10px;
    }
    
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .footer-links a {
        margin: 0 0.5rem;
        font-size: 14px;
    }
}

/* Form Message Box */
.form-message {
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: none;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* Spinner Animation */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

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

/* Responsive adjustments for form message */
@media (max-width: 768px) {
    .form-message {
        padding: 14px 16px;
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .spinner {
        width: 14px;
        height: 14px;
        border-width: 1.5px;
        margin-left: 6px;
    }
}

@media (max-width: 480px) {
    .form-message {
        padding: 12px 14px;
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .spinner {
        width: 12px;
        height: 12px;
        margin-left: 4px;
    }
}

/* Mission Quote Styling */
.mission-quote {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.mission-quote p {
    font-size: 18px;
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Final Message Styling */
.final-message {
    text-align: center;
    padding: 40px 20px;
}

.final-message p {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Responsive adjustments for mission quote and final message */
@media (max-width: 768px) {
    .mission-quote {
        margin: 30px 0;
        padding: 25px 20px;
    }
    
    .mission-quote p {
        font-size: 16px;
    }
    
    .final-message {
        padding: 30px 15px;
    }
    
    .final-message p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mission-quote {
        margin: 25px 0;
        padding: 20px 15px;
    }
    
    .mission-quote p {
        font-size: 15px;
    }
    
    .final-message {
        padding: 25px 10px;
    }
    
    .final-message p {
        font-size: 15px;
    }
}

/* Contact Cards Styling */
.contact-cards {
    flex: 1;
    padding-left: 40px;
}

.contact-cards h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-card-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--white);
}

.contact-card-content p {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 3px 0;
    color: var(--primary-color);
}

.contact-card-content span {
    font-size: 14px;
    color: var(--light-grey);
    display: block;
}

/* Special card styles */
.whatsapp-card:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
}

.whatsapp-card .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
}

.whatsapp-card .contact-card-icon i {
    color: #25d366;
}

.emergency-card:hover {
    background: rgba(220, 53, 69, 0.1);
    border-color: var(--error-color);
}

.emergency-card .contact-card-icon {
    background: rgba(220, 53, 69, 0.1);
    border-color: var(--error-color);
}

.emergency-card .contact-card-icon i {
    color: var(--error-color);
}

.contact-message {
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 20px;
}

.contact-message p {
    margin: 0;
    color: var(--white);
    line-height: 1.6;
}

.contact-message strong {
    color: var(--primary-color);
}

/* Responsive adjustments for contact cards */
@media (max-width: 768px) {
    .contact-cards {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .contact-cards h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-card-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .contact-card-icon i {
        font-size: 18px;
    }
    
    .contact-card-content h4 {
        font-size: 15px;
    }
    
    .contact-card-content p {
        font-size: 16px;
    }
    
    .contact-card-content span {
        font-size: 13px;
    }
    
    .contact-message {
        padding: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .contact-cards h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .contact-card {
        padding: 12px;
    }
    
    .contact-card-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .contact-card-icon i {
        font-size: 16px;
    }
    
    .contact-card-content h4 {
        font-size: 14px;
    }
    
    .contact-card-content p {
        font-size: 15px;
    }
    
    .contact-card-content span {
        font-size: 12px;
    }
}

/* Map Container Styling */
.map-container {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.location-info {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.location-info p {
    margin: 10px 0;
    color: var(--white);
    line-height: 1.6;
}

.location-info strong {
    color: var(--primary-color);
}

/* Responsive adjustments for map */
@media (max-width: 768px) {
    .map-container {
        margin: 20px 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .location-info {
        margin-top: 20px;
        padding: 15px;
    }
    
    .location-info p {
        font-size: 15px;
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    .map-container {
        margin: 15px 0;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .location-info {
        margin-top: 15px;
        padding: 12px;
    }
    
    .location-info p {
        font-size: 14px;
        margin: 6px 0;
    }
}

/* Consent Checkbox Styling */
.consent-section {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.consent-item:last-child {
    margin-bottom: 0;
}

.consent-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0 12px 0 0;
    flex-shrink: 0;
    appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.consent-item input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.consent-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-grey);
    font-size: 14px;
    font-weight: bold;
}

.consent-item input[type="checkbox"]:hover {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.consent-item label {
    color: var(--white);
    font-size: 15px;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
    flex: 1;
}

.consent-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.consent-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Consent validation error styling */
.consent-item {
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.consent-item.validation-error {
    border: 2px solid var(--error-color) !important;
    background: rgba(220, 53, 69, 0.1) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Improved error message styling for consent validation */
.form-message.error.consent-error {
    background: rgba(220, 53, 69, 0.15);
    border-left: 4px solid var(--error-color);
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 25px;
}

.form-message.error.consent-error::before {
    content: "⚠️";
    margin-right: 10px;
    font-size: 18px;
}

.form-message.error.consent-error a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-message.error.consent-error a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Checkbox focus improvements for accessibility */
.consent-item input[type="checkbox"]:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.consent-item input[type="checkbox"]:focus:not(:focus-visible) {
    outline: none;
}

.consent-item input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

/* Responsive adjustments for consent checkboxes */
@media (max-width: 768px) {
    .consent-section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .consent-item {
        margin-bottom: 12px;
    }
    
    .consent-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    
    .consent-item label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .consent-section {
        margin: 15px 0;
        padding: 12px;
    }
    
    .consent-item {
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .consent-item input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .consent-item label {
        font-size: 13px;
    }
}

/* Terms Page Styling */
.terms-content {
    padding: 60px 0;
    background: #0a0a0a;
}

.terms-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.terms-wrapper .last-updated {
    color: var(--light-grey);
    font-style: italic;
    margin-bottom: 30px;
    font-size: 14px;
}

.terms-wrapper h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.terms-wrapper h2:first-of-type {
    margin-top: 0;
}

.terms-wrapper p {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Responsive adjustments for terms page */
@media (max-width: 768px) {
    .terms-content {
        padding: 40px 0;
    }
    
    .terms-wrapper {
        padding: 30px 25px;
        margin: 0 20px;
    }
    
    .terms-wrapper h2 {
        font-size: 22px;
        margin: 25px 0 12px 0;
    }
    
    .terms-wrapper p {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 30px 0;
    }
    
    .terms-wrapper {
        padding: 25px 20px;
        margin: 0 15px;
        border-radius: 8px;
    }
    
    .terms-wrapper h2 {
        font-size: 20px;
        margin: 20px 0 10px 0;
    }
    
    .terms-wrapper p {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.7;
    }
    
    .terms-wrapper .last-updated {
        font-size: 13px;
        margin-bottom: 20px;
    }
}
