/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #0066b1; /* BMW M Blue */
    --secondary-color: #1c3a56; /* Dark Blue */
    --accent-color: #e4002b; /* BMW M Red */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    
    /* Fonts */
    --heading-font: 'Oswald', sans-serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.divider-line {
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.divider-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-color);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.preloader-icon span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-icon span:nth-child(2) {
    border-top-color: var(--primary-color);
    animation-delay: 0.2s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(28, 58, 86, 0.95);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    margin-right: 30px;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
}

.phone-link {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 600;
    background-color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 4px;
    transition: var(--transition);
}

.phone-link i {
    margin-right: 8px;
    font-size: 14px;
}

.phone-link:hover {
    background-color: rgba(228, 0, 43, 0.8);
    box-shadow: var(--shadow-sm);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1000;
}

.bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.bar:nth-child(3) {
    bottom: 0;
}

.hamburger.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 700px;
}

.hero-title {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 1;
    cursor: pointer;
}

.hero-scroll span {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 2px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background-color: white;
    border-radius: 3px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Map & Contact Shortcut Section */
.map-contact-shortcut {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.shortcut-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-shortcut {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.map-shortcut iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(28, 58, 86, 0.9);
    padding: 30px;
    max-width: 300px;
    color: white;
    border-radius: 8px;
}

.map-overlay h3 {
    color: white;
    margin-bottom: 15px;
}

.map-overlay p {
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-shortcut {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
    color: white;
}

.contact-shortcut h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.contact-shortcut p {
    margin-bottom: 25px;
    opacity: 0.8;
}

.shortcut-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.working-hours h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.working-hours ul {
    list-style: none;
}

.working-hours li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.working-hours li::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent-color);
}

/* Services Section */
.service-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.service-link i {
    margin-left: 5px;
    font-size: 12px;
}

/* Service Details Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal .modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-modal.active .modal-content {
    transform: translateY(0);
}

.service-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.service-modal .close-modal:hover {
    color: var(--accent-color);
}

.service-modal h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-modal .service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-modal .service-image {
    border-radius: 8px;
    overflow: hidden;
}

.service-modal .service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-modal .service-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-modal .service-info p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.service-modal .service-features {
    margin-bottom: 20px;
}

.service-modal .service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-modal .service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent-color);
}

.service-modal .service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-category {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
    transform: translateY(0);
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

#modal-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-description {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.feature-text p {
    color: var(--gray-color);
    font-size: 14px;
}

.about-images {
    position: relative;
}

.image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-secondary {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
    z-index: 1;
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 15px;
    transition: var(--transition);
}

.testimonial-inner {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-inner::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.author-info p {
    color: var(--gray-color);
    font-size: 14px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--accent-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Customer Reviews Section */
.customer-reviews {
    background-color: #f9f9f9;
}

.reviews-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.review-form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-form h3 {
    margin-bottom: 20px;
    color: #222;
}

.rating-input {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rating-input span {
    margin-right: 15px;
    font-weight: 500;
}

.stars {
    display: flex;
}

.stars i {
    color: #ffc107;
    cursor: pointer;
    font-size: 20px;
    margin-right: 5px;
    transition: all 0.2s ease;
}

.stars i:hover {
    transform: scale(1.2);
}

.reviews-list {
    flex: 2;
}

.reviews-list h3 {
    margin-bottom: 20px;
    color: #222;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-name {
    margin: 0;
    font-size: 18px;
    color: #222;
}

.review-vehicle {
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.review-rating {
    margin-bottom: 10px;
}

.review-rating i {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    margin: 15px 0;
    color: #555;
    line-height: 1.6;
}

.review-date {
    font-size: 12px;
    color: #999;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
    color: white;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--accent-color);
}

.info-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.info-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.social-link.whatsapp {
    background-color: #25D366;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 177, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Date Input Styling */
.form-group input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    padding: 12px 15px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--dark-color);
    width: 100%;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

/* Focus state */
.form-group input[type="date"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 177, 0.2);
}

/* Mobile-specific date picker styles */
@media (max-width: 768px) {
    .form-group input[type="date"] {
        padding: 14px 15px;
        font-size: 16px;
        min-height: 50px;
    }
    
    .form-group input[type="date"]:not(:disabled):not(:read-only) {
        cursor: pointer;
    }
}

/* Fallback for browsers that don't support native date picker */
.form-group input[type="date"]:not(.has-datepicker) {
    background-image: none;
    padding-right: 15px;
}

/* Date picker calendar icon color in dark mode */
@media (prefers-color-scheme: dark) {
    .form-group input[type="date"] {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23adb5bd' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    }
}

.contact-map {
    grid-column: 1 / -1;
    margin-top: 30px;
}

.map-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(28, 58, 86, 0.9);
    padding: 30px;
    max-width: 300px;
    color: white;
    border-radius: 8px;
}

.map-overlay h3 {
    color: white;
    margin-bottom: 15px;
}

.map-overlay p {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal .modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 95%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    margin: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal.active .modal-content {
    transform: translateY(0);
}

.booking-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
    background: rgba(0,0,0,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.booking-modal .close-modal:hover {
    color: var(--accent-color);
    background: rgba(0,0,0,0.2);
}

.booking-modal h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 24px;
}

/* Phone Numbers Modal */
.phone-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.phone-modal.active {
    opacity: 1;
    visibility: visible;
}

.phone-modal .modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 95%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    margin: 20px;
}

.phone-modal.active .modal-content {
    transform: translateY(0);
}

.phone-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
    background: rgba(0,0,0,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.phone-modal .close-modal:hover {
    color: var(--accent-color);
    background: rgba(0,0,0,0.2);
}

.phone-modal h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 22px;
}

.phone-numbers {
    margin-bottom: 20px;
}

.phone-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.phone-item:hover {
    background-color: rgba(0, 102, 177, 0.1);
}

.phone-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 102, 177, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-item h3 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.phone-item a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.phone-item a:hover {
    color: #c10024;
}

/* All Reviews Modal */
.all-reviews-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.all-reviews-modal.active {
    opacity: 1;
    visibility: visible;
}

.all-reviews-modal .modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    width: 95%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    margin: 20px;
}

.all-reviews-modal.active .modal-content {
    transform: translateY(0);
}

.all-reviews-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
    background: rgba(0,0,0,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.all-reviews-modal .close-modal:hover {
    color: var(--accent-color);
    background: rgba(0,0,0,0.2);
}

.all-reviews-modal h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 28px;
}

.all-reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Success Message */
.modal-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal-message.active {
    opacity: 1;
    visibility: visible;
}

.modal-message .modal-content {
    background-color: white;
    padding: 40px 30px 30px;
    border-radius: 12px;
    width: 95%;
    max-width: 420px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-message.active .modal-content {
    transform: translateY(0);
}

.modal-message .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
    background: rgba(0,0,0,0.05);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-message .close-modal:hover {
    color: var(--accent-color);
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 54px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 102, 177, 0.15);
}

.modal-message h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.message-text {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

.call-text {
    color: var(--gray-color);
    font-size: 14px;
    margin-top: 10px;
}

/* Error Message Styling */
.modal-message.error .modal-icon {
    color: var(--accent-color);
    text-shadow: 0 4px 10px rgba(228, 0, 43, 0.15);
}

.modal-message.error h3 {
    color: var(--accent-color);
}

.modal-message.error .message-text {
    color: var(--accent-color);
    opacity: 0.9;
}

.modal-message.error .modal-content {
    border-top: 4px solid var(--accent-color);
    background: rgba(228, 0, 43, 0.03);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-social a.whatsapp {
    background-color: #25D366;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-subscribe {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--body-font);
    font-size: 14px;
}

.subscribe-form button {
    width: 50px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background-color: rgba(228, 0, 43, 0.8);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    z-index: 99;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards 1s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.floating-cta i {
    margin-right: 10px;
    font-size: 18px;
}

.floating-cta:hover {
    background-color: #c10024;
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 70px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        margin-top: 50px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .image-secondary {
        right: 0;
    }
    
    .shortcut-content {
        grid-template-columns: 1fr;
    }
    
    .map-shortcut iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .navbar.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .image-secondary {
        width: 250px;
        height: 150px;
        bottom: -30px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shortcut-buttons {
        flex-direction: column;
    }
    
    .shortcut-buttons .btn {
        width: 100%;
    }

    /* Customer Reviews Mobile Layout */
    .reviews-container {
        flex-direction: column;
        gap: 30px;
    }

    .review-form {
        width: 100%;
    }

    .reviews-list {
        width: 100%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Modal adjustments for mobile */
    .booking-modal .modal-content,
    .phone-modal .modal-content,
    .message-content {
        padding: 25px 20px;
        width: 90%;
        max-width: 350px;
    }

    .booking-modal h2,
    .phone-modal h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .message-content i {
        font-size: 40px;
    }

    .message-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        padding: 12px 20px;
        font-size: 13px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .phone-item {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    /* Further modal adjustments for small screens */
    .booking-modal .modal-content,
    .phone-modal .modal-content,
    .message-content {
        padding: 20px 15px;
        width: 95%;
        max-width: 320px;
    }

    .booking-modal h2,
    .phone-modal h2 {
        font-size: 18px;
    }

    .message-content i {
        font-size: 40px;
    }

    .message-content h3 {
        font-size: 20px;
    }
}

/* Floating CTA Button - Mobile Responsive Adjustments */
@media (max-width: 480px) {
    .floating-cta {
        padding: 10px 16px;
        font-size: 13px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-cta i {
        font-size: 14px;
        margin-right: 6px;
    }
    
    .floating-cta span {
        display: none;
    }
    
    .floating-cta i {
        margin-right: 0;
    }
}

/* Testimonials Section - Mobile Responsive Adjustments */
.testimonials-slider {
    padding: 0 20px;
}

.testimonial-inner {
    padding: 30px;
}

.testimonial-text {
    font-size: 16px;
}

.testimonial-author {
    flex-direction: column;
    align-items: flex-start;
}

.author-img {
    margin-right: 0;
    margin-bottom: 15px;
}

.slider-nav {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 10px;
    }
    
    .testimonial-inner {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .testimonial-inner {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .testimonial-inner::before {
        font-size: 60px;
        top: 10px;
        left: 10px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .author-info p {
        font-size: 13px;
    }
    
    .slider-nav {
        margin-top: 20px;
        gap: 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Animation Enhancements */
@keyframes modalFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.modal-message.active .modal-content {
    animation: modalFadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* See More Reviews Button */
#loadMoreReviews {
    background-color: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
}

#loadMoreReviews:hover {
    background-color: #fff;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
}