/* ===========================
   RESET & BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Five Guys Brand Colors */
    --red-primary: #CC0000;
    --red-dark: #A00000;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #666666;

    /* Koli65 Green Colors */
    --green-primary: #28A745;
    --green-dark: #218838;
    --green-light: #34CE57;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
    background: var(--white);
    border-bottom: 3px solid var(--red-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--black);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--red-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Grab Food Icon Styles */
.grab-icon-link {
    display: block;
    width: 44px;
    height: 44px;
    transition: transform var(--transition);
}

.grab-icon-link:hover {
    transform: scale(1.1);
}

.grab-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.order-btn {
    background: var(--red-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.order-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.order-btn.secondary {
    background: transparent;
    color: var(--red-primary);
    border: 2px solid var(--red-primary);
}

.order-btn.secondary:hover {
    background: var(--red-primary);
    color: var(--white);
}



.btn-icon {
    width: 20px;
    height: 20px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('images/KOLI65 Banner1.png') center/cover;
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: var(--red-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}

.cta-btn:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(204, 0, 0, 0.4);
}

/* Location Info Box */
.location-info {
    background: var(--red-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: var(--shadow-lg);
    display: inline-block;
    text-align: center;
    margin-top: 2rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
}

.location-info:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(204, 0, 0, 0.5);
}

.location-info:first-line {
    font-size: 1rem;
    font-weight: 800;
}

/* ===========================
   FEATURE SECTION
   =========================== */
.feature-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.feature-title {
    font-family: Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

/* ===========================
   TOP SELLING FAVOURITES
   =========================== */
.favourites-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.favourites-header {
    text-align: center;
    margin-bottom: 3rem;
}

.favourites-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
}

.favourites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.favourite-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.favourite-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-primary);
}

.favourite-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--gray-medium);
}

.favourite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.favourite-card:hover .favourite-image img {
    transform: scale(1.1);
}

.signature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.favourite-content {
    padding: 1.5rem;
}

.favourite-title {
    font-family: Impact, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.favourite-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* ===========================
   HALAL CERTIFICATION SECTION
   =========================== */
.halal-section {
    padding: 3rem 2rem;
    background: var(--gray-light) url('images/Halal Transparent.png') top 1rem right 2rem no-repeat;
    background-size: 180px;
    text-align: center;
    position: relative;
}

.halal-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.halal-title {
    color: var(--green-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.halal-text {
    background: var(--white);
    padding: 2rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.halal-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.halal-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.halal-tagline {
    font-family: Impact, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* ===========================
   FOOD SECTION
   =========================== */
.food-section {
    padding: 4rem 2rem;
    background: var(--gray-light);
}

.section-title {
    font-family: Impact, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    color: var(--black);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.food-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.food-image {
    width: 100%;
    height: 250px;
    background: var(--gray-medium);
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.food-card:hover .food-image img {
    transform: scale(1.1);
}

.food-btn {
    width: 100%;
    background: var(--red-primary);
    color: var(--white);
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.food-btn:hover {
    background: var(--red-dark);
}

.explore-card {
    background: var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 330px;
    cursor: pointer;
}

.explore-content {
    text-align: center;
    color: var(--white);
}

.explore-content h3 {
    font-family: Impact, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.explore-card:hover .explore-content svg {
    transform: translateX(10px);
}

.explore-content svg {
    transition: transform var(--transition);
}

/* ===========================
   PROMO SECTION
   =========================== */
.promo-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--white);
    text-align: center;
}

.promo-title {
    font-family: Impact, sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.promo-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: Impact, sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 8px;
    min-width: 120px;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* ===========================
   LOCATION SECTION
   =========================== */
.location-section {
    padding: 4rem 2rem;
    background: var(--white);
    text-align: center;
}

.location-content {
    max-width: 600px;
    margin: 0 auto;
}

.location-icon {
    margin: 0 auto 1.5rem;
    color: var(--red-primary);
}

.location-title {
    font-family: Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.location-text {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

/* ===========================
   GROUP CATERING SECTION
   =========================== */
.group-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.catering-full-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.catering-title {
    font-family: Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 2rem;
}

.catering-intro {
    margin-bottom: 2rem;
}

.catering-intro p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.6;
}

.catering-details {
    text-align: left;
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.catering-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.catering-understanding {
    font-weight: 700;
    color: var(--black) !important;
    margin-top: 2rem;
    margin-bottom: 1rem !important;
}

.catering-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.catering-features li {
    font-size: 1.05rem;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.6;
}

.catering-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 900;
    font-size: 1.3rem;
}

.catering-tagline {
    text-align: center;
    margin-top: 2rem;
}

.catering-tagline p {
    font-family: Impact, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--red-primary);
}

/* ===========================
   CREW SECTION
   =========================== */
.crew-section {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('crew-bg.jpg') center/cover;
    background-color: var(--gray-dark);
    color: var(--white);
    text-align: center;
}

.crew-content {
    max-width: 700px;
    margin: 0 auto;
}

.crew-title {
    font-family: Impact, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.crew-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ===========================
   MUSIC SECTION
   =========================== */
.music-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.music-card {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition);
    border: 3px solid transparent;
}

.music-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.music-title {
    font-family: Impact, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.music-text {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title-large {
    font-family: Impact, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-middle {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-link-column a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color var(--transition);
}

.footer-link-column a:hover {
    color: var(--red-primary);
}

.footer-subtitle {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    transform: translateY(-3px);
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--red-primary);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {

    .feature-content,
    .group-content {
        grid-template-columns: 1fr;
    }

    .footer-middle {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Header Mobile Optimization */
    .nav-container {
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .logo {
        height: 40px;
    }

    /* Make GRAB ORDER button icon-only on mobile */
    .header-actions {
        gap: 0.5rem;
    }

    .grab-order-btn {
        padding: 0 !important;
        font-size: 0 !important;
        border-radius: 50% !important;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        /* Remove green background */
        border: none !important;
        /* Remove border */
        box-shadow: none !important;
        /* Optional: remove shadow for cleaner look */
    }

    .grab-order-btn .btn-icon {
        width: 100%;
        /* Fill the button */
        height: 100%;
        /* Fill the button */
        margin: 0;
        object-fit: contain;
        /* Ensure image isn't distorted */
        border-radius: 50%;
        /* Match button shape */
    }

    .nav-toggle {
        display: block;
        padding: 0.75rem;
        z-index: 1001;
    }





    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 4rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .food-grid {
        grid-template-columns: 1fr;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2.5rem;
        padding: 0.75rem 1.25rem;
        min-width: 80px;
    }

    .social-links {
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }
}

/* ===========================
   KOLI65 CUSTOM STYLES
   =========================== */
/* Green "GRAB ORDER" Button (Header Only) */
.grab-order-btn {
    background: var(--green-primary) !important;
    border-color: var(--green-primary) !important;
}

.grab-order-btn:hover {
    background: var(--green-dark) !important;
    border-color: var(--green-dark) !important;
}

/* ===========================
   SIMPLE FOOTER
   =========================== */
.simple-footer {
    background: var(--black);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.footer-icon:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--red-primary);
}

.footer-legal-links .divider {
    color: var(--white);
}

.footer-copyright-text {
    color: var(--white);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-legal-links .divider {
        display: none;
    }

    /* Halal Section Mobile Optimization */
    .halal-section {
        background-position: top 1rem center;
        background-size: 140px;
        padding-top: 12rem;
    }

    .halal-content {
        padding-top: 1rem;
    }

    .halal-text {
        padding: 1.5rem;
    }

    .halal-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .halal-main {
        font-size: 1.1rem;
    }

    .halal-desc {
        font-size: 0.95rem;
    }

    .halal-tagline {
        font-size: 1.2rem;
    }
}

/* KOLI65 Multi-color Text */
.koli-k {
    color: #C41E3A;
}

/* Red */
.koli-o {
    color: #DAA520;
}

/* Goldenrod */
.koli-l {
    color: #DAA520;
}

/* Goldenrod */
.koli-i {
    color: #FF8C00;
}

/* Dark Orange */
.koli-6 {
    color: #C41E3A;
}

/* Red */
.koli-5 {
    color: #C41E3A;
}

/* Red */


/* Kanna Mutton Image - Make Bigger */
#kanna-mutton-img {
    transform: scale(1.6);
    object-position: center center;
}


/* Nasi Lemak Image - Make Bigger */
#nasi-lemak-img {
    transform: scale(1.6);
    object-position: center center;
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}