/* ========================================
   EL PASSADIS - Restaurant Website Styles
   ======================================== */

/* CSS Custom Properties */
:root {
    --forest-dark: #1a3c2a;
    --forest-medium: #2d5a3f;
    --forest-light: #4a7c5c;
    --forest-pale: #e8f0ea;
    --offwhite: #f7f5f0;
    --offwhite-dark: #ede9e0;
    --accent-yellow: #f4c542;
    --accent-orange: #e8943a;
    --accent-coral: #e07b5c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(26, 60, 42, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 60, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 60, 42, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--offwhite);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* Geometric Background */
.geo-shapes {
    z-index: 0;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--forest-dark);
    top: -200px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--accent-yellow);
    bottom: 10%;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.geo-square {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--forest-medium);
    opacity: 0.04;
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
    animation: spin 30s linear infinite;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--accent-coral);
    opacity: 0.05;
    top: 60%;
    left: 8%;
    animation: float 12s ease-in-out infinite;
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--forest-dark) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.08;
    top: 30%;
    left: 3%;
    animation: float 18s ease-in-out infinite;
}

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

@keyframes spin {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

/* Navbar */
.navbar {
    background: rgba(247, 245, 240, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 60, 42, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(247, 245, 240, 0.97);
    box-shadow: var(--shadow-sm);
}

.logo-link {
    display: block;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--forest-dark);
    letter-spacing: 0.05em;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-dark);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--forest-dark);
}

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

.btn-nav {
    background: var(--forest-dark);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

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

.btn-nav:hover {
    background: var(--forest-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 60;
}

.mobile-menu-btn .bar {
    width: 28px;
    height: 2px;
    background: var(--forest-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 245, 240, 0.98);
    backdrop-filter: blur(20px);
    z-index: 55;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest-dark);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--accent-yellow);
}

.mobile-cta {
    margin-top: 1rem;
    padding: 1rem 3rem !important;
    background: var(--forest-dark);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    font-size: 1.2rem !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 80px;
    min-height: 100vh;
    overflow: hidden;
}

.hero-content {
    max-width: 560px;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--forest-pale);
    border: 1px solid var(--forest-light);
    color: var(--forest-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-accent {
    color: var(--accent-yellow);
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest-dark);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--forest-medium);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-dark);
    border: 2px solid var(--forest-dark);
}

.btn-secondary:hover {
    background: var(--forest-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--forest-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--offwhite);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--forest-dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

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

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-card:hover .hero-image {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 60, 42, 0.3) 0%, transparent 40%);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card--1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.floating-card--2 {
    bottom: 25%;
    right: -30px;
    animation-delay: 1s;
}

.floating-card--3 {
    bottom: 8%;
    left: -20px;
    animation-delay: 2s;
}

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

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: var(--forest-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-dark);
    flex-shrink: 0;
}

.floating-card-icon.icon-yellow {
    background: rgba(244, 197, 66, 0.2);
    color: var(--accent-orange);
}

.floating-card-icon.icon-accent {
    background: rgba(224, 123, 92, 0.2);
    color: var(--accent-coral);
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.fc-number {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fc-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--forest-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--forest-dark), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Section Styles */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--forest-light);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-images {
    position: relative;
    max-width: 500px;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--offwhite);
}

.about-img-secondary img {
    width: 300px;
    height: 350px;
    object-fit: cover;
}

.about-accent-block {
    position: absolute;
    top: -20px;
    right: 30%;
    background: var(--accent-yellow);
    color: var(--forest-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.accent-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--forest-dark);
    border-radius: 50%;
    opacity: 0.1;
    top: -15px;
    right: -15px;
}

.about-content {
    max-width: 500px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--forest-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-dark);
    flex-shrink: 0;
}

.about-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}

.divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--forest-light), transparent);
}

.divider-diamond {
    width: 12px;
    height: 12px;
    background: var(--accent-yellow);
    transform: rotate(45deg);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
}

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

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.menu-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(26, 60, 42, 0.06);
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--forest-pale);
}

.category-icon {
    width: 56px;
    height: 56px;
    background: var(--forest-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-dark);
}

.category-icon.icon-yellow {
    background: rgba(244, 197, 66, 0.2);
    color: var(--accent-orange);
}

.category-icon.icon-accent {
    background: rgba(224, 123, 92, 0.2);
    color: var(--accent-coral);
}

.category-icon.icon-green {
    background: var(--forest-dark);
    color: var(--accent-yellow);
}

.category-title {
    font-size: 1.4rem;
    color: var(--forest-dark);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-item {
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(26, 60, 42, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--forest-dark);
}

.item-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.menu-note {
    background: var(--forest-pale);
    border-radius: var(--radius-md);
    padding: 1.25rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
}

.note-text {
    font-size: 0.9rem;
    color: var(--forest-medium);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 60, 42, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

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

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

.gallery-item--1 { grid-column: 1 / 6; grid-row: 1; }
.gallery-item--2 { grid-column: 5 / 9; grid-row: 1; }
.gallery-item--3 { grid-column: 8 / 13; grid-row: 1; }
.gallery-item--4 { grid-column: 1 / 5; grid-row: 2; }
.gallery-item--5 { grid-column: 4 / 13; grid-row: 2; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--1 { grid-column: 1 / -1; grid-row: auto; }
    .gallery-item--2 { grid-column: 1; }
    .gallery-item--3 { grid-column: 2; }
    .gallery-item--4 { grid-column: 1; }
    .gallery-item--5 { grid-column: 2; }
    .gallery-item img {
        height: 250px;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

.cta-card {
    position: relative;
    background: var(--forest-dark);
    border-radius: var(--radius-xl);
    padding: 5rem 4rem;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(244, 197, 66, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(74, 124, 92, 0.3) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-content .section-label {
    color: var(--accent-yellow);
}

.cta-content .section-label::before {
    background: var(--accent-yellow);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-info {
    max-width: 480px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--forest-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-dark);
    flex-shrink: 0;
}

.contact-icon.icon-yellow {
    background: rgba(244, 197, 66, 0.2);
    color: var(--accent-orange);
}

.contact-icon.icon-accent {
    background: rgba(224, 123, 92, 0.2);
    color: var(--accent-coral);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--forest-dark);
}

.contact-value a:hover {
    color: var(--accent-yellow);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 520px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 60, 42, 0.06);
}

.form-title {
    font-size: 1.6rem;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--offwhite-dark);
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--offwhite);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--forest-dark);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 60, 42, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--forest-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--forest-dark);
}

.success-title {
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
}

.success-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

/* Footer */
.footer {
    background: var(--forest-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 2rem;
}

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

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-image {
        height: 550px;
    }
    
    .floating-card--1 {
        left: -10px;
    }
    
    .floating-card--2 {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image {
        height: 450px;
    }
    
    .floating-card {
        display: none;
    }
    
    .about-images {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }
    
    .about-img-secondary img {
        width: 200px;
        height: 240px;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .cta-card {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
    }
    
    .form-card {
        padding: 2rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .menu-category {
        padding: 1.5rem;
    }
}
