/* Global Styles */
:root {
    --primary-color: #d13a28;
    /* Deep Fire Red */
    --primary-dark: #a12516;
    --secondary-color: #f59e0b;
    /* Golden Amber */
    --gold: #d4af37;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-card-light: #2d2d2d;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --font-main: 'Cairo', sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    /* Reverted to standard width */
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(209, 58, 40, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 40px;
    /* Initial positions below notification */
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: top 0.3s ease, background 0.3s ease;
    /* Smooth transition for scroll effect */
}

/* Smart Scroll Classes (Managed by JS) */
.navbar.scroll-up {
    top: 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    height: 90vh;
    background: url('assets/hero-grill.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(18, 18, 18, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero .highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text-content {
    flex: 1.2;
    /* Give text more space */
    min-width: 300px;
}

.about-image-content {
    flex: 0.8;
    /* Make image container a bit smaller */
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-frame {
    width: 100%;
    max-width: 450px;
    /* Limit image size for better balance */
    position: relative;
}

.section-title-start {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1rem;
}

.features-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.features-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.features-grid i {
    color: var(--secondary-color);
}

.img-frame img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Menu Section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.category-divider {
    grid-column: 1 / -1;
    text-align: center;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.category-divider::before,
.category-divider::after {
    content: '';
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    flex: 1;
}

.category-divider h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

/* Card Header */
.card-header {
    padding: 30px;
    text-align: center;
    background: var(--bg-card-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.currency {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.card-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Special Card (Sakhan - Center) */
.price-card.special {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.special:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

/* Royal Card */
.royal .card-header.gold-header {
    background: linear-gradient(135deg, #1e1e1e, #2a2205);
}

.royal .gold-header h3,
.royal .gold-header i {
    color: var(--gold);
}

.royal .price-tag {
    color: var(--gold);
}

/* Ramadan Card */
.ramadan-card {
    border: 2px dashed rgba(245, 158, 11, 0.3);
    background: linear-gradient(180deg, #1a1a1a 0%, #0e1a14 100%);
}

.ramadan-header {
    background: transparent;
}

.ramadan-header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.price-tag-sm {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 5px 0;
}

.centered-body {
    text-align: center;
    align-items: center;
}

.btn-disabled {
    background: #333;
    color: #777;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: auto;
    cursor: not-allowed;
    border: 1px solid #444;
}

/* Body & Lists */
.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-details {
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: right;
}

.offer-details li {
    margin-bottom: 8px;
    color: #ddd;
    font-size: 0.95rem;
}

.offer-details .section-head {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-details .section-head:first-child {
    margin-top: 0;
}

.offer-details li i {
    color: var(--secondary-color);
    margin-left: 8px;
    font-size: 0.8rem;
}

/* Order Controls */
.order-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 55px;
    /* Keeps card height stable */
}

.add-to-cart-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    animation: fadeIn 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #2a2a2a;
    padding: 8px 15px;
    border-radius: 50px;
    width: 100%;
    animation: slideInUp 0.3s ease;
}

.qty-controls.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-qty {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-qty.plus {
    background: var(--secondary-color);
    color: #000;
}

.btn-qty.minus {
    background: #444;
    color: #fff;
}

.btn-qty:active {
    transform: scale(0.9);
}

.btn-qty:hover {
    filter: brightness(1.2);
}

.qty-display {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
    color: #fff;
}

/* Floating Cart Bar */
.cart-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--secondary-color);
    border-radius: 100px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    cursor: pointer;
    /* Clickable */
}

.cart-bar.hidden {
    transform: translate(-50%, 200%);
    opacity: 0;
}

.cart-bar:hover {
    transform: translateX(-50%) scale(1.02);
}

.cart-info {
    display: flex;
    flex-direction: column;
}

.cart-count {
    font-size: 0.75rem;
    color: #aaa;
    text-align: right;
}

.cart-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.btn-whatsapp-order {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-order:hover {
    background: #1ebc57;
    transform: translateY(-2px);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cart-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #222;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: 0.3s;
    position: relative;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.cart-modal.open .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #777;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

.cart-items-list {
    overflow-y: auto;
    flex-grow: 1;
    margin-bottom: 20px;
    padding-right: 5px;
}

.order-notes {
    margin-bottom: 20px;
}

.order-notes label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.order-notes textarea {
    width: 100%;
    height: 80px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    font-family: inherit;
    resize: none;
    transition: var(--transition);
}

.order-notes textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    background: #333;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 15px;
}

.modal-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #333;
    padding: 5px 10px;
    border-radius: 50px;
}

.modal-qty-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    background: var(--bg-card-light);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-qty-btn:hover {
    background: var(--secondary-color);
    color: #000;
}

.modal-qty-value {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    color: #ff1a1a;
    transform: scale(1.2);
}

.cart-item-row:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 700;
    color: #ddd;
}

.item-price {
    color: var(--secondary-color);
    margin-right: 10px;
}

.item-qty {
    background: #333;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.modal-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.total-summary {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

/* Service Banner */
.services-banner {
    background: linear-gradient(45deg, #d13a28, #f59e0b);
    padding: 50px 0;
    text-align: center;
    color: #fff;
    margin: 50px 0;
}

.banner-content h2 {
    margin-bottom: 15px;
    font-weight: 900;
}

.keywords-cloud {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.keywords-cloud span {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-box {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-header p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-header h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition);
}

.contact-btn.call {
    background: var(--text-light);
    color: var(--bg-dark);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-btn:hover {
    transform: scale(1.05);
}

.location-text {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Footer */
footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 50px;
    color: #777;
    font-size: 0.9rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations for Mobile Menu */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    /* Burger Menu Styling */
    .burger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px;
        transition: 0.3s;
    }

    /* Nav Links Overlay */
    .nav-links {
        position: absolute !important;
        right: 0px !important;
        height: 92vh !important;
        top: 8vh !important;
        background: rgba(0, 0, 0, 0.98);
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        width: 100% !important;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        padding-top: 50px;
        gap: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }




    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0;
        /* JS will animate this */
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
    }

    .nav-links a:hover {
        color: var(--secondary-color);
    }

    /* Active Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: var(--secondary-color);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background: var(--secondary-color);
    }

    /* General Mobile Fixes */
    .hero h1 {
        font-size: 2rem;
    }

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .price-card.special {
        transform: none;
        order: 0;
    }

    .price-card.special:hover {
        transform: translateY(-5px);
    }

    .about-wrapper {
        flex-direction: column;
    }

    .contact-actions {
        flex-direction: column;
    }

    /* Reset Ramadan Card on Mobile */
    .ramadan-card {
        padding: 0;
        flex-direction: column;
    }

    .ramadan-card .card-header {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        padding: 30px;
    }

    .ramadan-card .card-body {
        flex-direction: column;
        padding: 30px;
    }

    .ramadan-card .card-body p {
        text-align: center !important;
        margin: 20px 0;
    }

    /* Cart Bar Mobile */
    .cart-bar {
        width: 95%;
        max-width: none;
        bottom: 15px;
        padding: 10px 15px;
        border-radius: 15px;
    }

    .cart-total {
        font-size: 1rem;
    }

    .btn-whatsapp-order {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Desktop Specific: Ramadan Paper Layout */
@media (min-width: 1024px) {
    .ramadan-paper {
        padding: 60px;
    }
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 990;
    /* Keep it below mobile menu and modals */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

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

/* Adjust position on mobile */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 75px;
        left: 15px;
        width: 35px;
        height: 35px;
    }
}

/* Location Section */
.location-container {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-details {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-main {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.address-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.map-frame {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) contrast(90%);
    /* Dark Mode Map Effect */
    border: none;
}

/* Hover effect on map to show color */
.map-frame:hover iframe {
    filter: none;
    transition: all 0.5s ease;
}

.btn-outline-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    gap: 10px;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-outline-map:hover {
    background: var(--secondary-color);
    color: #000;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column-reverse;
    }

    .map-frame {
        height: 300px;
    }

    .location-details {
        padding: 30px;
        text-align: center;
    }

    .btn-outline-map {
        align-self: center;
    }

    .location-details h3 {
        justify-content: center;
    }
}

/* Professional Food Slider */
.gallery-slider-section {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
}

.slider-main {
    position: relative;
    height: 550px;
    perspective: 1000px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8) translateZ(-100px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateZ(0);
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.15) contrast(1.1);
    /* Further enhanced clarity */
    object-position: center;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    /* Reduced darkness */
    color: #fff;
    text-align: right;
}

.slide-content h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.1rem;
    color: #ddd;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: #000;
}

.slider-btn.prev {
    right: -80px;
}

.slider-btn.next {
    left: -80px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    width: 35px;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .slider-btn.prev {
        right: 20px;
    }

    .slider-btn.next {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .slider-main {
        height: 400px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* =========================================
   Top Notification & Hero Badges
   ========================================= */

.top-notification-bar {
    background: linear-gradient(90deg, #991b1b, #d13a28);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    border-bottom: 2px solid var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    /* Higher than navbar */
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.top-notification-bar p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.2;
}

.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
}

.top-notification-bar.hidden-bar {
    transform: translateY(-100%);
}

.top-notification-bar:hover {
    background: linear-gradient(90deg, #7f1d1d, #b91c1c);
}

.top-notification-bar i {
    margin: 0 8px;
    color: var(--gold);
}

.navbar {
    top: 40px;
    /* Base position */
    z-index: 1050;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }

    .top-notification-bar {
        padding: 8px 10px;
    }

    .top-notification-bar p {
        font-size: 0.8rem;
    }

    .navbar {
        top: 38px;
        /* Sync with notification height on mobile */
    }

    .navbar.scroll-up {
        top: 0;
    }
}

.ramadan-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    animation: fadeInDown 1s ease;
}

.highlight-link {
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
}

.highlight-link:hover {
    background: var(--gold);
    color: #000 !important;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f59e0b);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: btn-pulse 2s infinite;
    /* Attractive pulse */
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f59e0b, #d4af37);
    transform: translateY(-3px) scale(1.05);
    /* Slight lift and grow on hover */
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
    animation-play-state: paused;
    /* Pause pulse on hover */
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* =========================================
   Ramadan 1447H Offer Styles (Dark Premium)
   ========================================= */

.ramadan-section {
    background: linear-gradient(180deg, #121212 0%, #1a0505 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    /* Extra space for anchor */
}

/* Islamic Pattern Overlay */
.ramadan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 0%, #000 100%),
        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='%23d4af37' fill-opacity='0.05'%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");
    z-index: 1;
}

/* The "Card" Container - Now Dark & Glassy */
.ramadan-paper {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(209, 58, 40, 0.1);
}

/* Golden Corners Decoration */
.ramadan-paper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, var(--gold), transparent, var(--gold), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

/* Header Adjustments */
.paper-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 25px;
}

.paper-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.paper-header h3 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

/* Magic Shine Effect for the Ramadan Project Text */
.magic-shine {
    background: linear-gradient(to right,
            #d13a28 0%,
            #d13a28 40%,
            #fff 50%,
            #d13a28 60%,
            #d13a28 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-animation 3s infinite linear;
    display: inline-block;
    font-weight: 800;
    /* Make it bolder for better effect */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

@keyframes shine-animation {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: -100% center;
    }
}

/* Content Text */
.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
    color: #e5e5e5;
}

.highlight-text {
    background: rgba(209, 58, 40, 0.1);
    border: 1px solid rgba(209, 58, 40, 0.3);
    color: #ffcccc;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Responsive Meal Cards (Universal) */
.meals-grid-ramadan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.meal-card-ramadan {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.meal-card-ramadan:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.meal-card-ramadan h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meal-card-ramadan .meal-details {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 1.05rem;
}

.meal-card-ramadan .meal-price-tag {
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .ramadan-paper {
        padding: 30px 20px;
    }

    .meal-card-ramadan {
        padding: 25px;
    }

    .meal-card-ramadan h4 {
        font-size: 1.3rem;
    }
}

/* Execution List */
.execution-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border-right: 4px solid var(--gold);
    margin-bottom: 40px;
}

.execution-details h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.execution-details h4::before {
    content: '\f54e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.execution-details li {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 15px;
    padding-right: 35px;
    position: relative;
    list-style: none;
}

.execution-details li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--primary-color);
}

/* Footer & Buttons */
.paper-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.contact-box-ramadan {
    background: #2a2a2a;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-label {
    color: #aaa;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.admin-number {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.btn-ramadan {
    background: linear-gradient(45deg, #1aa34a, #25d366);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.2);
    animation: pulse-soft 2s infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-ramadan:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .paper-footer {
        flex-direction: column;
        gap: 20px;
    }

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