/* =============================================
   BURJO NGEGAS 24 JAM - MAIN STYLESHEET
   Theme: Orange & Blue
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary-orange: #FF6B35;
    --primary-orange-dark: #E55D2B;
    --primary-orange-light: #FF8F5E;
    --primary-blue: #004E89;
    --primary-blue-dark: #003A66;
    --primary-blue-light: #006BBF;
    --secondary-blue: #1A659E;
    --accent-orange: #FFB347;
    --dark: #1A1A2E;
    --dark-light: #2D2D44;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --text-light: #F8F9FA;
    --bg-light: #F8F9FA;
    --bg-gray: #F0F2F5;
    --bg-card: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 30px rgba(0, 78, 137, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 75px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
.text-highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

.center {
    text-align: center;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    height: var(--nav-height);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #fff;
}

.logo i {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    font-weight: 400;
}

.logo strong {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 107, 53, 0.15);
}

.nav-cta {
    margin-left: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--primary-blue-dark) 100%);
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 78, 137, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%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");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: var(--accent-orange);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stars {
    display: flex;
    gap: 3px;
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.rating-text small {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.hero-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 35px;
    animation: fadeInUp 0.6s ease 0.35s both;
}

.hero-price i {
    color: var(--primary-orange);
    margin-right: 6px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
    background: #fff;
    padding: 30px 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding: 15px;
}

.stat-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ---------- ABOUT SECTION ---------- */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
    z-index: 1;
}

.about-img-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-frame:hover img {
    transform: scale(1.05);
}

.about-exp-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: #fff;
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-exp-card i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.about-exp-card h4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-title {
    font-size: 2rem;
}

.about-features {
    margin: 30px 0;
}

.about-feat {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    padding: 15px 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-feat:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.about-feat i {
    font-size: 1.4rem;
    color: var(--primary-orange);
    margin-top: 3px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.about-feat h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.about-feat p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- MENU SECTION ---------- */
.menu-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 24px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    background: #fff;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.menu-item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-item-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.07);
}

.menu-item-img .menu-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.menu-item-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* ---------- SERVICES SECTION ---------- */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%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");
}

.services .section-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.services .section-title {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.6rem;
    color: #fff;
}

.service-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ---------- REVIEWS SECTION ---------- */
.reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-user-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.review-user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.review-text .read-more {
    color: var(--primary-orange);
    font-weight: 500;
    cursor: pointer;
}

.review-images {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.review-images img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.reviews-cta .btn {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.reviews-cta .btn:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* ---------- GALLERY SECTION ---------- */
.gallery {
    padding: 100px 0;
    background: var(--bg-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 220px;
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: auto; }
.gallery-item:nth-child(2) { }
.gallery-item:nth-child(3) { }
.gallery-item:nth-child(4) { }
.gallery-item:nth-child(5) { }
.gallery-item:nth-child(6) { }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--primary-orange);
}

.contact-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 500;
    margin-top: 6px;
}

.contact-link:hover {
    color: var(--primary-orange-dark);
}

.social-links-row {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon-link:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-3px);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-lg);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.badge-busy, .badge-normal, .badge-open {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: var(--radius-full);
}

.badge-busy {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
}

.badge-normal {
    background: rgba(0, 78, 137, 0.15);
    color: var(--primary-blue-light);
}

.badge-open {
    background: rgba(46, 213, 115, 0.15);
    color: #2ED573;
}

.busy-hours li,
.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-cta {
    margin-top: 20px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* ---------- TABLET (max 1024px) ---------- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .about-wrapper { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
}

/* ---------- MOBILE (max 768px) ---------- */
@media (max-width: 768px) {
    :root { --nav-height: 65px; }

    .container { padding: 0 16px; }
    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 0.95rem; }

    /* Nav */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 20px;
        flex-direction: column;
        transform: translateY(-110%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 2px solid rgba(255, 107, 53, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 12px 18px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-wave svg { height: 50px; }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .stat-item { padding: 10px; }
    .stat-item i { font-size: 1.5rem; }
    .stat-info h3 { font-size: 1.1rem; }

    /* About */
    .about { padding: 60px 0; }
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-img-frame img { height: 280px; }
    .about-exp-card {
        bottom: -15px;
        right: -10px;
        padding: 18px 22px;
    }
    .about-content .section-title { font-size: 1.5rem; }

    /* Menu */
    .menu-section { padding: 60px 0; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .menu-item-img { height: 140px; }

    /* Services */
    .services { padding: 60px 0; }
    .services-grid { gap: 15px; }
    .service-card { padding: 25px 20px; }

    /* Reviews */
    .reviews { padding: 60px 0; }
    .reviews-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery { padding: 60px 0; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        height: 200px;
    }
    .gallery-item { height: 140px; }

    /* Contact */
    .contact { padding: 60px 0; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }

    /* Footer */
    .footer { padding: 50px 0 0; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ---------- SMALL MOBILE (max 480px) ---------- */
@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-badge { font-size: 0.75rem; padding: 6px 16px; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 1.4rem; }
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}