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

:root {
    --primary-yellow: #ffd700;
    --dark-yellow: #ffb300;
    --light-yellow: #ffec8b;
    --primary-navy: #1f3a93;
    --dark-navy: #162d73;
    --medium-navy: #2c5aa0;
    --accent-red: #e53935;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #1f1f1f;
    --text-light: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header and Navigation */
header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(31, 58, 147, 0.4);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 250px;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

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

.nav-menu li a {
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--primary-yellow);
    background-color: rgba(255, 215, 0, 0.1);
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Hero Section */
.hero {
    background: url('../images/hero-garage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(31, 58, 147, 0.9) 0%,
        rgba(22, 45, 115, 0.8) 30%,
        rgba(255, 215, 0, 0.1) 70%,
        rgba(31, 58, 147, 0.6) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(31, 58, 147, 0.9) 0%,
        rgba(22, 45, 115, 0.7) 50%,
        transparent 100%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    position: relative;
    left: -20%;
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}

.hero-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-navy));
    margin: 2rem 0;
    border-radius: 0;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-yellow);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    transition: all 0.25s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.25);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover,
.cta-button:focus {
    background: linear-gradient(135deg, var(--dark-yellow), var(--primary-navy));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(31, 58, 147, 0.35);
    outline: none;
}

/* Negative button style with hover effect */
.cta-button[style*="background:transparent"]:hover,
.cta-button[style*="background:transparent"]:focus {
    background: var(--primary-yellow) !important;
    color: var(--primary-navy) !important;
    border-color: var(--primary-yellow) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4) !important;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 50%, var(--medium-navy) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--primary-yellow) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, var(--dark-yellow) 0%, transparent 50%);
    opacity: 0.08;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-navy));
    margin: 1.5rem auto 1rem;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.services-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    margin-bottom: 5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    perspective: 1000px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    isolation: isolate;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    z-index: 10;
    position: relative;
}

.service-item:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.service-item:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.service-item:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(52, 168, 235, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.service-item:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4rem;
    line-height: 1;
    text-align: center;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.service-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    font-weight: 300;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* About Section - Hero Style */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--primary-yellow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--dark-yellow) 0%, transparent 50%);
    opacity: 0.03;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-img {
    height: 200px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.1);
}

.about-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2);
}

.about-text-section {
    text-align: left;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 0.9;
    text-shadow: none;
    text-transform: uppercase;
    text-align: center;
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-navy));
    margin: 1rem auto;
    border-radius: 0;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
    text-shadow: none;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text-section {
        text-align: center;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about h2::after {
        margin: 1rem auto;
    }
    
    .about-text p {
        font-size: 0.95rem;
        color: var(--text-dark);
        font-weight: 500;
        text-shadow: none;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }
    
    .about-logo-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .about h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-logo-img {
        height: 120px;
    }
}

.stat-item {
    background: var(--white);
    border: 2px solid var(--primary-yellow);
    color: var(--text-dark);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--white);
    border-color: var(--primary-yellow);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--primary-navy);
    text-shadow: none;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    line-height: 1.2;
}


/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--primary-yellow) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, var(--dark-yellow) 0%, transparent 50%);
    opacity: 0.08;
    z-index: 1;
}

.reviews .container {
    position: relative;
    z-index: 2;
}

.reviews h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.reviews h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-navy));
    margin: 1.5rem auto 1rem;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.reviews-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    margin-bottom: 5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.review-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.review-item:hover::before {
    left: 100%;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.review-avatar span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.review-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.review-stars {
    margin-bottom: 0.2rem;
}

.review-stars span {
    color: #ffd700;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.google-rating-summary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
}

.rating-info {
    margin-bottom: 2rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-right: 1rem;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    margin: 0.5rem 0;
}

.rating-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 300;
}

.google-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.google-link:hover,
.google-link:focus {
    background: linear-gradient(135deg, var(--dark-yellow), var(--primary-yellow));
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
    outline: none;
    color: var(--white);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
}

.gallery h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-navy));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 18px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.gallery-item:hover::before {
    opacity: 0.1;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox[hidden] { display: none !important; }
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: grid;
    place-items: center;
    z-index: 3000;
    padding: 2rem;
}
.lightbox-image {
    max-width: min(90vw, 1200px);
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-caption {
    color: #fff;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev,
.lightbox-next { top: 50%; transform: translateY(-50%); }

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 50%, var(--medium-navy) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--primary-yellow) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, var(--dark-yellow) 0%, transparent 50%);
    opacity: 0.08;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.contact h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-navy));
    margin: 1.5rem auto 4rem;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.contact-content {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 20px 20px 0 0;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.contact-item:hover::after {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.contact-item h3 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item h3::before {
    content: '📍';
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.contact-item:nth-child(2) h3::before {
    content: '📞';
}

.contact-item:nth-child(3) h3::before {
    content: '🕒';
}

.contact-item address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.contact-item a {
    color: var(--primary-yellow);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    text-decoration: none;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
}

.contact-item a:hover,
.contact-item a:focus {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 2.2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 25px 25px 0 0;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.contact-form h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

.form-group label {
    display: block;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 0 4px rgba(255, 215, 0, 0.2),
        0 4px 12px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--black);
    padding: 14px 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover,
.submit-btn:focus {
    background: linear-gradient(135deg, var(--dark-yellow), var(--primary-navy));
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(255, 215, 0, 0.5),
        0 8px 20px rgba(31, 58, 147, 0.2);
    outline: none;
}

/* Map */
.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    width: 100%;
    margin: 3rem auto 0;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 25px 25px 0 0;
    z-index: 2;
}

.map-container:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.map-container iframe {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    text-align: left;
    padding: 3rem 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
}

footer p { opacity: 0.9; font-size: 1rem; font-weight: 300; letter-spacing: 0.5px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo { height: 50px; width: auto; margin-bottom: 0.8rem; filter: brightness(1.15) contrast(1.1); }
.footer-tagline { margin: 0.4rem 0; opacity: 0.9; }
.footer-address, .footer-contact { margin: 0.2rem 0; opacity: 0.85; }
.footer-contact a { color: var(--primary-yellow); font-weight: 600; }
.footer-contact a:hover { color: var(--white); text-decoration: underline; }

.footer-logos-title { font-size: 1.1rem; margin-bottom: 0.8rem; font-weight: 700; }
.brand-logos { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; padding: 0; margin: 0 0 0.6rem 0; }
.brand-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.3px;
}
.footer-note { font-size: 0.85rem; opacity: 0.7; }

.footer-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }

.footer-bottom { text-align: center; padding: 1.5rem 0 2.5rem; opacity: 0.8; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { padding-top: 2.2rem; }
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    z-index: 2000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    padding: 1rem 0;
}

.cookie-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
}

.cookie-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-link {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
}

.btn {
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary { background: var(--primary-yellow); color: var(--black); }
.btn-secondary { background: var(--medium-navy); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); outline: 2px solid var(--white); }

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: grid;
    place-items: center;
    z-index: 2100;
    padding: 1rem;
}

/* Ensure [hidden] truly hides components */
[hidden] { display: none !important; }

.cookie-modal-box {
    background: var(--primary-navy);
    color: var(--white);
    width: 100%;
    max-width: 680px;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(31, 58, 147, 0.6);
}

.cookie-modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cookie-form {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0;
}

.cookie-option {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 0.9rem;
}

.cookie-option .option-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cookie-option small {
    color: rgba(255,255,255,0.75);
}

.cookie-modal-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-content { grid-template-columns: 1fr; gap: 0.8rem; }
    .cookie-actions { justify-content: flex-start; flex-wrap: wrap; }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(31, 58, 147, 0.4);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 48px;
        max-width: 220px;
    }

    /* Hero adjustments */
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 120px 20px 80px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero::after {
        display: none;
    }

    .hero .container {
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 80vh;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
        position: relative;
        left: 0;
        width: 100%;
    }

    .hero-content h2 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-content h2::after {
        width: 50px;
        height: 4px;
        margin: 1.5rem auto;
        display: block;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 0.2px;
        max-width: 100%;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center !important;
        text-align: center;
        width: 100%;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Section titles - Center all on mobile */
    .services h2,
    .reviews h2,
    .gallery h2,
    .contact h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .services-grid {
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .service-item {
        padding: 1.5rem 1rem;
        margin: 0;
        min-height: 240px;
        aspect-ratio: auto;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        line-height: 1;
        text-align: center;
    }

    .service-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .about h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .about-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        color: var(--text-dark);
        font-weight: 500;
        text-shadow: none;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-top: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 1.2rem 0.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }



    .reviews-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .reviews-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .review-item {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .review-header {
        margin-bottom: 1.2rem;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }

    .review-avatar span {
        font-size: 1rem;
    }

    .review-info h4 {
        font-size: 1rem;
    }

    .review-stars span {
        font-size: 0.9rem;
    }

    .review-text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .google-rating-summary {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        margin-top: 2rem;
    }

    .rating-score {
        font-size: 2.5rem;
    }

    .rating-stars {
        font-size: 1.3rem;
    }

    .google-link {
        padding: 12px 25px;
        font-size: 0.9rem;
    }


    
    .contact {
        padding: 100px 0;
    }

    .contact-content {
        display: block; /* Change from grid to block for better mobile flow */
        gap: 0;
        margin: 0 0.5rem;
    }
    
    .contact-info {
        display: block;
        gap: 0;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem 1rem;
        margin: 0 0 1rem 0;
        border-radius: 12px;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        gap: 0.6rem;
    }
    
    .contact-item h3::before {
        font-size: 0.9rem;
    }

    /* Contact form mobile optimizations */
    .contact-form {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        -webkit-appearance: none; /* Remove iOS styling */
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .submit-btn {
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 10px;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .map-container {
        margin: 2rem 1rem 0;
        max-width: calc(100% - 2rem);
    }
}

/* Tablet Styles (769px to 1024px) */
@media (min-width: 769px) {
    .services h2 {
        font-size: 3.2rem;
        margin-bottom: 2rem;
    }

    .services-subtitle {
        font-size: 1.2rem;
        margin-bottom: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }

    .service-item {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }

    .service-icon {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
        height: 3.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        line-height: 1;
        text-align: center;
    }

    .service-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }

    .about h2 {
        font-size: 3.2rem;
        margin-bottom: 2rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
        margin-bottom: 4rem;
    }

    .about-text {
        padding: 2.5rem 2rem;
    }

    .about-text p {
        font-size: 1.05rem;
        color: var(--text-dark);
        font-weight: 500;
        text-shadow: none;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 700px;
    }

    .stat-item {
        padding: 1.5rem 1.2rem;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .reviews h2 {
        font-size: 3.2rem;
        margin-bottom: 2rem;
    }

    .reviews-subtitle {
        font-size: 1.2rem;
        margin-bottom: 4rem;
    }

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

    .review-item {
        padding: 2.2rem 1.8rem;
    }

    .review-avatar {
        width: 45px;
        height: 45px;
    }

    .review-avatar span {
        font-size: 1.1rem;
    }

    .review-info h4 {
        font-size: 1.05rem;
    }

    .review-text {
        font-size: 0.98rem;
    }

    .google-rating-summary {
        padding: 2.2rem 2rem;
    }

    .rating-score {
        font-size: 2.8rem;
    }

    .rating-stars {
        font-size: 1.4rem;
    }

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

    .contact h2 {
        font-size: 3.2rem;
        margin-bottom: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        max-width: 800px;
    }
    
    .map-container {
        margin: 2.5rem auto 0;
        max-width: 900px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.6rem 1.4rem;
    }
    
    .contact-form {
        padding: 2rem 1.8rem;
    }
}

/* Desktop Styles (1025px and up) */
@media (min-width: 1025px) {
    .logo-img {
        height: 60px;
        max-width: 280px;
    }

    .hero .container {
        justify-content: flex-start;
        padding-left: 2%;
    }

    .hero-content {
        max-width: 700px;
        margin-left: 0;
        margin-right: auto;
        position: relative;
        left: -25%;
    }

    .hero-content h2 {
        font-size: 5.5rem;
        margin-bottom: 2.5rem;
        line-height: 0.85;
    }

    .hero-content h2::after {
        width: 80px;
        height: 6px;
        margin: 2.5rem 0;
    }

    .hero-content p {
        font-size: 1.6rem;
        margin-bottom: 3.5rem;
        max-width: 550px;
    }

    .cta-button {
        padding: 20px 50px;
        font-size: 1.2rem;
    }

    .services h2 {
        font-size: 4rem;
        margin-bottom: 2.5rem;
    }

    .services-subtitle {
        font-size: 1.5rem;
        margin-bottom: 6rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-item {
        padding: 2.5rem 1.8rem;
        min-height: 320px;
        max-width: 280px;
        margin: 0 auto;
    }

    .service-icon {
        font-size: 3.5rem;
        margin-bottom: 1.8rem;
        height: 4.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        line-height: 1;
        text-align: center;
    }

    .service-item h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        line-height: 1.1;
    }

    .service-item p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .about h2 {
        font-size: 4rem;
        margin-bottom: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
        margin-bottom: 6rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 900px;
    }

    .about-text {
        padding: 4rem 3rem;
    }

    .about-text p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: var(--text-dark);
        font-weight: 500;
        text-shadow: none;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 2rem;
        max-width: 100%;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .reviews h2 {
        font-size: 4rem;
        margin-bottom: 2.5rem;
    }

    .reviews-subtitle {
        font-size: 1.5rem;
        margin-bottom: 6rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto 5rem;
    }

    .review-item {
        padding: 3rem 2.5rem;
    }

    .review-header {
        margin-bottom: 2rem;
    }

    .review-avatar {
        width: 55px;
        height: 55px;
        margin-right: 1.2rem;
    }

    .review-avatar span {
        font-size: 1.3rem;
    }

    .review-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .review-stars span {
        font-size: 1.1rem;
    }

    .review-date {
        font-size: 1rem;
    }

    .review-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .google-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .google-rating-summary {
        padding: 3rem 2.5rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .rating-score {
        font-size: 3.5rem;
    }

    .rating-stars {
        font-size: 1.8rem;
    }

    .rating-count {
        font-size: 1.1rem;
    }

    .google-link {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .contact h2 {
        font-size: 4rem;
        margin-bottom: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
        align-items: start;
        max-width: 1000px;
    }
    
    .map-container {
        margin: 3rem auto 0;
        max-width: 1200px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem 1.6rem;
    }
    
    .contact-form {
        padding: 2.5rem 2rem;
    }
    
    .contact-form h3 {
        font-size: 1.9rem;
    }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
    }

    .gallery-item img {
        height: 320px;
    }
}

/* Extra Large Desktop Styles (1400px and up) */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
    }

    .gallery-item img {
        height: 280px;
    }
}

/* Floating Action Buttons Container */
.floating-buttons {
    position: fixed;
    top: 120px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 1000;
}

/* Call Button */
.call-float {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.call-float:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.6);
    color: white;
}

.call-float:focus {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 3px;
}

/* WhatsApp Button */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float:focus {
    outline: 3px solid rgba(37, 211, 102, 0.5);
    outline-offset: 3px;
}

/* Instagram Button */
.instagram-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(188, 24, 136, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.instagram-float:hover {
    background: linear-gradient(45deg, #d17711 0%,#c44f1f 25%,#b01c2b 50%,#a01848 75%,#8f0f6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.6);
    color: white;
}

.instagram-float:focus {
    outline: 3px solid rgba(188, 24, 136, 0.5);
    outline-offset: 3px;
}

/* SVG styling for all buttons */
.call-float svg,
.whatsapp-float svg,
.instagram-float svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.call-float:hover svg,
.whatsapp-float:hover svg,
.instagram-float:hover svg {
    transform: scale(1.1);
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        top: 100px;
        right: 20px;
        gap: 6px;
    }
    
    .call-float,
    .whatsapp-float,
    .instagram-float {
        width: 55px;
        height: 55px;
    }
    
    .call-float svg,
    .whatsapp-float svg,
    .instagram-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        top: 90px;
        right: 15px;
        gap: 5px;
    }
    
    .call-float,
    .whatsapp-float,
    .instagram-float {
        width: 50px;
        height: 50px;
    }
    
    .call-float svg,
    .whatsapp-float svg,
    .instagram-float svg {
        width: 22px;
        height: 22px;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .menu-toggle,
    .cta-button,
    .contact-form,
    .map-container,
    .floating-buttons {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero {
        background: none;
        color: black;
        padding: 20px 0;
    }

    .hero-content h2 {
        color: black;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}