/* Custom Font Fallbacks */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1a1717;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .condensed {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 900;
    /*font-stretch: condensed;*/
}
/* Color Variables */ :root {
    --primary-dark: #1a1717;
    --primary-red: #e12827;
    --cta-red: #d92726;
    --secondary-gray: #a7a9ac;
    --gold-accent: #D4AF37;
}
/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
/* Navbar Styling */
.navbar {
    background: rgba(26, 23, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s ease;
}
.navbar-brand img {
    height: 100px;
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cta-red);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover:after {
    width: 100%;
}
/* Hero Section */
.hero-section {
    position: relative;
     /*min-height: 100vh;
    display: flex;*/
    align-items: center;
    overflow: hidden;
    padding-bottom: 0;
}
.hero-image {
    /*position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    height: 100%;
    /*object-fit: cover;
    z-index: -1;*/
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 23, 23, 0.7) 0%, rgba(26, 23, 23, 0.3) 100%);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.ramadan-accent {
    display: inline-block;
    color: var(--gold-accent);
}
/* CTA Buttons */
.btn-primary-cta {
    background: var(--cta-red);
    border: none;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 39, 38, 0.3);
}
.btn-primary-cta:hover {
    background: #b81f1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 39, 38, 0.4);
}
.btn-outline-cta {
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}
.btn-outline-cta:hover {
    background: #fff;
    color: var(--primary-dark);
}
/* Section Styling */
section {
    padding: 5rem 0;
    position: relative;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--cta-red);
}
.section-subtitle {
    color: var(--secondary-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}
/* Ramadan Decorative Elements */
.ramadan-pattern {
    position: absolute;
    opacity: 0.03;
    font-size: 15rem;
    color: var(--gold-accent);
    z-index: 0;
}
/* Offers Section */
.offers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}
/* Make columns equal height */
.offers-section .row {
    display: flex;
    flex-wrap: wrap;
}

.offers-section [class*="col-"] {
    display: flex;
}
/* Make offer cards fill parent height */
.offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Add this */
    width: 100%; /* Add this */
}
.offer-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-red) 0%, var(--gold-accent) 100%);
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.offer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}
.offer-discount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--cta-red);
    line-height: 1;
}
.offer-badge {
    display: inline-block;
    background: var(--gold-accent);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1rem;
}
.tagline-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2727 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tagline-box:before {
    content: '☪';
    position: absolute;
    font-size: 10rem;
    opacity: 0.1;
    right: -2rem;
    top: -2rem;
    color: var(--gold-accent);
}
.tagline-text {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
/* Contact Form */
.contact-section {
    background: #fff;
}
.form-control, .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
    border-color: var(--cta-red);
    box-shadow: 0 0 0 0.2rem rgba(217, 39, 38, 0.15);
}
.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
/* Terms Section */
.terms-section {
    background: #f8f9fa;
}
.accordion-button {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
}
.accordion-button:not(.collapsed) {
    background: var(--primary-dark);
    color: #fff;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(217, 39, 38, 0.15);
}
/* Products & Services Section */
.services-section {
    background: #fff;
}
.service-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.service-card:hover {
    border-color: var(--cta-red);
    background: #fff;
}
.service-icon {
    font-size: 3rem;
    color: var(--cta-red);
    margin-bottom: 1.5rem;
}
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
/* Locations Section */
.locations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.location-list {
    max-height: 600px;
    overflow-y: auto;
}
.location-item {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 98%;
}
.location-item:hover, .location-item.active {
    border-color: var(--cta-red);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.location-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.location-info {
    color: var(--secondary-gray);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}
.location-info i {
    color: var(--cta-red);
    margin-right: 0.5rem;
    width: 20px;
}
#map {
    height: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Footer */
.footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 3rem 0 1.5rem;
}
.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.social-links a:hover {
    background: var(--cta-red);
    transform: translateY(-3px);
}
/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    #map {
        height: 400px;
        margin-top: 2rem;
    }
}
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .tagline-text {
        font-size: 1.3rem;
    }
    .btn-primary-cta, .btn-outline-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Image-based Offer Cards */
.offer-card-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    height: auto;
    cursor: pointer;
}

.offer-card-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.offer-card-image:hover .offer-image {
    transform: scale(1.1);
}

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 23, 23, 0.95) 0%, rgba(26, 23, 23, 0.7) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transition: all 0.4s ease;
}

.offer-card-image:hover .offer-overlay {
    background: linear-gradient(to top, rgba(217, 39, 38, 0.95) 0%, rgba(217, 39, 38, 0.7) 60%, transparent 100%);
}

.offer-badge-large {
    display: inline-block;
    background: var(--gold-accent);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.offer-name {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* Responsive adjustments for offer cards */
@media (max-width: 991px) {
    .offer-card-image {
        height: auto;
    }
    
    .offer-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .offer-card-image {
        height: auto;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .offer-badge-large {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .offer-name {
        font-size: 1.1rem;
    }
}

/* Terms Section - Simple List Style */
.terms-section {
    background: #f8f9fa;
}

.terms-content {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: terms-counter;
}

.terms-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
    counter-increment: terms-counter;
}

.terms-list li:before {
    content: counter(terms-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--cta-red);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list li strong {
    color: var(--primary-dark);
}

/* Responsive adjustments for terms */
@media (max-width: 767px) {
    .terms-content {
        padding: 2rem 1.5rem;
    }
    
    .terms-list li {
        font-size: 0.95rem;
        padding-left: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .terms-list li:before {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}
/* Contact Form */
.contact-section {
    background: #fff;
}

.contact-section .col-lg-8 {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--cta-red);
    box-shadow: 0 0 0 0.2rem rgba(217, 39, 38, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for contact form */
@media (max-width: 767px) {
    .contact-section .col-lg-8 {
        padding: 2rem 1.5rem;
    }
}
/* Language Switcher in Nav */
.language-switcher-nav {
    margin-left: 1rem;
}

.lang-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.lang-link:hover {
    background: var(--cta-red);
    border-color: var(--cta-red);
    color: #fff;
    transform: translateY(-2px);
}

.lang-link i {
    margin-right: 0.3rem;
}

@media (max-width: 991px) {
    .language-switcher-nav {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}