/* ===== Base & Utilities ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
}

::selection {
    background: #d1fae5;
    color: #064e3b;
}

/* ===== Navigation ===== */
.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.nav-scrolled .nav-link {
    color: #4b5563;
}

.nav-link {
    transition: color 0.2s ease;
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu-link {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #f0fdf4;
    transition: padding-left 0.2s ease;
}

.mobile-menu-link:hover {
    padding-left: 8px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #fefdf8 0%, #ecfdf5 50%, #d1fae5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-img-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 40% 50% 60%; }
}

.hero-img {
    animation: hero-img-float 6s ease-in-out infinite;
}

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

.hero-floating-card {
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card-2 {
    animation: float-delayed 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #059669;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    color: #047857;
}

/* ===== Section Base ===== */
.section {
    padding: 100px 0;
}

/* ===== Badges ===== */
.badge-emerald {
    display: inline-block;
    background: #d1fae5;
    color: #047857;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.025em;
}

/* ===== Menu Section ===== */
.menu-section {
    background: white;
}

.menu-card {
    background: #fefdf8;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.menu-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.08);
}

.menu-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #059669;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-card-content {
    padding: 24px;
}

/* ===== About Section ===== */
.about-section {
    background: linear-gradient(180deg, #ecfdf5 0%, #fefdf8 100%);
}

.about-images {
    position: relative;
    min-height: 600px;
}

.about-img-main {
    width: 100%;
}

.about-img-secondary {
    width: 60%;
    border: 6px solid #d1fae5;
}

.about-experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: white;
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-feature {
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* ===== Reviews Section ===== */
.reviews-section {
    background: white;
}

.review-card {
    background: #fefdf8;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: #d1fae5;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #059669 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #047857;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #064e3b;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

/* ===== Contact Section ===== */
.contact-section {
    background: #fefdf8;
}

.input-field {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: #374151;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
}

.input-field:focus {
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.input-field::placeholder {
    color: #9ca3af;
}

.input-field:hover {
    border-color: #d1fae5;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #d1fae5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    padding: 0;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ===== Scroll Reveal ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.revealed:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.revealed:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal.revealed:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal.revealed:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal.revealed:nth-child(6) { transition-delay: 0.5s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-images {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .hero {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-floating-card,
    .hero-floating-card-2 {
        display: none;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-images {
        min-height: 300px;
        margin-bottom: 40px;
    }
    
    .about-experience-badge {
        left: 10px;
        bottom: 20px;
    }
    
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-content .flex.items-center.gap-8 {
        justify-content: center;
    }
    
    .menu-card-img-wrapper {
        height: 180px;
    }
}
