/* ============================================
   DWARAKAMANI CATERERS - Premium Design System
   ============================================ */

:root {
    --maroon: #5C1A1B;
    --maroon-deep: #3D1112;
    --maroon-light: #8B2E2F;
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A68932;
    --ivory: #FAF8F5;
    --ivory-dark: #F0EDE8;
    --beige: #E8DFD0;
    --beige-warm: #D4C5A9;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --charcoal-mid: #3A3A3A;
    --text-dark: #1A1A1A;
    --text-body: #4A4A4A;
    --text-light: #8A8A8A;
    --text-white: #FFFFFF;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Outfit', sans-serif;
    --container-max: 1280px;
    --section-padding: 120px 0;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.text-gold { color: var(--gold); }

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 4px;
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--charcoal-mid);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    animation: preloaderFill 1.5s ease forwards;
}
@keyframes preloaderFill { to { width: 100%; } }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}
.btn:active::after { width: 300px; height: 300px; }
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--charcoal);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    height: 70px;
}
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}
.logo-svg {
    height: 52px;
    width: auto;
}
.navbar.scrolled .logo-svg { height: 44px; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 18px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--charcoal) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
}
.nav-cta:hover {
    box-shadow: var(--shadow-gold) !important;
    transform: translateY(-2px);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.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(6px, -6px); }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&q=85') center/cover no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61,17,18,0.92) 0%, rgba(26,26,26,0.88) 50%, rgba(92,26,27,0.85) 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(92,26,27,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 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='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--nav-height);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--gold); }
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 800px;
}
.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: left;
}
.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-stat .stat-plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}
.hero-stat .stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    position: relative;
}
.hero-scroll a span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ============ SECTION HEADERS ============ */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--gold);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }
.section-header .section-tag { padding-left: 0; }
.section-header .section-tag::before { display: none; }

/* ============ ABOUT ============ */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-accent img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    display: block;
}
.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--charcoal);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}
.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-top: 4px;
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
}
.about-feature i { color: var(--gold); font-size: 1rem; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.about-stat-card {
    background: var(--ivory);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}
.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}
.stat-info .stat-plus { font-size: 1rem; color: var(--gold); font-weight: 700; }
.stat-txt {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
    font-weight: 500;
}

/* ============ SERVICES ============ */
.services { background: var(--ivory); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--charcoal);
    transform: scale(1.1);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold); }
.service-link i { font-size: 0.75rem; transition: var(--transition); }

/* ============ MENU ============ */
.menu-section { background: var(--white); }
.menu-form {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.04);
}
.menu-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-group label i { color: var(--gold); font-size: 0.8rem; }
.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--beige);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}
.menu-tab {
    padding: 12px 24px;
    border: 2px solid var(--beige);
    border-radius: var(--radius-full);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu-tab:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.menu-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--charcoal);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.menu-tab i { font-size: 0.85rem; }

/* Menu Panels */
.menu-panels { min-height: 400px; }
.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}
.menu-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.menu-category {
    margin-bottom: 36px;
}
.category-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--beige);
    display: flex;
    align-items: center;
    gap: 12px;
}
.category-title i { color: var(--gold); font-size: 1.1rem; }

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    background: var(--ivory);
}
.menu-item:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.05);
    transform: translateX(4px);
}
.menu-item input[type="checkbox"] { display: none; }
.item-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--beige-warm);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}
.item-check::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--charcoal);
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}
.menu-item input:checked ~ .item-check {
    background: var(--gold);
    border-color: var(--gold);
}
.menu-item input:checked ~ .item-check::after {
    opacity: 1;
    transform: scale(1);
}
.menu-item input:checked ~ .item-name {
    color: var(--gold-dark);
    font-weight: 600;
}
.item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}
.item-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    background: rgba(201,168,76,0.15);
    color: var(--gold-dark);
}
.veg-tag { background: rgba(220,53,69,0.1); color: #dc3545; }

/* Menu Summary */
.menu-summary {
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light));
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}
.summary-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.summary-header i { color: var(--gold); font-size: 1.3rem; }
.summary-header strong { color: var(--gold); }
.selected-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 24px;
}
.selected-item-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
}
.send-whatsapp {
    min-width: 320px;
    padding: 18px 40px;
}
.send-whatsapp:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============ GALLERY ============ */
.gallery-section { background: var(--ivory); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.large { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============ WHY CHOOSE US ============ */
.why-section { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.2);
    background: var(--white);
}
.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--charcoal);
    transform: rotateY(180deg);
}
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--charcoal) 50%, var(--maroon) 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.05), transparent 70%);
}
.testimonials-section .section-tag { color: var(--gold-light); }
.testimonials-section .section-tag::before { background: var(--gold-light); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-desc { color: rgba(255,255,255,0.6); }
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
    min-width: calc(33.333% - 16px);
    margin: 0 8px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 0.9rem;
}
.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1rem;
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gold);
}
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}
.testimonial-dots {
    display: flex;
    gap: 8px;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}
.testimonial-dot.active {
    background: var(--gold);
    width: 32px;
}

/* ============ FAQ ============ */
.faq-section { background: var(--ivory); }
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}
.faq-item.active {
    border-color: rgba(201,168,76,0.3);
    box-shadow: var(--shadow-md);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i {
    color: var(--gold);
    font-size: 0.85rem;
    transition: var(--transition);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* ============ CONTACT ============ */
.contact-section { background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--ivory);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}
.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}
.whatsapp-icon { color: #25D366; background: rgba(37,211,102,0.1); }
.contact-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-card a, .contact-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
.contact-card a:hover { color: var(--gold); }
.contact-map {
    margin-top: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.contact-map iframe {
    width: 100%;
    display: block;
}
.contact-form-wrapper {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.04);
}
.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}
.contact-form .form-group { margin-bottom: 16px; }

/* ============ FLOATING BUTTONS ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}
.call-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.1rem;
    z-index: 999;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}
.call-float:hover { transform: scale(1.1); }

/* ============ FOOTER ============ */
.footer {
    background: var(--charcoal);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo .logo-svg { height: 52px; width: auto; }
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-contact i { color: var(--gold); font-size: 0.85rem; width: 16px; }
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    :root { --section-padding: 80px 0; }
    .about-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .testimonial-card { min-width: calc(50% - 16px); }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px 0; --nav-height: 70px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-menu.active { right: 0; }
    .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-cta { margin-top: 16px; text-align: center; }
    .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
    .hero-stats { gap: 28px; }
    .hero-stat .stat-number { font-size: 2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-main .about-img-placeholder { height: 300px; }
    .about-experience-badge { top: auto; bottom: 20px; left: 20px; padding: 16px; }
    .exp-number { font-size: 1.8rem; }
    .about-features { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .menu-tabs { gap: 6px; }
    .menu-tab { padding: 10px 16px; font-size: 0.8rem; }
    .menu-items-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item.large { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card { min-width: calc(100% - 16px); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .menu-form { padding: 24px; }
    .contact-form-wrapper { padding: 28px; }
    .section-header { margin-bottom: 48px; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 16px; right: 16px; }
    .call-float { width: 44px; height: 44px; font-size: 1rem; bottom: 80px; right: 16px; }
    .btn { padding: 14px 28px; font-size: 0.85rem; }
    .btn-lg { padding: 16px 36px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .menu-form-grid { grid-template-columns: 1fr; }
    .menu-tab { flex: 1; justify-content: center; }
    .about-img-accent { display: none; }
}

@media (min-width: 1440px) {
    :root { --container-max: 1400px; }
}
