/* ============================================================
   TOMARA CATERING — La Bella Cucina Design System
   Sıcak, lüks, yiyecek odaklı tasarım
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
    /* Sıcak Gıda Markası Paleti */
    --primary:   #1A1208;        /* Derin espresso siyahı */
    --secondary: #2D1F0E;        /* Sıcak koyu kahve */
    --accent:    #D4622A;        /* Terrakota/yanmış portakal */
    --accent2:   #4B7C54;        /* Adaçayı yeşili - tazelik */
    --gold:      #C8973A;        /* Sıcak altın - lüks */
    --cream:     #FAF7F0;        /* Sıcak krem - ekmek hamuru */
    --cream2:    #F0E8D6;        /* Daha derin krem */
    --neutral:   #FAF7F0;
    --warm-bg:   #FAF7F0;
    --dark:      #1A1208;
    --text:      #1A1208;
    --muted:     #8B7D6B;        /* Sıcak gri-kahve */
    --white:     #FFFFFF;
    --border:    #E8DDD0;        /* Sıcak bej kenarlık */

    --font-body:    'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    --ease: cubic-bezier(.4,0,.2,1);
    --t:    all .3s var(--ease);
    --sh-sm: 0 2px 8px rgba(26,18,8,.06);
    --sh-md: 0 8px 24px rgba(26,18,8,.10);
    --sh-lg: 0 16px 48px rgba(26,18,8,.14);
    --sh-xl: 0 24px 64px rgba(26,18,8,.20);
    --r: 16px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.7; overflow-x: hidden; background: var(--cream); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---- ERİŞİLEBİLİRLİK: İçeriğe Geç ---- */
.skip-to-content {
    position: absolute; top: -100%; left: 1rem;
    background: var(--accent); color: var(--white);
    padding: .75rem 1.5rem; border-radius: 0 0 8px 8px;
    font-weight: 700; font-size: .95rem; z-index: 99999;
    transition: top .2s ease;
}
.skip-to-content:focus { top: 0; }

/* ---- MOBİL MENU BACKDROP ---- */
.mobile-backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(26,18,8,.55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 998;
}
.mobile-backdrop.active { display: block; }

/* ---- STİCKY CTA BUTONU ---- */
.sticky-cta-btn {
    position: fixed; bottom: 1.8rem; left: 1.8rem; z-index: 900;
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--accent); color: var(--white);
    padding: .75rem 1.5rem; border-radius: 50px;
    font-weight: 700; font-size: .9rem;
    box-shadow: 0 4px 20px rgba(212,98,42,.45);
    opacity: 0; visibility: hidden;
    transform: translateY(12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease),
                visibility .35s, background .25s ease, box-shadow .25s ease;
}
.sticky-cta-btn.visible {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.sticky-cta-btn:hover {
    background: var(--primary);
    box-shadow: 0 8px 28px rgba(26,18,8,.3);
    transform: translateY(-3px);
}
@media (max-width: 480px) {
    .sticky-cta-btn { font-size: .8rem; padding: .65rem 1.1rem; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: var(--t);
}
.navbar.scrolled {
    background: rgba(250,247,240,.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(26,18,8,.08);
    padding: 0.7rem 0;
}
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo { display: flex; align-items: center; }
.logo-img {
    height: 110px; width: auto; max-width: 320px;
    object-fit: contain; transition: var(--t);
}
.logo-light { display: block; filter: brightness(0) invert(1); }
.logo-dark  { display: none; }
.navbar.scrolled .logo-light { display: none; }
.navbar.scrolled .logo-dark  { display: block; filter: none; }

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link {
    color: rgba(255,255,255,.92);
    font-weight: 500; font-size: .92rem;
    position: relative; transition: var(--t);
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: var(--t);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-link:hover { color: var(--accent); }
.navbar.scrolled .nav-link.active::after { background: var(--accent); }

/* CTA nav link */
.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212,98,42,.3);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--primary); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,18,8,.25); }

/* Mobile toggle */
.mobile-toggle {
    display: none; flex-direction: column; gap: .32rem;
    background: transparent; border: none; cursor: pointer; padding: .5rem;
}
.mobile-toggle span {
    width: 26px; height: 2.5px;
    background: var(--white); border-radius: 2px; transition: var(--t);
}
.navbar.scrolled .mobile-toggle span { background: var(--text); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; height: 100vh; min-height: 720px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: var(--white);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('../images/ana-gorsel.jpg');
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        155deg,
        rgba(26,18,8,.28) 0%,
        rgba(26,18,8,.55) 50%,
        rgba(26,18,8,.82) 100%
    );
}
.hero-content { position: relative; z-index: 2; width: 100%; }

.hero-badge {
    display: inline-flex; align-items: center; gap: .6rem;
    background: rgba(26,18,8,.58);
    border: 1px solid rgba(200,151,58,.55);
    color: var(--gold);
    padding: .45rem 1.2rem; border-radius: 50px;
    font-size: .85rem; font-weight: 600; letter-spacing: .5px;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.hero-badge i { color: var(--gold); }

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700; line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero-title em {
    font-family: var(--font-display);
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 680px;
    color: rgba(255,255,255,.82);
    line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-subtitle strong { color: var(--gold); font-weight: 700; }

.hero-buttons { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
    display: inline-flex; align-items: center; gap: 2rem; flex-wrap: wrap;
    background: rgba(26,18,8,.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200,151,58,.2);
    border-radius: var(--r);
    padding: 1.2rem 2rem;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat span { font-size: .8rem; opacity: .8; letter-spacing: .5px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(200,151,58,.25); }

.scroll-down-btn {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    width: 48px; height: 48px;
    border: 2px solid rgba(200,151,58,.4); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(200,151,58,.8); font-size: 1rem;
    animation: bounce-down 2s ease-in-out infinite;
    transition: var(--t);
}
.scroll-down-btn:hover { border-color: var(--gold); color: var(--gold); }
@keyframes bounce-down {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: .65rem;
    padding: .9rem 2.2rem; border-radius: 50px;
    font-family: var(--font-body); font-weight: 700; font-size: .95rem;
    border: none; cursor: pointer; transition: var(--t);
    position: relative; overflow: hidden; white-space: nowrap;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,.12); opacity: 0; transition: var(--t);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }

.btn-primary {
    background: var(--accent); color: var(--white);
    box-shadow: 0 4px 20px rgba(212,98,42,.3);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(212,98,42,.4); }

.btn-gold {
    background: var(--gold); color: var(--white);
    box-shadow: 0 4px 20px rgba(200,151,58,.35);
}
.btn-gold:hover { background: #B8842A; box-shadow: 0 8px 24px rgba(200,151,58,.45); }

.btn-outline-white {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.45);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-block { width: 100%; justify-content: center; padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-up {
    opacity: 0; animation: fadeUp 1s var(--ease) forwards;
}
.animate-fade-up:nth-child(2) { animation-delay: .15s; }
.animate-fade-up:nth-child(3) { animation-delay: .3s; }
.animate-fade-up:nth-child(4) { animation-delay: .45s; }
.animate-fade-up:nth-child(5) { animation-delay: .6s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 0; transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { padding: 6rem 0; }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }

.section-label {
    display: inline-block;
    padding: .4rem 1.2rem;
    background: rgba(212,98,42,.1);
    color: var(--accent);
    border-radius: 50px; font-size: .8rem;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: .9rem;
}
.section-label.light {
    background: rgba(200,151,58,.15); color: var(--gold);
}
.section-title {
    font-family: var(--font-body);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700; line-height: 1.3; margin-bottom: .9rem;
}
.section-title em {
    font-family: var(--font-display);
    color: var(--accent);
    font-style: italic;
}
.section-title.light em { color: var(--gold); }
.section-title.light { color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: var(--muted); max-width: 600px; }
.section-subtitle.light { color: rgba(255,255,255,.7); }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ============================================================
   STATS — Dramatik koyu şerit
   ============================================================ */
.stats-section {
    background: var(--primary); padding: 4rem 0;
    margin-top: -3.5rem; position: relative; z-index: 3;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    background: rgba(255,255,255,.06);
    border-radius: var(--r); overflow: hidden;
    border: 1px solid rgba(200,151,58,.12);
}
.stat-card {
    background: transparent; padding: 2.8rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,.06);
    text-align: center; transition: var(--t);
    border-radius: 0;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(200,151,58,.08); }
.stat-icon {
    width: 58px; height: 58px; margin: 0 auto 1.2rem;
    background: rgba(200,151,58,.12);
    border: 1px solid rgba(200,151,58,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--gold);
    transition: var(--t);
}
.stat-card:hover .stat-icon { background: rgba(200,151,58,.2); }
.stat-number {
    font-family: var(--font-display);
    font-size: 3.4rem; font-weight: 700;
    color: var(--gold);
    margin-bottom: .4rem; line-height: 1;
}
.stat-label { color: rgba(255,255,255,.55); font-size: .9rem; font-weight: 500; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--cream); }
.about-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.about-img-wrapper {
    position: relative; border-radius: 20px; overflow: visible;
}
.about-img-wrapper img {
    width: 100%; height: 520px; object-fit: cover;
    border-radius: 20px; box-shadow: var(--sh-xl);
    transition: var(--t);
}
.about-img-wrapper:hover img { transform: scale(1.02); }
.about-img-badge {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--white);
    padding: 1rem 1.4rem; border-radius: 16px;
    display: flex; align-items: center; gap: .85rem;
    box-shadow: var(--sh-lg);
    border-left: 4px solid var(--accent2);
}
.about-img-badge i { color: var(--accent2); font-size: 2rem; }
.about-img-badge strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text); }
.about-img-badge span { font-size: .8rem; color: var(--muted); }
.about-img-float {
    position: absolute; top: 1.8rem; left: -1.5rem;
    background: var(--accent);
    padding: .7rem 1.1rem; border-radius: 12px;
    display: flex; align-items: center; gap: .6rem;
    font-size: .85rem; font-weight: 700; color: var(--white);
    box-shadow: 0 8px 20px rgba(212,98,42,.4);
}
.about-img-float i { font-size: 1.1rem; }

.about-text .section-label { margin-bottom: .8rem; }
.about-text .section-title { margin-bottom: 1.2rem; }
.about-text > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0 2.5rem; }
.feature-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(212,98,42,.08);
    border: 2px solid rgba(212,98,42,.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--accent);
    transition: var(--t);
}
.feature-item:hover .feature-icon { background: var(--accent); color: var(--white); border-color: var(--accent); }
.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.feature-item p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--white); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.service-card {
    border-radius: 20px; overflow: hidden;
    background: var(--cream);
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border); transition: var(--t);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(212,98,42,.25); }

.service-card-img {
    position: relative; height: 200px; overflow: hidden;
}
.service-card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,.72) 0%, rgba(26,18,8,.18) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: .75; transition: var(--t);
}
.service-card:hover .service-card-overlay { opacity: .5; }
.service-card-icon {
    width: 64px; height: 64px;
    background: rgba(200,151,58,.18);
    border: 2px solid rgba(200,151,58,.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--gold);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: var(--t);
}
.service-card:hover .service-card-icon { background: var(--gold); color: var(--white); border-color: var(--gold); }

.service-card-body { padding: 1.8rem; }
.service-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .7rem; color: var(--text); }
.service-card-body > p { color: var(--muted); font-size: .92rem; margin-bottom: 1.2rem; }
.service-features { margin-bottom: 1.5rem; }
.service-features li {
    display: flex; align-items: center; gap: .65rem;
    color: var(--muted); font-size: .88rem; margin-bottom: .55rem;
}
.service-features i { color: var(--accent2); font-size: .85rem; flex-shrink: 0; }
.service-link {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--accent); font-weight: 700; font-size: .9rem;
    transition: var(--t);
}
.service-link:hover { gap: 1rem; color: var(--primary); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us-section { position: relative; overflow: hidden; }
.why-us-bg {
    position: absolute; inset: 0; z-index: 0;
    background: var(--primary);
}
.why-us-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,98,42,.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(75,124,84,.05) 0%, transparent 60%);
}
.why-us-section .container { position: relative; z-index: 1; }
.why-us-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.why-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
    transition: var(--t);
}
.why-card:hover {
    background: rgba(212,98,42,.07);
    border-color: rgba(212,98,42,.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.why-icon {
    width: 72px; height: 72px; margin: 0 auto 1.4rem;
    background: rgba(200,151,58,.1);
    border: 1.5px solid rgba(200,151,58,.28);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--gold);
    transition: var(--t);
}
.why-card:hover .why-icon {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(212,98,42,.4);
}
.why-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .8rem; }
.why-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 1rem;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: 16px; cursor: pointer;
}
.gallery-item.gallery-large { grid-row: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,.8) 0%, rgba(26,18,8,.25) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--white); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(26,18,8,.95);
    display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 85vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: rgba(255,255,255,.1);
    border: none; color: var(--white); cursor: pointer;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; transition: var(--t);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.4rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent); color: var(--white);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); }
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 3rem; align-items: start;
}
.contact-info {
    background: linear-gradient(145deg, #1A1208 0%, #2D1F0E 100%);
    padding: 3rem; border-radius: 20px; color: var(--white);
    position: sticky; top: 100px;
    border: 1px solid rgba(200,151,58,.12);
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700; margin-bottom: .8rem;
    color: var(--white);
}
.contact-info > p { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 2.2rem; }
.contact-item { display: flex; gap: 1.2rem; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(200,151,58,.1);
    border: 1px solid rgba(200,151,58,.22);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold);
}
.contact-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; color: rgba(255,255,255,.9); }
.contact-item p, .contact-item a {
    color: rgba(255,255,255,.7); font-size: .92rem;
}
.contact-item a:hover { color: var(--gold); }

.contact-socials { display: flex; gap: .8rem; margin-top: 2rem; }
.social-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: rgba(255,255,255,.65); transition: var(--t);
}
.social-btn:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); border-color: var(--accent); }

/* Contact form */
.contact-form {
    background: linear-gradient(180deg, #ffffff 0%, #fcf8f2 100%);
    padding: 2.8rem;
    border-radius: 20px; box-shadow: var(--sh-md);
    border: 1px solid #eadfce;
    position: relative;
    overflow: hidden;
}
.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
    display: block; margin-bottom: .5rem;
    font-weight: 600; font-size: .92rem; color: var(--text);
    letter-spacing: .2px;
}
.required { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: .85rem 1rem;
    border: 1.5px solid #e8dece; border-radius: 12px;
    font-family: var(--font-body); font-size: .95rem;
    transition: var(--t); background: #fff; color: var(--text);
    box-shadow: 0 1px 0 rgba(26,18,8,.03);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212,98,42,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.error, .form-group select.error, .form-group textarea.error {
    border-color: #E74C3C;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d8b68a;
}
.contact-form .btn-block {
    margin-top: .4rem;
    min-height: 52px;
    font-size: 1rem;
}
.form-note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 1rem; }
.sr-only-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Career */
.career-section { background: var(--cream); padding: 4.8rem 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary); color: var(--white); padding: 5rem 0 2rem; }
.footer-content {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem; margin-bottom: 3.5rem;
}
.footer-logo-img {
    height: 85px; width: auto; object-fit: contain;
    filter: brightness(0) invert(1); margin-bottom: 1.2rem;
}
.footer-brand p { color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 1.5rem; font-size: .92rem; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; transition: var(--t);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

.footer-col h4 { font-size: .95rem; font-weight: 700; margin-bottom: 1.4rem; color: var(--gold); letter-spacing: .5px; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a {
    color: rgba(255,255,255,.5); font-size: .9rem; transition: var(--t);
    display: flex; align-items: center; gap: .5rem;
}
.footer-col ul li a i { font-size: .7rem; color: var(--accent); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: .75rem;
    margin-bottom: .9rem; color: rgba(255,255,255,.5); font-size: .9rem;
}
.footer-contact-list i { color: var(--accent); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.5); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    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,.3); font-size: .87rem; }
.footer-credit { font-size: .9rem; opacity: .85; }
.footer-links { display: flex; gap: 1rem; align-items: center; }
.footer-links a { color: rgba(255,255,255,.3); font-size: .87rem; transition: var(--t); }
.admin-link { opacity: .3; font-size: .75rem; }
.footer-links a:hover { color: var(--accent); }
.footer-links span { color: rgba(255,255,255,.12); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-whatsapp {
    position: fixed; bottom: 5.5rem; right: 1.8rem; z-index: 900;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 6px 20px rgba(37,211,102,.4);
    transition: var(--t);
}
.floating-whatsapp:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,.5); }

.scroll-to-top {
    position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 900;
    width: 48px; height: 48px; border-radius: 50%; border: none;
    background: var(--accent); color: var(--white);
    font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden; transition: var(--t);
    box-shadow: 0 4px 16px rgba(212,98,42,.4);
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(212,98,42,.5); }

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(26,18,8,.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
    position: fixed; inset: 0; z-index: 2001;
    display: none; align-items: center; justify-content: center;
    padding: 2rem;
}
.modal.open { display: flex; }
.modal-box {
    background: var(--white); border-radius: 20px;
    padding: 3rem; max-width: 600px; width: 100%;
    max-height: 80vh; overflow-y: auto;
    position: relative; box-shadow: var(--sh-xl);
    animation: modalSlide .3s var(--ease);
}
@keyframes modalSlide { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--cream); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--muted); transition: var(--t);
}
.modal-close:hover { background: var(--accent); color: var(--white); }
.modal-box h3 {
    font-family: var(--font-display); font-size: 1.7rem;
    margin-bottom: 1.5rem; color: var(--text);
}
.modal-box p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.modal-box a { color: var(--accent); font-weight: 600; }

/* ============================================================
   NOTIFICATION
   ============================================================ */
.notification {
    position: fixed; top: 2rem; right: 2rem; z-index: 9998;
    padding: 1.1rem 1.8rem; border-radius: 14px;
    background: var(--white); box-shadow: var(--sh-xl);
    border-left: 4px solid var(--accent);
    display: flex; align-items: center; gap: .8rem;
    font-weight: 600; font-size: .95rem;
    transform: translateX(120%); opacity: 0; transition: var(--t);
    max-width: 380px;
}
.notification.show { transform: translateX(0); opacity: 1; }
.notification.error { border-color: #E74C3C; }
.notification i { font-size: 1.3rem; color: var(--accent); }
.notification.error i { color: #E74C3C; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-content { gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { position: static; }
}
@media (max-width: 768px) {
    section { padding: 4.5rem 0; }
    .mobile-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 380px;
        height: 100vh; background: var(--white); flex-direction: column;
        padding: 6rem 2rem 2rem; gap: 1.3rem;
        box-shadow: var(--sh-xl); transition: right .4s var(--ease);
    }
    .nav-menu.active { right: 0; }
    .nav-link { color: var(--text); font-size: 1.1rem; }
    .nav-cta { margin-top: .5rem; }
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-float { display: none; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }
    .gallery-item.gallery-large { grid-row: span 1; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; text-align: center; display: flex; }
    .hero-stat-divider { width: 60px; height: 1px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item { height: 220px; }
    .contact-form { padding: 1.8rem 1.2rem; }
    .footer-content { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
}
