/* Modern Homepage Styles for Chiqby Theme */

/* Hero Section */
.modern-hero-section {
    background: linear-gradient(135deg, #e3000e 0%, #a30000 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.modern-hero-section .hero-slide {
    /* background-size: cover; */
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0 0;
}

.hero-content {
    padding: 40px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.hero-highlight {
    color: #ffd700;
    display: block;
    font-size: 4rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-red {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-image-wrapper {
    position: relative;
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.modern-hero-section .swiper-button-next,
.modern-hero-section .swiper-button-prev {
    color: #ffffff;
}

.modern-hero-section .swiper-button-next::after,
.modern-hero-section .swiper-button-prev::after {
    font-size: 24px;
}

.modern-hero-section .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.modern-hero-section .swiper-pagination-bullet-active {
    background: #ffffff;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Featured Categories */
.featured-categories {
    background: #fff;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.category-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(227, 0, 14, 0.2);
}

.category-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.category-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

/* Promo Section */
.promo-section {
    background: #f8f9fa;
}

.promo-card {
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: scale(1.02);
}

.promo-card-yellow {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.promo-card-red {
    background: linear-gradient(135deg, #e3000e 0%, #ff1744 100%);
    color: #fff;
}

.promo-card-red .btn.btn-sm {
    background-color: #ffffff;
    color: #ff0000 !important;
    border: 1px solid #C40000;
}

.promo-card-red h3,
.promo-card-red p {
    color: #fff;
}

.promo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.promo-card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.promo-card img,
.promo-card .promo-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.btn-white {
    background: #fff;
    color: #e3000e;
    /* Red color */
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-white:hover {
    background: #f0f0f0;
    color: #c70000;
}

.btn-red {
    background: #e3000e;
    color: #fff;
    /* White text */
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-red:hover {
    background: #c70000;
    color: #fff;
}

/* Offer Cards */
.offer-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.offer-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover img {
    transform: scale(1.1);
}

.offer-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover .offer-overlay {
    opacity: 1;
}

/* Real & Juicy Section */
.real-juicy-section {
    background: #fff;
}

.real-juicy-section .section-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #e3000e;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.real-juicy-section .section-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.quality-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 25px;
    font-weight: 600;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

.badge-item i {
    color: #e3000e;
    font-size: 1.2rem;
}

/* Featured Section */
.featured-section {
    background: #fff;
}

.featured-content-card {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    height: auto;
}

.featured-content-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.featured-content-card h4 {
    font-size: 1.5rem;
    color: #e3000e;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.featured-content-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.featured-image-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-section {
    background: #f8f9fa;
}

.section-content {
    padding: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Menu Section */
.menu-section {
    background: #fff;
}

.menu-item-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 0, 14, 0.2);
}

.menu-item-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 20px;
    text-align: center;
}

.menu-item-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.menu-item-content h5 a {
    color: #333;
    text-decoration: none;
}

.menu-item-content h5 a:hover {
    color: #e3000e;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e3000e;
    font-family: 'Oswald', sans-serif;
}

/* Franchise Section */
.franchise-section {
/*     background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); */
	background: linear-gradient(29deg, #422626 0%, #ff0000 100%);
    position: relative;
    overflow: hidden;
}

.franchise-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.franchise-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.franchise-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.franchise-guarantee h5 {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.franchise-contact h4 {
    font-size: 1.8rem;
    color: #ffd700;
    margin: 20px 0;
}

.franchise-contact i {
    color: #e3000e;
    margin-right: 10px;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Mobile App Section */
.mobile-app-section {
    background: #f8f9fa;
}

.app-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.app-content h3 {
    font-size: 1.5rem;
    color: #e3000e;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.app-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-store-btn,
.play-store-btn {
    transition: transform 0.3s ease;
}

.app-store-btn:hover,
.play-store-btn:hover {
    transform: translateY(-3px);
}

/* Delivery Section */
.delivery-section {
    background: linear-gradient(to right, #fff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.delivery-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.delivery-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-highlight {
        font-size: 3rem;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .promo-card h3 {
        font-size: 1.2rem;
    }

    .featured-content-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-highlight {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .category-card img {
        height: 120px;
    }

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

    .featured-content-card h2 {
        font-size: 1.8rem;
    }
}

/* ================================================
   Halal Certified — Brand Theme (Red + Dark)
   ================================================ */

.halal-certified-block {
    margin-top: 28px;
    padding-top: 0;
    border-top: none;
}

/* Outer Card */
.halal-brand-card {
    position: relative;
    display: flex;
    align-items: stretch;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 60%, #1a0a0a 100%); */
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(227, 0, 14, 0.25); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.halal-brand-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.32),
        0 0 0 1.5px rgba(227, 0, 14, 0.5);
}

/* Red vertical accent bar .halal-accent-bar {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #e3000e 0%, #ff4444 50%, #e3000e 100%);
    border-radius: 0;
} */

/* Inner layout */
.halal-brand-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 22px 20px 20px;
    flex: 1;
}

/* Seal column */
.halal-seal-col {
    flex-shrink: 0;
}

.halal-seal-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(227, 0, 14, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: border-color 0.3s ease, transform 0.4s ease;
    box-shadow: 0 0 20px rgba(227, 0, 14, 0.12);
}

.halal-brand-card:hover .halal-seal-ring {
    border-color: rgba(227, 0, 14, 0.75);
    transform: rotate(8deg) scale(1.05);
    box-shadow: 0 0 28px rgba(227, 0, 14, 0.25);
}

.halal-seal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* Content column */
.halal-content-col {
    flex: 1;
    min-width: 0;
}

/* Small pill tag */
.halal-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227, 0, 14, 0.15);
    border: 1px solid rgba(227, 0, 14, 0.35);
    color: #ff6b6b;
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 25px;
}

.halal-tag i {
    font-size: 0.7rem;
    color: #e3000e;
}

/* Main title */
.halal-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px;
    line-height: 1.2;
}

.halal-main-title span {
    color: #e3000e;
}

/* Body text */
.halal-body-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0 0 12px;
}

/* Stats row */
.halal-stats-row {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 8px 16px;
}

.halal-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.halal-stat i {
    font-size: 0.78rem;
    color: #ffd700;
}

.halal-stat i.fa-check-circle {
    color: #4caf50;
}

.halal-stat i.fa-leaf {
    color: #66bb6a;
}

.halal-stat i.fa-star {
    color: #ffd700;
}

/* Decorative glow corner
.halal-brand-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(227, 0, 14, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
} */

/* Responsive */
@media (max-width: 575px) {
    .halal-brand-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 16px;
    }

    .halal-seal-ring {
        width: 80px;
        height: 80px;
    }

    .halal-main-title {
        font-size: 1.2rem;
    }

    .halal-stats-row {
        gap: 6px 12px;
    }
}

/* ================================================
   Order Online / Delivery Partners Section
   ================================================ */

.order-online-section {
/*     background: linear-gradient(135deg, #111111 0%, #1e1e1e 50%, #2a1a1a 100%); */
	background: #fffffff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Subtle red glow in background */
.order-online-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 0, 14, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.order-online-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 0, 14, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Left Content */
.order-online-content {
    padding-right: 20px;
}

.delivery-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 0, 14, 0.15);
    border: 1px solid rgba(227, 0, 14, 0.4);
    color: #ff6b6b;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.delivery-pill i {
    font-size: 0.85rem;
    color: #e3000e;
}

.order-online-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.order-online-heading span {
    display: block;
    color: #ffd700;
    font-size: 3.4rem;
}

.order-online-desc {
    font-size: 1.05rem;
/*     color: rgba(255, 255, 255, 0.65); */
	color: rgb(0 0 0 / 100%);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Feature items */
.order-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.order-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgb(184 27 43);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.order-feature-item:hover {
/*     background: rgba(227, 0, 14, 0.18); */
	background: rgb(150 20 35);
    border-color: rgba(227, 0, 14, 0.45);
}

.order-feature-item i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Right: Platform Cards wrapper */
.delivery-platforms-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Base platform card */
.delivery-platform-card {
    display: block;
    text-decoration: none;
    border-radius: 20px;
    padding: 28px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.delivery-platform-card:hover {
    transform: translateY(-6px) scale(1.01);
    text-decoration: none;
}

/* Decorative circle inside card */
.platform-deco-circle {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.delivery-platform-card:hover .platform-deco-circle {
    transform: scale(1.4);
}

/* --- Swiggy card (orange gradient) --- */
.swiggy-card {
    background: linear-gradient(135deg, #fc8019 0%, #e05a00 60%, #c04500 100%);
    box-shadow: 0 8px 30px rgba(252, 128, 25, 0.35);
}

.swiggy-card:hover {
    box-shadow: 0 16px 45px rgba(252, 128, 25, 0.55);
}

/* --- Zomato card (red gradient) --- */
.zomato-card {
    background: linear-gradient(135deg, #e23744 0%, #c01e2e 60%, #9b0f1e 100%);
    box-shadow: 0 8px 30px rgba(226, 55, 68, 0.35);
}

.zomato-card:hover {
    box-shadow: 0 16px 45px rgba(226, 55, 68, 0.55);
}

/* Inner flex layout */
.platform-card-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Logo area */
.platform-logo-wrap {
    flex-shrink: 0;
    width: 140px;
}

.platform-logo-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Card body text */
.platform-card-body {
    flex: 1;
}

.platform-card-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 14px;
}

.platform-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.delivery-platform-card:hover .platform-cta {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
}

.platform-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.delivery-platform-card:hover .platform-cta i {
    transform: translateX(4px);
}

/* ================================================
   Responsive — Order Online Section
   ================================================ */
@media (max-width: 991px) {
    .order-online-heading {
        font-size: 2.4rem;
    }

    .order-online-heading span {
        font-size: 2.8rem;
    }

    .order-online-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .order-features {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .order-online-section {
        padding: 60px 0;
    }

    .order-online-heading {
        font-size: 2rem;
    }

    .order-online-heading span {
        font-size: 2.4rem;
    }

    .platform-card-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .platform-logo-wrap {
        width: 110px;
    }

    .delivery-platform-card {
        padding: 22px 22px;
    }
}

@media (max-width: 480px) {
    .order-online-heading {
        font-size: 1.7rem;
    }

    .order-online-heading span {
        font-size: 2rem;
    }

    .order-feature-item {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    .delivery-platform-card {
        padding: 18px 18px;
    }

    .platform-logo-wrap {
        width: 90px;
    }

    .platform-card-body p {
        font-size: 0.88rem;
    }
}
