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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    /* Old yellow: #FFD700 */
    --primary-yellow: #00baff;
    --dark-yellow: #0099cc;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    justify-content: center;
}

.btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 70px;
    width: auto;
}

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

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

.nav-list a:hover {
    color: var(--dark-yellow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%), 
                url('img/assets/wheelchair photo 1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.info-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
}

.highlight i {
    font-size: 2rem;
    color: var(--primary-yellow);
    min-width: 3rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight span {
    font-weight: 600;
    color: var(--black);
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-dark);
    border-color: var(--primary-yellow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--dark-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--black);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s ease;
    min-height: 60px;
    line-height: 1.4;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: -2px;
    background: var(--light-gray);
}

.faq-question span {
    flex: 1;
    margin-right: 1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: var(--light-gray);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--black);
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: var(--black);
    font-weight: 600;
}

.contact-item span {
    color: #666;
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--black);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

/* Fixed Call Button */
.fixed-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow-dark);
    z-index: 999;
    transition: all 0.3s ease;
}

.fixed-call-btn:hover {
    transform: scale(1.1);
    background: var(--dark-yellow);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .info-highlights {
        grid-template-columns: 1fr;
    }

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

    /* FAQ Mobile Styles */
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
        min-height: 56px;
        touch-action: manipulation;
    }

    .faq-question span {
        margin-right: 0.5rem;
        line-height: 1.3;
    }

    .faq-question i {
        font-size: 1.1rem;
        min-width: 20px;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .faq-item.active .faq-answer {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 100px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* FAQ Small Mobile Styles */
    .faq {
        padding: 40px 0;
    }

    .faq-question {
        padding: 0.75rem;
        font-size: 0.95rem;
        min-height: 52px;
    }

    .faq-question span {
        margin-right: 0.25rem;
        font-size: 0.9rem;
    }

    .faq-question i {
        font-size: 1rem;
        min-width: 18px;
    }

    .faq-answer p {
        padding: 0 0.75rem 0.75rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .faq-item {
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Service Pages Styles */

/* Breadcrumb - FIXED: Added proper margin-top to prevent overlap with fixed header */
.breadcrumb {
    background: var(--light-gray);
    padding: 1rem 0;
    margin-top: 140px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb-list a {
    color: var(--dark-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--black);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--black);
    font-weight: 600;
}

/* Service Hero */
.service-hero {
    background: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-content h1 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Details */
.service-details {
    padding: 4rem 0;
    background: var(--light-gray);
}

.service-content h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin: 3rem 0 1.5rem 0;
}

.service-content h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin: 2rem 0 1rem 0;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Feature Grid - FIXED: Improved icon alignment */
.service-features {
    margin: 3rem 0;
}

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

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.feature-item h4 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.feature-item p {
    margin: 0;
    font-size: 1rem;
}

/* Service List */
.service-list {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    margin: 2rem 0;
}

.service-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

/* Advantages - FIXED: Better icon alignment */
.advantages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.advantage-item i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-top: 0.2rem;
    min-width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.advantage-item p {
    margin: 0;
    font-size: 1rem;
}

/* Coverage Area */
.coverage-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.area-column {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.area-column h4 {
    margin: 0 0 1.5rem 0;
    color: var(--black);
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 0.5rem;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.area-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.area-column li:last-child {
    border-bottom: none;
}

/* Service CTA */
.service-cta {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 115px;
    }
    
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .service-hero-cta .btn i {
        margin-right: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }
    
    .advantage-item i {
        margin-top: 0;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }
    
    .coverage-area {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .cta-buttons .btn i {
        margin-right: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Menu specific icon alignment */
    .mobile-menu-link {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-menu-link i {
        width: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-contact-item i {
        width: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        margin-top: 105px;
    }
    
    .service-hero {
        padding: 2rem 0;
    }
    
    .service-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-hero-cta .btn {
        max-width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .service-hero-cta .btn i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .service-details {
        padding: 2rem 0;
    }
    
    .service-cta {
        padding: 2rem 0;
    }
    
    .feature-item,
    .advantage-item,
    .area-column,
    .service-list {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .advantage-item i {
        font-size: 1.8rem;
        width: 2rem;
        height: 2rem;
    }
    
    .cta-buttons .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .cta-buttons .btn i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    /* Extra small screens - further icon optimization */
    .btn i {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Fixed call button */
    .fixed-call-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .fixed-call-btn i {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-gray);
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 2rem 0;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
}

.mobile-menu-logo img {
    height: 50px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

.mobile-menu-close i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    padding: 0 2rem;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #333;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link:hover {
    color: var(--primary-yellow);
    padding-left: 1rem;
}

.mobile-menu-link i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-contact {
    margin-top: 2rem;
    padding: 2rem;
    border-top: 1px solid #333;
}

.mobile-contact-title {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.mobile-contact-item i {
    margin-right: 1rem;
    color: var(--primary-yellow);
    width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact-item a:hover {
    color: var(--primary-yellow);
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.mobile-social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.mobile-social-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Booking Form Styles */
.booking-section {
    padding: 4rem 0;
    background: var(--light-gray);
    min-height: 80vh;
}

/* Progress Bar */
.progress-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--light-gray);
    padding: 0 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    transition: color 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-yellow);
    color: var(--black);
}

.progress-step.active .step-label {
    color: var(--black);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: var(--primary-yellow);
    color: var(--black);
}

.progress-step.completed .step-label {
    color: var(--black);
}

/* Booking Form */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow);
    overflow: hidden;
    position: relative;
}

.form-step {
    display: none;
    padding: 3rem;
    min-height: 500px;
}

.form-step.active {
    display: block;
}

.step-content h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 2rem;
}

.step-description {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-option:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.service-option.selected {
    border-color: var(--primary-yellow);
    background: #fff9e6;
}

.service-option .service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.service-option .service-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

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

.service-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.service-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.service-option.selected .service-check {
    opacity: 1;
    transform: scale(1);
}

.service-check i {
    color: var(--black);
    font-size: 0.9rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

/* Date and Time Selection */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.calendar-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header h3 {
    margin: 0;
    color: var(--black);
    font-size: 1.3rem;
}

.calendar-nav {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-nav:hover {
    background: var(--primary-yellow);
}

.calendar-nav i {
    color: var(--black);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.calendar-day:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: none;
    color: #ccc;
}

.calendar-day.selected {
    background: var(--primary-yellow);
    color: var(--black);
    font-weight: 600;
    border-color: var(--black);
}

.calendar-header-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    font-size: 0.8rem;
}

.time-selection {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.time-selection h4 {
    margin-bottom: 1.5rem;
    color: var(--black);
    font-size: 1.2rem;
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.selected-datetime {
    border-top: 2px solid #e0e0e0;
    padding-top: 1.5rem;
}

.selected-datetime h4 {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.1rem;
}

.datetime-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.datetime-display span {
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
    color: var(--black);
    font-weight: 500;
    text-align: center;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.step-actions .btn {
    min-width: 150px;
}

.step-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
    .booking-section {
        padding: 2rem 0;
    }
    
    .form-step {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .step-content h2 {
        font-size: 1.8rem;
    }
    
    .progress-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-bar::before {
        display: none;
    }
    
    .progress-step {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        padding: 0;
    }
    
    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        text-align: left;
    }
    
    .service-selection {
        gap: 1rem;
    }
    
    .service-option {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .service-option .service-icon {
        margin: 0 0 1rem 0;
    }
    
    .service-check {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .datetime-selection {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .time-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .form-step {
        padding: 1.5rem 1rem;
    }
    
    .step-content h2 {
        font-size: 1.5rem;
    }
    
    .service-option {
        padding: 1rem;
    }
    
    .service-option .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-option .service-icon i {
        font-size: 1.2rem;
    }
    
    .calendar-container,
    .time-selection {
        padding: 1rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Vehicle Types Compact Overview */
.vehicle-types-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.vehicle-type {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.vehicle-type:hover {
    background: #fff9e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.vehicle-type i {
    font-size: 1.2rem;
    color: var(--primary-yellow);
    min-width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vehicle-type span {
    font-weight: 500;
    color: var(--black);
    font-size: 0.95rem;
}

/* Mobile responsiveness for vehicle types */
@media (max-width: 768px) {
    .vehicle-types-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .vehicle-type {
        padding: 0.75rem;
        justify-content: center;
        text-align: center;
    }
    
    .vehicle-type i {
        font-size: 1.1rem;
    }
    
    .vehicle-type span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .vehicle-type {
        padding: 0.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .vehicle-type i {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }
    
    .vehicle-type span {
        font-size: 0.85rem;
        text-align: center;
    }
} 