*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    background: #fefdf8;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: #064e3b;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    color: #059669;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #059669;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #059669 !important;
    color: white !important;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: #047857 !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: #064e3b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 25%, #fefdf8 50%, #faf3e0 75%, #f5e9c8 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo {
    position: absolute;
    opacity: 0.12;
}

.geo-circle-1 {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #059669;
    top: -100px;
    right: -80px;
}

.geo-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #e2c76e;
    bottom: 15%;
    left: 5%;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid #10b981;
    top: 20%;
    left: 8%;
    opacity: 0.08;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: #059669;
    border-radius: 24px;
    bottom: 10%;
    right: 15%;
    transform: rotate(45deg);
    opacity: 0.07;
}

.geo-circle-3 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e2c76e;
    top: 35%;
    right: 35%;
    opacity: 0.1;
}

.geo-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #059669 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    top: 60%;
    left: 15%;
    opacity: 0.15;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #064e3b;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #059669;
}

.hero-accent {
    display: block;
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: #059669;
    color: white;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
    background: white;
    color: #064e3b;
    border: 2px solid rgba(5, 150, 105, 0.2);
}

.btn-secondary:hover {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.05);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #064e3b;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(5, 150, 105, 0.2);
    align-self: stretch;
}

.hero-image-section {
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(5, 150, 105, 0.15);
}

.hero-img-wrapper img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.hero-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    color: #064e3b;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #059669;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #059669;
    border-radius: 2px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #064e3b;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

/* ===== MENU ===== */
.menu {
    padding: 7rem 2rem;
    background: #fefdf8;
    position: relative;
    overflow: hidden;
}

.menu-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #059669, #10b981, #e2c76e, #059669);
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.menu-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.menu-card-accent {
    height: 4px;
    width: 100%;
}

.menu-card-accent-1 { background: linear-gradient(90deg, #059669, #34d399); }
.menu-card-accent-2 { background: linear-gradient(90deg, #e2c76e, #f59e0b); }
.menu-card-accent-3 { background: linear-gradient(90deg, #10b981, #059669); }
.menu-card-accent-4 { background: linear-gradient(90deg, #047857, #10b981); }

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

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

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

.menu-card-body {
    padding: 1.75rem;
}

.menu-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.menu-card-tag-2 { color: #b45309; background: rgba(226, 199, 110, 0.2); }
.menu-card-tag-3 { color: #047857; background: rgba(16, 185, 129, 0.1); }
.menu-card-tag-4 { color: #065f46; background: rgba(6, 95, 70, 0.1); }

.menu-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 0.5rem;
}

.menu-card-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.menu-card-features li svg {
    color: #059669;
    flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #fefdf8 100%);
    position: relative;
    overflow: hidden;
}

.about-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.06);
    top: -80px;
    right: -80px;
}

.about-shape-2 {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    background: rgba(226, 199, 110, 0.15);
    bottom: 10%;
    left: 3%;
    transform: rotate(30deg);
}

.about-shape-3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    top: 40%;
    right: 5%;
}

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

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid white;
}

.about-img-secondary img {
    width: 320px;
    height: 260px;
    object-fit: cover;
    display: block;
}

.about-img-secondary-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #059669;
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.about-content .section-title {
    margin-top: 0.5rem;
}

.about-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-size: 1rem;
    color: #064e3b;
    margin-bottom: 0.15rem;
}

.value-item span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 7rem 2rem;
    background: #fefdf8;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #e2c76e;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: #064e3b;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ===== LOCATION ===== */
.location {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 50%, #fefdf8 100%);
}

.location-container {
    max-width: 1280px;
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.location-info {
    padding: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
}

.location-detail strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #064e3b;
    margin-bottom: 0.25rem;
}

.location-detail p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-detail a {
    color: #059669;
    text-decoration: none;
    transition: color 0.2s;
}

.location-detail a:hover {
    color: #047857;
    text-decoration: underline;
}

.hours-box {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 1rem;
}

.hours-title svg {
    color: #059669;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: #374151;
    font-weight: 500;
}

.hours-row span:last-child {
    color: #059669;
    font-weight: 600;
}

.location-map {
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== CONTACT ===== */
.contact {
    padding: 7rem 2rem;
    background: #064e3b;
    position: relative;
    overflow: hidden;
}

.contact-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-shape-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    top: -150px;
    left: -100px;
}

.contact-shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 40px;
    background: rgba(226, 199, 110, 0.08);
    bottom: -50px;
    right: 5%;
    transform: rotate(20deg);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-content .section-label {
    color: #34d399;
}

.contact-content .section-label::before {
    background: #34d399;
}

.contact-content .section-title {
    color: white;
}

.contact-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: rgba(5, 150, 105, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #064e3b;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fefdf8;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #064e3b;
}

.form-success p {
    color: #6b7280;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #043928;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: white;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    color: #34d399;
}

.footer-logo span {
    color: #34d399;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #34d399;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #34d399;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

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

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

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-section {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-wrapper img {
        height: 450px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-secondary {
        right: 1rem;
        bottom: -1rem;
    }

    .about-img-main img {
        height: 400px;
    }

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

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(5, 150, 105, 0.1);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .menu-card-body {
        padding: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .about-img-secondary {
        display: none;
    }
}
