/* ============================================================
   ARASAN COFFEE — style.css
   Premium Coffee Shop · Clean Production-Grade CSS
   ============================================================ */

/* ========================
   CSS VARIABLES
======================== */
:root {
    --primary:        #2b1e16;
    --secondary:      #6f4e37;
    --accent:         #c8a27c;
    --accent-light:   #e8d5b7;
    --bg:             #f8f5f2;
    --bg-dark:        #1a1008;
    --text:           #222222;
    --text-light:     #666666;
    --white:          #ffffff;
    --shadow:         0 8px 32px rgba(43, 30, 22, 0.12);
    --shadow-hover:   0 16px 48px rgba(43, 30, 22, 0.22);
    --radius:         16px;
    --radius-sm:      8px;
    --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading:   'Playfair Display', Georgia, serif;
    --font-body:      'Poppins', sans-serif;
}

/* ========================
   GLOBAL RESET & BASE
======================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Prevent container overflow on small screens */
.container, .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-padding {
    padding: 96px 0;
}

/* ========================
   ACCENT COLOR
======================== */
.accent {
    color: var(--accent);
}

/* ========================
   BUTTONS
======================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(43, 30, 22, 0.35);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.6);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-order {
    background: linear-gradient(135deg, var(--accent), #b8864a);
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 162, 124, 0.5);
    color: var(--primary) !important;
}

/* ========================
   SECTION HEADER
======================== */
.section-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 56px;
}

/* ========================
   NAVBAR
======================== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: var(--primary);
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 6px 12px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent) !important;
}

/* ========================
   HAMBURGER BUTTON
======================== */
.hamburger-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
    position: relative;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================
   MOBILE MENU
======================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    z-index: 1100;
    padding: 40px 28px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    right: 0;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    align-self: flex-end;
    padding: 4px 8px;
    transition: var(--transition);
}

.mobile-close-btn:hover {
    color: var(--accent);
}

.mobile-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin: 24px 0 32px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

.mobile-nav-link i {
    width: 18px;
    color: var(--accent);
}

/* ========================
   HERO SECTION
======================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1559056199-641a0ac8b55e?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 16, 8, 0.88) 40%, rgba(43, 30, 22, 0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 162, 124, 0.18);
    border: 1px solid rgba(200, 162, 124, 0.45);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cup-wrapper {
    position: relative;
    max-width: 420px;
    width: 100%;
}

.hero-cup-img {
    width: 100%;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
    animation: floatCup 4s ease-in-out infinite;
}

.hero-cup-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(200, 162, 124, 0.4), transparent 70%);
    filter: blur(12px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes floatCup {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ========================
   ABOUT SECTION
======================== */
.about-section {
    background: var(--white);
}

.about-img-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent), #b8864a);
    color: var(--primary);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.about-img-badge i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.about-content .section-title {
    margin-top: 8px;
}

.about-text {
    color: var(--text-light);
    font-size: 0.97rem;
    margin-bottom: 18px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.highlight-item h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================
   MENU SECTION
======================== */
.menu-section {
    background: var(--bg);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.menu-tab {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--accent-light);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(111, 78, 55, 0.3);
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.menu-card-header {
    padding: 28px 24px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-card-header i {
    font-size: 1.8rem;
    color: var(--white);
}

.menu-card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.menu-card-header.tea { background: linear-gradient(135deg, #5e8d6e, #3a6b4a); }
.menu-card-header.coffee { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.menu-card-header.baked { background: linear-gradient(135deg, #b5874a, #8c5e28); }
.menu-card-header.fried { background: linear-gradient(135deg, #c0612f, #923c18); }
.menu-card-header.snacks { background: linear-gradient(135deg, #7b6d3e, #5a4d22); }
.menu-card-header.beverages { background: linear-gradient(135deg, #3a7d9c, #1e5570); }

.menu-items-list {
    padding: 20px 24px 24px;
}

.menu-items-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.93rem;
    color: var(--text);
    border-bottom: 1px dashed var(--accent-light);
    transition: var(--transition);
}

.menu-items-list li:last-child {
    border-bottom: none;
}

.menu-items-list li:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.menu-items-list li i {
    color: var(--accent);
    font-size: 0.5rem;
    flex-shrink: 0;
}

.menu-item.hidden {
    display: none;
}

/* ========================
   SPECIALS SECTION
======================== */
.specials-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.specials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 162, 124, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.specials-section .section-tag {
    background: rgba(200, 162, 124, 0.2);
    color: var(--accent);
}

.specials-section .section-title {
    color: var(--white);
}

.specials-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.special-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200, 162, 124, 0.2);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.special-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.special-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent), #b8864a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.special-card:hover .special-icon {
    transform: scale(1.1) rotate(8deg);
}

.special-card h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.special-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
}

/* ========================
   GALLERY SECTION
======================== */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.gi-large {
    grid-row: span 2;
}

.gallery-item.gi-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 30, 22, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(43, 30, 22, 0.55);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* ========================
   REVIEWS SECTION
======================== */
.reviews-section {
    background: var(--bg);
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--accent-light);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.review-stars i {
    color: #f4b942;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--accent-light);
    padding-top: 18px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin: 0 0 3px;
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========================
   CONTACT SECTION
======================== */
.contact-section {
    background: var(--white);
}

.contact-info-card,
.contact-form-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info-card h4,
.contact-form-card h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-light);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.93rem;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--accent);
    font-size: 0.88rem;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background: var(--white);
    border: 2px solid var(--accent-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 162, 124, 0.15);
}

.input-wrapper.textarea-wrapper {
    align-items: flex-start;
}

.input-wrapper.textarea-wrapper i {
    top: 14px;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 130px;
}

/* ========================
   FOOTER
======================== */
#footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.75);
}

.footer-top {
    padding: 80px 0 48px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-list li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom p i {
    color: #e25555;
}

/* ========================
   SCROLL TOP BUTTON
======================== */
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(111, 78, 55, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

/* ========================
   WHATSAPP FLOAT
======================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: var(--white);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ========================
   FADE-IN ANIMATIONS
======================== */
.fade-in,
.fade-in-right {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right {
    transform: translateX(32px);
}

.fade-in.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-rows: 200px 200px;
    }
}

/* ========================
   RESPONSIVE — TABLET (≤991px)
======================== */
@media (max-width: 991px) {
    .section-padding {
        padding: 72px 0;
    }

    .hero-image-col {
        display: none;
    }

    .hero-content {
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-img-badge {
        right: 10px;
        bottom: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 200px 200px 200px;
    }

    .gallery-item.gi-large {
        grid-row: span 1;
    }

    .gallery-item.gi-wide {
        grid-column: span 2;
    }

    /* Specials cards */
    .special-card {
        padding: 32px 20px;
    }
}

/* ========================
   RESPONSIVE — MOBILE (≤767px)
======================== */
@media (max-width: 767px) {
    .section-padding {
        padding: 56px 0;
    }

    /* Typography */
    .section-title {
        font-size: 1.85rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Hero */
    .hero-content {
        padding: 110px 0 60px;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: 2.1rem;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 0.97rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .stat-divider {
        height: 32px;
    }

    /* About */
    .about-img-main img {
        height: 280px;
    }

    .about-img-badge {
        width: 82px;
        height: 82px;
        font-size: 0.65rem;
        right: 8px;
        bottom: 8px;
    }

    .about-img-badge i {
        font-size: 1.1rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-tag {
        display: inline-block;
    }

    .highlight-item {
        text-align: left;
    }

    /* Menu tabs scroll on mobile */
    .menu-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        flex-shrink: 0;
        padding: 9px 18px;
        font-size: 0.84rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 150px);
        gap: 10px;
    }

    .gallery-item.gi-large,
    .gallery-item.gi-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    /* Reviews */
    .review-card {
        padding: 28px 22px;
    }

    /* Contact */
    .contact-info-card,
    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-info-card h4,
    .contact-form-card h4 {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-top {
        padding: 56px 0 36px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-contact-list li {
        font-size: 0.85rem;
    }

    /* Specials */
    .special-card {
        padding: 32px 22px;
    }

    .special-icon {
        width: 62px;
        height: 62px;
        font-size: 1.4rem;
    }
}

/* ========================
   RESPONSIVE — SMALL PHONE (≤480px)
======================== */
@media (max-width: 480px) {
    .section-padding {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.65rem;
    }

    /* Navbar */
    .nav-logo-text {
        font-size: 1.25rem;
    }

    /* Hero */
    .hero-content {
        padding: 100px 0 56px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    /* About */
    .about-img-main img {
        height: 240px;
    }

    /* Menu */
    .menu-tabs {
        gap: 8px;
        margin-bottom: 32px;
    }

    .menu-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .menu-card-header {
        padding: 22px 18px 18px;
    }

    .menu-items-list {
        padding: 16px 18px 20px;
    }

    .menu-items-list li {
        font-size: 0.88rem;
        padding: 7px 0;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 130px);
        gap: 8px;
    }

    /* Reviews */
    .review-card {
        padding: 24px 18px;
    }

    .review-card::before {
        font-size: 4rem;
        top: 10px;
        right: 16px;
    }

    /* Contact */
    .contact-info-card,
    .contact-form-card {
        padding: 24px 16px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        font-size: 0.88rem;
        padding: 12px 14px 12px 40px;
    }

    .btn-primary-custom {
        padding: 13px 24px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-top {
        padding: 44px 0 28px;
    }

    .footer-bottom p {
        font-size: 0.78rem;
    }

    /* Scroll top + WhatsApp */
    .scroll-top-btn {
        bottom: 84px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    /* Mobile menu */
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}

/* ========================
   RESPONSIVE — VERY SMALL (≤360px)
======================== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .menu-tab {
        font-size: 0.76rem;
        padding: 7px 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 180px);
        gap: 8px;
    }

    .gallery-item.gi-large,
    .gallery-item.gi-wide {
        grid-column: span 1;
    }
}
