/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== RESET & ROOT ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --orange:     #E8621A;
    --orange-2:   #F7931E;
    --gold:       #D4A017;
    --dark:       #1A1208;
    --dark-2:     #2C1A08;
    --cream:      #FDF6EC;
    --light:      #FFF8F0;
    --gray:       #6B5C4A;
    --gray-lt:    #A8927A;
    --white:      #FFFFFF;
    --shadow-sm:  0 2px 12px rgba(232,98,26,.12);
    --shadow-md:  0 8px 32px rgba(232,98,26,.18);
    --shadow-lg:  0 20px 60px rgba(26,18,8,.15);
    --r:          16px;
    --r-lg:       24px;
    --nav-h:      88px;
    --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section.bg-light { background: var(--light); }
.section.bg-cream { background: var(--cream); }

/* ===== LOADER ===== */
.loader {
    position: fixed; inset: 0;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-inner img { width: 90px; margin: 0 auto 20px; animation: pulse 1.2s ease-in-out infinite; }
.loader-bar { width: 160px; height: 4px; background: #f0e6d8; border-radius: 99px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--orange-2)); border-radius: 99px; animation: loadBar 1s ease forwards; }
@keyframes loadBar { to { width: 100%; } }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled { height: 72px; box-shadow: var(--shadow-sm); }

.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%; padding: 0 24px;
}

.logo {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700;
    color: var(--balck);
    flex-shrink: 0;
}
.logo img { height: 74px; width: auto; object-fit: contain; }
.navbar.scrolled .logo img { height: 44px; }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu li { position: relative; }
.nav-menu a {
    display: block; padding: 8px 14px;
    font-size: 15px; font-weight: 500;
    color: var(--dark); border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); background: rgba(232,98,26,.07); }

.btn-nav {
    background: var(--orange) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 9px 22px !important;
    font-weight: 600 !important;
}
.btn-nav:hover { background: var(--dark) !important; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(232,98,26,.1);
    overflow: hidden;
    animation: dropFade .2s ease;
}
@keyframes dropFade { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { padding: 11px 18px; font-size: 14px; color: var(--dark); border-radius: 0; }
.dropdown-content a:hover { background: linear-gradient(90deg, var(--orange), var(--orange-2)); color: #fff; padding-left: 24px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-6px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    cursor: pointer; border: 2px solid transparent;
    transition: var(--transition);
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: #fff; color: var(--orange); border-color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--orange); transform: translateY(-3px); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.subtitle {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--orange);
    background: rgba(232,98,26,.1); padding: 6px 16px; border-radius: 50px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700; color: var(--dark); line-height: 1.2;
}
.section-header p { font-size: 17px; color: var(--gray); margin-top: 14px; max-width: 560px; margin-inline: auto; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg,rgba(26,18,8,.7) 0%,rgba(232,98,26,.3) 100%),
                url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1800&q=80') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
    padding-top: var(--nav-h);
    position: relative;
}
.hero::after {
    content:''; position:absolute; bottom:0; left:0; right:0; height:80px;
    background: linear-gradient(to top, var(--white), transparent);
}
.hero-content { max-width: 760px; padding: 0 24px; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.3);
    padding: 8px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 24px;
    animation: fadeDown .8s ease both;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 7vw, 76px);
    font-weight: 800; line-height: 1.1; margin-bottom: 22px;
    animation: fadeDown .8s .15s ease both;
}
.hero-content h1 span { color: var(--orange-2); }
.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 36px;
    animation: fadeDown .8s .3s ease both;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeDown .8s .45s ease both; }
.hero-scroll {
    position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    opacity: .7; animation: bob 2s ease-in-out infinite;
}
.hero-scroll-arrow { width: 20px; height: 20px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* ===== ABOUT PREVIEW (index) ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff; border-radius: var(--r);
    padding: 20px 24px; text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge-float .num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 800; line-height: 1; }
.about-badge-float p { font-size: 12px; font-weight: 600; letter-spacing: 1px; margin-top: 4px; }
.badge { display: inline-block; background: rgba(232,98,26,.12); color: var(--orange); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px; }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.5vw,40px); line-height: 1.25; margin-bottom: 16px; }
.about-content p { color: var(--gray); font-size: 16px; margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 28px 0; }
.stat-box { background: var(--cream); border-radius: var(--r); padding: 20px; text-align: center; }
.stat-box h3 { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--orange); }
.stat-box p { font-size: 12px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ===== SERVICES CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
    background: var(--white);
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,.05);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.service-card-img { position: relative; overflow: hidden; height: 220px; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--orange); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    padding: 5px 12px; border-radius: 50px;
}
.service-card-body { padding: 24px; }
.service-icon { font-size: 32px; margin-bottom: 12px; }
.service-card-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 10px; }
.service-card-body p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.service-link { color: var(--orange); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-link:hover { gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.feature-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 14px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.05);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    transform: scaleX(0); transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 44px; margin-bottom: 16px; }
.feature-num { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 800; color: var(--orange); opacity: .12; line-height: 1; margin-bottom: 12px; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--gray);font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.7; }

/* ===== MENU CATEGORIES ===== */
.menu-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.menu-tab {
    padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600;
    border: 2px solid rgba(232,98,26,.25); cursor: pointer;
    transition: var(--transition); color: var(--gray);
    background: transparent;
}
.menu-tab.active, .menu-tab:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.menu-items-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.menu-item {
    background: var(--white);
    border-radius: var(--r);
    padding: 18px 20px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.menu-item:hover { border-left-color: var(--orange); transform: translateX(4px); }
.menu-item-icon { font-size: 26px; flex-shrink: 0; }
.menu-item h4 { font-size: 18px; font-weight: 600; margin-bottom: 3px; }
.menu-item p { font-size: 15px; color: var(--gray); }

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 72px 0;
    position: relative; overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; position: relative; }
.stat-bar-item { color: #fff; }
.stat-bar-item h3 { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,60px); font-weight: 800; color: var(--orange-2); line-height: 1; }
.stat-bar-item p { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 500; margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--r); overflow: hidden;
    position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.gallery-item.tall img { height: 456px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,.8) 0%, transparent 60%);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: #fff; font-size: 14px; font-weight: 600; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.05);
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before { content: '"'; font-size: 80px; color: var(--orange); opacity: .12; font-family: Georgia,serif; position: absolute; top: 10px; left: 20px; line-height: 1; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.testimonial-card p { color: var(--gray); font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.testimonial-author h4 { font-size: 15px; font-weight: 600; }
.testimonial-author span { font-size: 12px; color: var(--gray); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
    padding: 80px 0;
    text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,48px); margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 18px; opacity: .9; margin-bottom: 36px; position: relative; }
.cta-banner .btn-outline { border-color: #fff; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 48px; height: 48px; background: rgba(232,98,26,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-detail h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 15px; color: var(--gray); }
.contact-detail a:hover { color: var(--orange); }
.contact-form-wrap { background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid #E8DDD0;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--dark);
    background: var(--light);
    transition: border-color .25s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: #fff; }
.form-group textarea { height: 120px; resize: vertical; }
.contact-map { margin-top: 60px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-map iframe { width: 100%; height: 380px; border: none; }

/* ===== PAGE HEADER ===== */
.page-header {
    min-height: 380px;
    background: linear-gradient(135deg, rgba(26,18,8,.72) 0%, rgba(232,98,26,.4) 100%),
                url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1600&q=80') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
    padding-top: var(--nav-h);
}
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,6vw,60px); font-weight: 800; margin-bottom: 12px; }
.page-header p { font-size: 18px; opacity: .85; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 16px; font-size: 13px; opacity: .7; }
.breadcrumb a:hover { opacity: 1; color: var(--orange-2); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #fff; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-wrap img { height: 52px; width: auto; }
.footer-logo-wrap span { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--orange-2); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-col h4 { font-size: 15px; font-weight: 700; letter-spacing: .5px; margin-bottom: 20px; color: #fff; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange-2); padding-left: 4px; }
.contact-list li { display: flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.contact-list a { color: rgba(255,255,255,.55); }
.contact-list a:hover { color: var(--orange-2); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: var(--transition);
    font-family: sans-serif;
}
.social-links a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0; text-align: center;
    font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-bottom strong { color: var(--orange-2); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ===== ABOUT PAGE SPECIFIC ===== */
.mission-vision-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.mission-card, .vision-card {
    background: var(--white); border-radius: var(--r-lg);
    padding: 48px 40px; box-shadow: var(--shadow-sm);
    text-align: center; border-top: 4px solid var(--orange);
}
.mission-card h3, .vision-card h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--orange); margin-bottom: 16px; }
.mission-card p, .vision-card p { color: var(--gray); line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value-item { background: var(--white); border-radius: var(--r-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.value-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-item h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 15px; }
.value-item p { color: var(--gray); font-size: 15px; line-height: 1.75; }

/* ===== SERVICES PAGE SPECIFIC ===== */
.service-detail { margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid #F0E6D8; }
.service-detail:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-content h2 { font-family: 'Playfair Display', serif; font-size: 34px; margin-bottom: 16px; }
.service-detail-content p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.service-features { margin: 24px 0; }
.service-features li { padding: 10px 0 10px 32px; position: relative; color: var(--gray); border-bottom: 1px solid #F5EDE3; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: 16px; }
.service-detail-image img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* ===== GALLERY PAGE SPECIFIC ===== */
.gallery-filter { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 9px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; border: 2px solid rgba(232,98,26,.25); cursor: pointer; transition: var(--transition); color: var(--gray); background: transparent; }
.filter-btn.active, .filter-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.gallery-page-grid { columns: 4; column-gap: 16px; }
.gallery-page-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer; }
.gallery-page-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-page-item:hover img { transform: scale(1.04); }
.gallery-page-overlay { position: absolute; inset: 0; background: rgba(26,18,8,.5); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-page-item:hover .gallery-page-overlay { opacity: 1; }
.gallery-page-overlay span { color: #fff; font-size: 28px; }
/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 80vw; max-height: 82vh; border-radius: var(--r); object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 28px; font-size: 40px; color: #fff; cursor: pointer; line-height: 1; z-index: 10001; }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 56px; line-height: 1; cursor: pointer; padding: 8px 18px; border-radius: 50%; z-index: 10001; transition: background 0.2s; user-select: none; }
.lightbox-arrow:hover { background: rgba(255,255,255,0.35); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 14px; letter-spacing: 1px; }
@media (max-width: 600px) { .lightbox-arrow { font-size: 36px; padding: 6px 12px; } .lightbox-prev { left: 6px; } .lightbox-next { right: 6px; } .lightbox img { max-width: 92vw; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid, .features-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .gallery-page-grid { columns: 3; }
    .stats-bar-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
    .testimonials-grid { grid-template-columns: repeat(2,1fr); }
    .menu-items-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    :root { --nav-h: 72px; }
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: #fff; flex-direction: column; align-items: stretch;
        padding: 16px 20px 28px; gap: 4px;
        transform: translateY(-110%); opacity: 0;
        transition: var(--transition);
        box-shadow: 0 16px 40px rgba(0,0,0,.12);
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; }
    .nav-menu a { padding: 12px 16px; }
    .dropdown-content { position: static; box-shadow: none; border: none; background: var(--light); border-radius: var(--r); margin-top: 4px; display: none; }
    .dropdown.open .dropdown-content { display: block; }
    .btn-nav { text-align: center; margin-top: 8px; }
    .about-grid, .contact-grid, .service-detail-grid, .service-detail-grid.reverse, .mission-vision-grid, .values-grid { grid-template-columns: 1fr; direction: ltr; }
    .service-detail-grid.reverse > * { direction: ltr; }
    .about-badge-float { right: 0; bottom: -16px; }
    .services-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid, .gallery-page-grid { columns: 2; }
    .gallery-grid { display: block; }
    .gallery-item img { height: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-bar-grid { grid-template-columns: repeat(2,1fr); }
    .menu-items-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .about-stats { grid-template-columns: 1fr; }
    .gallery-page-grid { columns: 1; }
    .stats-bar-grid { grid-template-columns: 1fr; }
}
