* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e94f37;
    --secondary-color: #1a1d20;
    --accent-color: #e94f37;
    --text-dark: #f0f0f0;
    --text-light: #a8a8a8;
    --bg-dark: #0d0f11;
    --bg-section: #141719;
    --bg-card: #1e2225;
    --bg-light: #141719;
    --white: #1e2225;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-dark);
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--bg-section);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    z-index: 10;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.hero {
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    animation: fadeInUp 1s ease;
    padding: 3rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 
                 3px 3px 15px rgba(0, 0, 0, 0.8),
                 -1px -1px 2px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff6b54;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1), 
                 3px 3px 12px rgba(0, 0, 0, 0.9),
                 -1px -1px 2px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9),
                 2px 2px 10px rgba(0, 0, 0, 0.8),
                 -1px -1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #e94f37;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: #e94f37;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 79, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1d20;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.about {
    background: var(--bg-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.award-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: awardShine 3s ease-in-out infinite;
    max-width: 600px;
    width: 100%;
}

.award-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: awardGlow 4s ease-in-out infinite;
}

@keyframes awardShine {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5); }
}

@keyframes awardGlow {
    0%, 100% { transform: rotate(0deg); opacity: 0.3; }
    50% { transform: rotate(180deg); opacity: 0.6; }
}

.award-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: awardBounce 2s ease-in-out infinite;
}

@keyframes awardBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.award-icon svg {
    color: #8B4513;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.award-content {
    position: relative;
    z-index: 1;
}

.award-content h4 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.award-content p {
    font-size: 1.1rem;
    color: #654321;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.award-link:hover {
    color: #654321;
    border-bottom-color: #654321;
    transform: translateX(5px);
}

.certifications {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-badge svg {
    color: var(--primary-color);
}

.cert-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.about-image:hover img {
    transform: scale(1.05) rotate(1deg);
}

.about-image:hover {
    box-shadow: 0 15px 45px rgba(233, 79, 55, 0.3);
}

.award-banner-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.reviews-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.reviews-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.reviews-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-slider {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.review-card {
    min-width: calc(50% - 1rem);
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-author {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    font-style: italic;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(233, 79, 55, 0.3);
}

.review-nav:hover {
    background: #d44532;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(233, 79, 55, 0.5);
}

.review-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.review-prev {
    left: 0;
}

.review-next {
    right: 0;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(233, 79, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.review-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .reviews-container {
        padding: 0 50px;
    }
    
    .review-card {
        min-width: 100%;
    }
    
    .review-nav {
        width: 40px;
        height: 40px;
    }
    
    .reviews-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .reviews-container {
        padding: 0 40px;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-nav {
        width: 35px;
        height: 35px;
    }
    
    .review-nav svg {
        width: 18px;
        height: 18px;
    }
}

.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(233, 79, 55, 0.3);
    background: linear-gradient(135deg, #252a2e 0%, #1e2225 100%);
    border: 2px solid var(--primary-color);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-icon .icon-animate {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon .icon-animate {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgba(231, 76, 60, 0.4));
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.2) rotate(5deg) translateY(0); }
    50% { transform: scale(1.3) rotate(-5deg) translateY(-10px); }
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
    transform: scale(1.05);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--text-dark);
}

.service-location {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-location::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.location-header {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.location-icon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.location-icon svg {
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.location-content {
    position: relative;
    z-index: 1;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.location-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.location-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.location-feature svg {
    color: var(--white);
}

.location-feature span {
    font-weight: 600;
    font-size: 1rem;
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.location-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.location-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.location-map-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.map-consent-message {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.map-consent-message svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-consent-message h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.map-consent-message p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.map-consent-message .btn {
    margin: 0 auto;
}

.location-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.olx-button,
.fb-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fb-button {
    background: #1877f2;
    color: var(--white);
}

.olx-button::before,
.fb-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fb-button::before {
    background: rgba(255, 255, 255, 0.2);
}

.olx-button:hover::before,
.fb-button:hover::before {
    width: 300px;
    height: 300px;
}

.olx-button:hover,
.fb-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.olx-button:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.fb-button:hover {
    background: #145dbf;
}

.olx-button svg,
.fb-button svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.olx-button:hover svg,
.fb-button:hover svg {
    transform: rotate(12deg) scale(1.1);
}

.gallery {
    background: var(--bg-light);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    justify-items: center;
}

.gallery-item {
    display: flex;
    justify-content: center;
}

.gallery-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.rotating-gallery img.rotating-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.rotating-gallery img.rotating-image.active {
    opacity: 1;
}

.gallery-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 79, 55, 0.4);
}

.gallery-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-circle:hover img {
    transform: scale(1.1);
    filter: brightness(0.4);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-circle:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.calendar-section {
    background: var(--bg-dark);
    padding: 5rem 0;
}

.calendar-wrapper {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

#calendar {
    max-width: 100%;
    background: var(--bg-card);
}

.fc {
    --fc-border-color: rgba(255, 255, 255, 0.1);
    --fc-button-bg-color: var(--primary-color);
    --fc-button-border-color: var(--primary-color);
    --fc-button-hover-bg-color: #c0392b;
    --fc-button-hover-border-color: #c0392b;
    --fc-button-active-bg-color: #a93226;
    --fc-button-active-border-color: #a93226;
    --fc-today-bg-color: rgba(233, 79, 55, 0.15);
    --fc-event-bg-color: var(--primary-color);
    --fc-event-border-color: var(--primary-color);
    --fc-page-bg-color: var(--bg-card);
    --fc-neutral-bg-color: var(--bg-section);
    --fc-list-event-hover-bg-color: var(--bg-section);
}

.fc .fc-toolbar-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

.fc .fc-col-header-cell-cushion,
.fc .fc-daygrid-day-number {
    color: var(--text-dark);
}

.fc .fc-col-header-cell {
    background: var(--bg-section);
    font-weight: 600;
    border-color: rgba(255, 255, 255, 0.1);
}

.fc .fc-daygrid-day.fc-day-today {
    background: rgba(233, 79, 55, 0.1) !important;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    color: var(--primary-color);
    font-weight: 700;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border-color: rgba(255, 255, 255, 0.1);
}

.fc .fc-daygrid-day:hover {
    background: rgba(255, 255, 255, 0.05);
}

.fc .fc-daygrid-day-frame {
    background: transparent;
}

.fc-event {
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.85rem;
}

.fc .fc-button {
    font-weight: 500;
    text-transform: capitalize;
}

.calendar-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.9rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-toggle-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.calendar-toggle-btn.expanded {
    background: var(--primary-color);
    color: #fff;
}

.calendar-toggle-btn svg {
    transition: transform 0.3s ease;
}

.calendar-toggle-btn.expanded svg {
    transform: rotate(180deg);
}

.fc-list {
    border: none !important;
    background: var(--bg-card) !important;
}

.fc-list-event:hover td {
    background: rgba(233, 79, 55, 0.1) !important;
}

.fc-list-day-cushion {
    background: var(--bg-section) !important;
}

.fc-list-day-text,
.fc-list-day-side-text {
    color: var(--text-dark) !important;
    font-weight: 600;
}

.fc-list-event-time,
.fc-list-event-title {
    color: var(--text-light) !important;
}

.fc-list-empty {
    background: transparent !important;
}

.fc-list-empty-cushion {
    color: var(--text-light) !important;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.busy {
    background: var(--primary-color);
}

.legend-dot.available {
    background: #27ae60;
}

.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.event-modal.show {
    opacity: 1;
}

.event-modal-content {
    background: var(--bg-card);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.event-modal.show .event-modal-content {
    transform: scale(1);
}

.event-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-modal-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.event-modal-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.event-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.event-modal-body {
    padding: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.event-detail svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.event-detail span {
    font-size: 1rem;
    line-height: 1.6;
}

.event-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-description span {
    color: var(--text-light);
}

.event-url-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-url-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 79, 55, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s ease;
    text-decoration: none;
    gap: 10px;
    overflow: hidden;
    padding: 0;
}

.whatsapp-float:hover {
    width: auto;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.whatsapp-text {
    display: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.whatsapp-float:hover .whatsapp-text {
    display: block;
    opacity: 1;
}

.contact {
    background: var(--bg-section);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-detail {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.availability {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-form-section {
    display: flex;
    justify-content: center;
}

.brands {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.brands h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.brands-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.brand-item {
    background: var(--bg-section);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    animation: brandFloat 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.brand-item:hover::before {
    transform: scaleX(1);
}

.brand-item.vw {
    background: linear-gradient(135deg, #1a1d20 0%, #1a2530 100%);
}

.brand-item.audi {
    background: linear-gradient(135deg, #1a1d20 0%, #2a1a1a 100%);
}

.brand-item.skoda {
    background: linear-gradient(135deg, #1a1d20 0%, #1a2a1a 100%);
}

.brand-item.seat {
    background: linear-gradient(135deg, #1a1d20 0%, #2a2518 100%);
}

.brand-item.man {
    background: linear-gradient(135deg, #1a1d20 0%, #1a1f2a 100%);
}

.brand-item.bentley {
    background: linear-gradient(135deg, #1a1d20 0%, #1a2515 100%);
}

.brand-item:hover {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.brand-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.brand-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.brand-years {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.brand-badge:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.brand-badge svg {
    transition: transform 0.3s ease;
}

.brand-badge.active svg {
    transform: rotate(180deg);
}

.brand-models {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.brand-models.show {
    max-height: 300px;
    margin-top: 1rem;
    opacity: 1;
}

.brand-models ul {
    list-style: none;
    padding: 0;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
}

.brand-models li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.brand-models li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@keyframes brandFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #ffffff;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .brand-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-container {
        padding-right: 45px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-section);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .whatsapp-float {
        display: flex;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        gap: 10px;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .whatsapp-float:hover,
    .whatsapp-float:active {
        width: auto;
        padding: 12px 20px;
        border-radius: 50px;
    }
    
    .whatsapp-text {
        display: none;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s ease 0.1s;
    }
    
    .whatsapp-float:hover .whatsapp-text,
    .whatsapp-float:active .whatsapp-text {
        display: block;
        opacity: 1;
    }

    .hero {
        background: url('images/hero-bg.jpg') center/cover no-repeat;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
        height: 450px;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-text h3 {
        text-align: center;
    }

    .certifications {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-circle {
        width: 250px;
        height: 250px;
    }
    
    .brand-list {
        grid-template-columns: 1fr;
    }
    
    .brands {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }

    .cookie-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cookie-banner {
        padding: 1rem;
        bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .location-map-wrapper {
        margin: 2rem 0;
    }
    
    .location-map-wrapper iframe {
        height: 300px;
    }
    
    .map-consent-message {
        padding: 1.5rem;
    }
    
    .map-consent-message h4 {
        font-size: 1.2rem;
    }
    
    .location-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .olx-button,
    .fb-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        background: url('images/hero-bg.jpg') center/cover no-repeat;
        min-height: 60vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .brand-list {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}
