/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B0000;
    --primary-dark: #5C0000;
    --primary-light: #B22222;
    --secondary: #1A1A1A;
    --accent: #D4AF37;
    --accent-light: #E8C84A;
    --light: #FFF8F0;
    --white: #FFFFFF;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #999999;
    --card-bg: #2A1A1A;
    --border: #3A2A2A;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

.highlight {
    color: var(--primary);
}

/* ===== SCROLL REVEAL ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== OFFLINE BANNER ===== */
.offline-banner {
    background: linear-gradient(135deg, var(--secondary), #2A2A2A);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 1001;
}

.offline-banner span {
    margin-right: 6px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(139, 0, 0, 0.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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(5px, -5px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--secondary);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 700px;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.slide-content .highlight {
    color: var(--accent);
}

.slide-content p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.4);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 80px 0;
    background: #000;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.section-titles {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 0 auto;
    border-radius: 2px;
}

.section-desc {
    margin-top: 16px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== MENU ===== */
.menu-head {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    font-weight: 700;
    text-align: center;
    background: var(--primary);
    padding: 14px 20px;
    border-radius: 6px 6px 0 0;
    color: #fff;
}

.menu-items-grid.full-width {
    display: flex;
    flex-direction: column;
}

.menu-row {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    font-size: 0.95rem;
}

.menu-row span {
    text-align: center;
    color: #fff;
}

.menu-row .item-name {
    text-align: left;
    font-weight: 500;
}

.menu-row:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Responsive */
@media (max-width: 768px) {

    .menu-head {
        display: none;
    }

    .menu-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 16px;
    }

    .menu-row span {
        text-align: left;
    }

    .menu-row span:not(.item-name)::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--accent);
    }
}

@media (max-width: 768px) {

    .menu-head {
        display: none;
    }

    .menu-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
        background: var(--card-bg);
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .menu-row span {
        text-align: left;
    }

    .menu-row span:not(.item-name)::before {
        content: attr(data-label) " : ";
        font-weight: 600;
        color: var(--accent);
    }
}



.breakfast-column {
    display: flex;
    flex-direction: column;
}

.breakfast-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: #fff;
}

.breakfast-item span:last-child {
    font-weight: 700;
    color: #fff;
}

.breakfast-column hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 15px 0;
}

.order-box {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 8px;
}

.order-box p {
    margin: 5px 0;
    font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .breakfast-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* ===== GALLERY ===== */
.gallery-section {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.gallery-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    background: none;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===== VIDEOS ===== */
.videos-section {
    background: var(--white);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px var(--shadow);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 0, 0, 0.85);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-btn {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    padding: 16px 20px 4px;
    color: var(--secondary);
}

.video-card p {
    font-size: 0.85rem;
    color: var(--gray);
    padding: 0 20px 20px;
}

/* ===== VIDEO POPUP ===== */
.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-popup-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    background: none;
    transition: transform 0.3s ease;
}

.video-popup-close:hover {
    transform: rotate(90deg);
}

/* ===== WHY US ===== */
.whyus-section {
    background: var(--light);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.whyus-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.whyus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px var(--shadow);
}

.whyus-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(139, 0, 0, 0.15);
    margin-bottom: 8px;
}

.whyus-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.whyus-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light);
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary);
    background: none;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 25px var(--shadow);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-call {
    flex: 1;
    text-align: center;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.btn-whatsapp {
    flex: 1;
    text-align: center;
    padding: 14px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-light);
}

.footer-brand p {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-rating {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-price {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    display: block;
    color: var(--light-gray);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-contact p {
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-note {
    margin-top: 16px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.footer-note p {
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.85rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .whyus-grid,
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 30px var(--shadow-dark);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
    }

    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 300px;
    }

    .about-stats {
        justify-content: center;
    }

    .services-grid,
    .whyus-grid {
        grid-template-columns: 1fr;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .menu-tabs {
        gap: 8px;
    }

    .menu-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }
}