/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

html {
    scroll-behavior: smooth;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #22c55e, #16a34a);
    border-radius: 6px;
    border: 2px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #16a34a, #15803d);
}

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

@keyframes fadeInDelay {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }
    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeInDelay 1s ease-out 0.3s both;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.8s ease-out;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.logo h1 {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e, #16a34a, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -1px;
    animation: slideInLeft 1s ease-out;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo h1:hover {
    animation: pulse 1s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 3px;
    opacity: 0.4;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.desktop-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(34, 197, 94, 0.08);
    padding: 16px 32px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(34, 197, 94, 0.15);
    animation: slideInRight 1s ease-out 0.4s both;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

.nav-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    overflow: hidden;
}

.nav-link::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.5s ease;
}

.nav-link:hover {
    color: #16a34a;
    background: rgba(34, 197, 94, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 3px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 90%;
}

.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 22px;
    color: white;
    cursor: pointer;
    padding: 14px;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
    animation: bounceIn 1s ease-out 0.6s both;
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-3px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

.mobile-nav-link {
    display: block;
    padding: 18px 28px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    animation: fadeInUp 0.3s ease-out;
}

.mobile-nav-link:hover {
    color: #16a34a;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.08));
    border-left-color: #22c55e;
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

/* Carousel */
.carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    animation: fadeIn 1s ease-out;
}

.carousel-content p {
    font-size: 20px;
    margin-bottom: 32px;
    animation: fadeInDelay 1s ease-out 0.3s both;
}

.reservation-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #065f46;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    animation: fadeInDelay 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

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

.reservation-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(34, 197, 94, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.reservation-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.reservation-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.reservation-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

.carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Section styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, rgba(34, 197, 94, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.03) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07);
    border: 1px solid #f3f4f6;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.8s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px -10px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.2);
}

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

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.3));
}

.service-icon i {
    font-size: 48px;
    color: #22c55e;
    animation: rotateIn 0.8s ease-out 0.2s both;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-price {
    color: #22c55e;
    font-weight: 700;
    font-size: 20px;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.services-cta p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 16px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.02), transparent);
    animation: float 8s ease-in-out infinite reverse;
    pointer-events: none;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: zoomIn 0.8s ease-out;
}

.gallery-item:hover {
    box-shadow: 0 20px 60px -10px rgba(34, 197, 94, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 18px;
    transform: translateY(20px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0) scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #ccc;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.04) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #fbbf24;
    font-size: 16px;
}

.rating-summary span {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.review-card {
    background: linear-gradient(135deg, #f9fafb 0%, rgba(34, 197, 94, 0.05) 100%);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07);
    border: 1px solid #f3f4f6;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    animation: float 10s linear infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px -10px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.2);
}

.review-card:hover::before {
    opacity: 1;
}

.review-quote {
    margin-bottom: 24px;
}

.review-quote i {
    color: #22c55e;
    font-size: 40px;
    opacity: 0.7;
    animation: bounceIn 0.8s ease-out 0.3s both;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 16px;
}

.review-text {
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.6;
    font-style: italic;
}

.review-author {
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    padding-top: 16px;
}

.review-author strong {
    color: #111827;
    font-size: 18px;
    display: block;
}

.review-author span {
    color: #6b7280;
}

.reviews-cta {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.reviews-cta h3 {
    font-size: 32px;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 24px;
}

.reviews-cta p {
    color: #047857;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 18px;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, rgba(34, 197, 94, 0.05) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card,
.hours-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07);
    border: 1px solid #f3f4f6;
}

.contact-card h3,
.hours-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

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

.contact-item i {
    color: #22c55e;
    font-size: 28px;
    margin-top: 4px;
}

.contact-item div h4 {
    font-weight: 700;
    color: #111827;
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-item div a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact-item div a:hover {
    color: #16a34a;
}

.contact-item div p {
    color: #6b7280;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.hours-item span:first-child {
    color: #374151;
    font-weight: 700;
    font-size: 18px;
}

.hours-item span:last-child {
    color: #111827;
    font-weight: 600;
    font-size: 18px;
}

.hours-item .closed {
    color: #dc2626;
}

.hours-note {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hours-note p {
    color: #065f46;
    font-weight: 700;
    text-align: center;
    font-size: 18px;
}

.map-container {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07);
    border: 1px solid #f3f4f6;
    height: fit-content;
}

.map-container h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 32px;
    padding: 0 16px;
}

.map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.map-container p {
    color: #6b7280;
    line-height: 1.6;
    padding: 0 16px;
}

.contact-cta {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.primary {
    background: white;
    color: #22c55e;
}

.cta-btn.primary:hover {
    background: #f9fafb;
    color: #16a34a;
}

.cta-btn.secondary {
    background: #16a34a;
    color: white;
}

.cta-btn.secondary:hover {
    background: #15803d;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    padding: 48px 0;
}

.footer-section h3 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.footer-section h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 18px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item i {
    color: #22c55e;
    font-size: 20px;
}

.footer-contact-item a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-contact-item span {
    color: #d1d5db;
    font-size: 18px;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
}

.footer-hours-item span:first-child {
    color: #9ca3af;
    font-weight: 500;
}

.footer-hours-item span:last-child {
    color: white;
    font-weight: 600;
}

.footer-hours-item .closed {
    color: #ef4444;
}

.footer-note {
    margin-top: 24px;
    padding: 16px;
    background: linear-gradient(135deg, #065f46, #047857);
    border-radius: 12px;
    border: 1px solid #047857;
}

.footer-note p {
    color: #a7f3d0;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content p {
    color: #9ca3af;
    margin: 0;
}

/* Animation classes */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .carousel {
        height: 400px;
    }
    
    .carousel-content h2 {
        font-size: 32px;
    }
    
    .carousel-content p {
        font-size: 16px;
    }
    
    .reservation-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-card,
    .hours-card {
        padding: 24px;
    }
    
    .contact-card h3,
    .hours-card h3 {
        font-size: 24px;
    }
    
    .map-container h3 {
        font-size: 24px;
    }
    
    .contact-cta {
        padding: 32px 24px;
    }
    
    .contact-cta h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-section h3 {
        font-size: 24px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .carousel {
        height: 350px;
    }
    
    .carousel-content h2 {
        font-size: 24px;
    }
    
    .carousel-content p {
        font-size: 14px;
    }
    
    .reservation-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services,
    .gallery,
    .reviews,
    .contact {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .contact-card,
    .hours-card {
        padding: 20px;
    }
    
    .contact-cta {
        padding: 24px 16px;
    }
    
    .footer-content {
        padding: 32px 0;
    }
}