
/* =========================================
RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
ROOT COLORS
========================================= */

:root {

    /* MAIN COLORS */
    --primary-color: #2ecb70;
    --secondary-color: #111827;

    /* BACKGROUND */
    --body-bg: #f7f8f8;

    /* TEXT */
    --text-color: #1f2937;
    --text-light: #6b7280;

    /* OTHERS */
    --white: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);

    /* SHADOWS */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);

    /* RADIUS */
    --radius-md: 14px;
    --radius-lg: 20px;

    /* TRANSITION */
    --transition: all .3s ease;

}

/* =========================================
BODY
========================================= */

body {

    font-family: 'Cairo', sans-serif;
    background: var(--body-bg);
    color: var(--text-color);

}

/* =========================================
CONTAINER
========================================= */

.container {

    width: 100%;
    max-width: 1300px;

    margin: auto;
    padding-inline: 20px;

}

/* =========================================
NAVBAR
========================================= */

.navbar {

    position: sticky;

    top: 0;
    left: 0;

    width: 100%;

    background: rgba(255,255,255,0.88);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border-color);

    z-index: 999;

}
.navbar-container {
    position: relative;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

}
.nav-links {
    z-index: 100;
}

.menu-toggle {
    z-index: 101;
}

/* =========================================
LOGO
========================================= */

.logo {

    text-decoration: none;

    font-size: 30px;
    font-weight: 800;

    color: var(--secondary-color);

}

.logo span {

    color: var(--primary-color);

}

/* =========================================
NAV LINKS
========================================= */

.nav-links {

    display: flex;
    align-items: center;
    gap: 35px;

}

.nav-links a {

    position: relative;

    text-decoration: none;

    color: var(--text-color);

    font-size: 16px;
    font-weight: 600;

    transition: var(--transition);

}

.nav-links a:hover,
.nav-links a.active {

    color: var(--primary-color);

}

.nav-links a.active::after {

    content: '';

    position: absolute;

    bottom: -8px;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--primary-color);

    border-radius: 50px;

}

/* =========================================
BUTTON
========================================= */

.order-btn {

    text-decoration: none;

    background: var(--primary-color);
    color: white;

    padding: 12px 24px;

    border-radius: 100px;

    font-size: 15px;
    font-weight: 700;

    transition: var(--transition);

}

.order-btn:hover {

    transform: translateY(-2px);

    opacity: .9;

}

/* =========================================
RESPONSIVE
========================================= */
/* MENU BUTTON */
.menu-toggle {

    display: none;

    border: none;
    background: none;

    font-size: 28px;

    color: var(--secondary-color);

    cursor: pointer;

}

/* MOBILE */
@media(max-width: 900px) {

    .menu-toggle {

        display: block;

    }

    .nav-links {

        position: absolute;

        top: 100%;
        right: 20px;

        width: 220px;

        background: var(--white);

        border-radius: var(--radius-lg);

        padding: 20px;

        box-shadow: var(--shadow-sm);

        display: flex;
        flex-direction: column;

        gap: 16px;

        opacity: 0;
        visibility: hidden;

        transform: translateY(10px);

        transition: var(--transition);

    }

    .nav-links.active {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);

    }

}
@media(max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {

        position: absolute;

        top: 100%;
        left:   0px;

        width: 100%;

        background: var(--white);

        border-radius: var(--radius-lg);

        padding: 20px;

        box-shadow: var(--shadow-sm);

        display: flex;
        flex-direction: column;

        gap: 16px;

        opacity: 0;
        visibility: hidden;

        transform: translateY(10px);

        transition: var(--transition);

        pointer-events: none;
    }

    .nav-links.active {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

}

@media(max-width: 600px) {

    .logo {

        font-size: 24px;

    }

    .order-btn {

        padding: 10px 18px;
        font-size: 14px;

    }

}

/* hero section */
/* =========================================
HERO SECTION
========================================= */

.hero-section {

    min-height: calc(100vh - 85px);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(0, 146, 69, 0.05),
            transparent 30%),
        #f5f7f6;

}

/* =========================================
CONTAINER
========================================= */

.hero-container {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding-top: 40px;
    padding-bottom: 40px;

}

/* =========================================
LEFT CONTENT
========================================= */

.hero-content {

    width: 55%;
    max-width: 760px;

}

.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 18px;

    border-radius: 100px;

    background: rgba(0, 146, 69, 0.08);

    border: 1px solid rgba(0, 146, 69, 0.12);

    color: var(--primary-color);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 28px;

}

.hero-title {

    font-size: 76px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

    color: var(--secondary-color);

    margin-bottom: 28px;

}

.hero-title span {

    color: var(--primary-color);

}

.hero-description {

    max-width: 520px;

    color: #6b7280;

    font-size: 18px;
    line-height: 2;

    margin-bottom: 38px;

}

/* =========================================
    BUTTONS
    ========================================= */

.hero-buttons {

    display: flex;
    align-items: center;
    gap: 18px;

}

.hero-btn {

    height: 58px;

    padding-inline: 34px;

    border-radius: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: .3s ease;

}

.primary-btn {

    background: var(--primary-color);
    color: white;

    box-shadow: 0 15px 30px rgba(0, 146, 69, 0.18);

}

.primary-btn:hover {

    transform: translateY(-4px);

}

.secondary-btn {

    background: #fff;

    border: 1px solid #e5e7eb;

    color: var(--secondary-color);

}

/* =========================================
RIGHT VISUAL
========================================= */

.hero-visual {

    width: 52%;

    position: relative;

    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

}

/* =========================================
PHONE
========================================= */

.phone-wrapper {

    position: relative;

    z-index: 5;

    animation: phoneFloat 5s ease-in-out infinite;

}

.phone-frame {

    width: 280px;
    height: 560px;

    background: #050505;

    border-radius: 36px;

    padding: 12px;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.16);

}

.phone-frame img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 26px;

}

/* =========================================
LEFT BOWL
========================================= */

.bowl-card {

    position: absolute;

    left: 10px;
    bottom: 85px;

    width: 145px;
    height: 145px;

    padding: 6px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(10px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

    animation: floatSlow 6s ease-in-out infinite;

}

.bowl-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 14px;

}

/* =========================================
RIGHT SIDE IMAGES
========================================= */

.side-foods {

    position: absolute;

    right: 10px;
    top: 40px;

    display: flex;
    flex-direction: column;
    gap: 26px;

}

.food-card {

    width: 145px;
    height: 145px;

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);

    background: #111;

}

.food-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

/* =========================================
FLOATING ANIMATION
========================================= */

.burger-card {

    animation: floatTop 5s ease-in-out infinite;

}

.pizza-card {

    animation: floatBottom 6s ease-in-out infinite;

}

/* =========================================
ANIMATIONS
========================================= */

@keyframes phoneFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes floatSlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes floatTop {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes floatBottom {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 1200px) {

    .hero-title {

        font-size: 62px;

    }

}

@media(max-width: 992px) {

    .hero-container {

        flex-direction: column;
        text-align: center;

    }

    .hero-content,
    .hero-visual {

        width: 100%;

    }

    .hero-description {

        margin-inline: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

}

@media(max-width: 768px) {

    .hero-title {

        font-size: 46px;

    }

    .hero-description {

        font-size: 16px;

    }

    .hero-visual {

        height: 500px;

    }

    .phone-frame {

        width: 220px;
        height: 440px;

    }

    .food-card,
    .bowl-card {

        width: 110px;
        height: 110px;

    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width: 768px) {

    /* اخفاء كامل العناصر العائمة */

    .side-foods,
    .bowl-card {

        display: none;

    }

    /* تصغير الهاتف وتوسيطه */

    .hero-visual {

        height: auto;

        margin-top: 20px;

    }

    .phone-frame {

        width: 220px;
        height: 440px;

    }

}

/* السيكشن التالي  */

/* =========================================
DELIVERY SECTION
========================================= */

.delivery-section {

    position: relative;

    height: 520px;

    overflow: hidden;

    border-radius: 0;

}

/* =========================================
BACKGROUND
========================================= */

.delivery-bg {

    position: absolute;

    inset: 0;

    z-index: 1;

}

.delivery-bg img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation: zoomBg 12s ease-in-out infinite alternate;

}

/* =========================================
DARK OVERLAY
========================================= */

.delivery-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 35%,
            rgba(0, 0, 0, 0.15) 100%);

    z-index: 2;

}

/* =========================================
CONTENT
========================================= */

.delivery-content {

    position: relative;

    z-index: 5;

    max-width: 520px;

    padding-top: 120px;

    color: white;

}

/* =========================================
TITLE
========================================= */

.delivery-title {

    font-size: 64px;
    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 24px;

}

.delivery-title span {

    color: var(--primary-color);

}

/* =========================================
DESCRIPTION
========================================= */

.delivery-description {

    font-size: 18px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 40px;

}

/* =========================================
STATS
========================================= */

.delivery-stats {

    display: flex;
    align-items: center;
    gap: 50px;

}

.delivery-stat {

    display: flex;
    align-items: center;
    gap: 14px;

}

/* =========================================
ICON
========================================= */

.stat-icon {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    border: 1px solid rgba(255, 255, 255, 0.12);

}

/* =========================================
TEXT
========================================= */

.delivery-stat h3 {

    font-size: 28px;
    font-weight: 800;

    margin-bottom: 2px;

}

.delivery-stat span {

    font-size: 14px;

    color: rgba(255, 255, 255, 0.7);

}

/* =========================================
ANIMATION
========================================= */

@keyframes zoomBg {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.05);

    }

}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 992px) {

    .delivery-title {

        font-size: 48px;

    }

}

@media(max-width: 768px) {

    .delivery-section {

        height: auto;

    }

    .delivery-content {

        padding-top: 90px;
        padding-bottom: 90px;

    }

    .delivery-title {

        font-size: 40px;

    }

    .delivery-description {

        font-size: 16px;

    }

    .delivery-stats {

        flex-direction: column;
        align-items: flex-start;
        gap: 25px;

    }

}

/* =========================================
CONCIERGE SECTION
========================================= */

.concierge-section {

    padding: 100px 0;

    background: #f5f7f6;

}

/* =========================================
WRAPPER
========================================= */

.concierge-wrapper {

    background: #f8f8f8;

    border-radius: 36px;

    padding: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05);

}

/* =========================================
LEFT
========================================= */

.concierge-content {

    width: 48%;
    max-width: 520px;

}

.concierge-title {

    font-size: 64px;
    line-height: 1.08;

    font-weight: 800;

    color: var(--secondary-color);

    margin-bottom: 28px;

    letter-spacing: -2px;

}

.concierge-title span {

    display: block;

    color: var(--primary-color);

}

.concierge-description {

    font-size: 20px;
    line-height: 1.9;

    color: var(--text-light);

    margin-bottom: 38px;

}

/* =========================================
FEATURES
========================================= */

.concierge-features {

    display: flex;
    flex-direction: column;
    gap: 20px;

}

.feature-item {

    display: flex;
    align-items: center;
    gap: 14px;

    color: #4b5563;

    font-size: 17px;
    font-weight: 600;

}

/* =========================================
ICON
========================================= */

.feature-icon {

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: rgba(0, 146, 69, 0.1);

    color: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 800;

}

/* =========================================
RIGHT CHAT
========================================= */
.chat-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* MESSAGE BASE */
.message {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 18px;
    line-height: 1.7;

    opacity: 0;
    transform: translateY(15px);
}

/* USER MESSAGE - RIGHT */
.user-message {
    align-self: flex-end;

    background: var(--primary);
    color: #fff;

    border-bottom-right-radius: 6px;

    animation: messageOne 8s infinite;
}

/* AI MESSAGE - LEFT */
.ai-message {
    align-self: flex-start;

    background: rgba(255,255,255,0.08);
    color: #fff;

    border: 1px solid rgba(255,255,255,0.08);

    border-bottom-left-radius: 6px;

    animation: messageTwo 8s infinite;
}
.chat-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* BASE MESSAGE */
.message {
    opacity: 0;
    transform: translateY(15px);
}

/* USER MESSAGE */
.user-message {
    animation: messageOne 8s infinite;
}

/* AI MESSAGE */
.ai-message {
    animation: messageTwo 8s infinite;
}

/* FIRST MESSAGE */
@keyframes messageOne {

    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    70% {
        opacity: 1;
        transform: translateY(0);
    }

    85% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
    }
}

/* SECOND MESSAGE */
@keyframes messageTwo {

    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    25% {
        opacity: 0;
        transform: translateY(15px);
    }

    38% {
        opacity: 1;
        transform: translateY(0);
    }

    70% {
        opacity: 1;
        transform: translateY(0);
    }

    85% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
    }
}
.concierge-chat {

    width: 52%;

    display: flex;
    justify-content: center;

}

/* =========================================
CHAT CARD
========================================= */

.chat-card {

    width: 100%;
    max-width: 470px;

    background: #ffffff;

    border-radius: 26px;

    overflow: hidden;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08);

    animation: chatFloat 5s ease-in-out infinite;

}

/* =========================================
HEADER
========================================= */

.chat-header {

    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #ececec;

}

.chat-user {

    display: flex;
    align-items: center;
    gap: 14px;

}

.chat-avatar {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--primary-color);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

}

.chat-user h4 {

    font-size: 18px;
    font-weight: 800;

    color: var(--secondary-color);

}

.chat-user span {

    font-size: 13px;

    color: var(--primary-color);

    font-weight: 600;

}

.chat-dots {

    color: #9ca3af;

    font-size: 22px;

}

/* =========================================
BODY
========================================= */

.chat-body {

    padding: 24px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    background: #fafafa;

}

/* =========================================
MESSAGES
========================================= */

.message {

    max-width: 78%;

    padding: 16px 18px;

    border-radius: 18px;

    font-size: 15px;
    line-height: 1.8;

}

.user-message {

    background: #efefef;

    color: #444;

}

.ai-message {

    background: rgba(0, 146, 69, 0.08);

    color: #333;

    margin-left: auto;

}

/* =========================================
INPUT
========================================= */

.chat-input {

    padding: 18px 20px;

    background: white;

    display: flex;
    align-items: center;
    gap: 12px;

}

.chat-input input {

    flex: 1;

    height: 54px;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    padding-inline: 18px;

    font-family: 'Cairo', sans-serif;

    font-size: 15px;

    outline: none;

}

.chat-input button {

    width: 54px;
    height: 54px;

    border: none;

    border-radius: 14px;

    background: var(--primary-color);

    color: white;

    cursor: pointer;

    font-size: 18px;

    transition: .3s ease;

}

.chat-input button:hover {

    transform: scale(1.05);

}

/* =========================================
FLOATING ANIMATION
========================================= */

@keyframes chatFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 1100px) {

    .concierge-title {

        font-size: 52px;

    }

}

@media(max-width: 992px) {

    .concierge-wrapper {

        flex-direction: column;

        padding: 50px 30px;

    }

    .concierge-content,
    .concierge-chat {

        width: 100%;
        max-width: 100%;

    }

}

@media(max-width: 768px) {

    .concierge-section {

        padding: 70px 0;

    }

    .concierge-wrapper {

        border-radius: 24px;

        padding: 35px 22px;

    }

    .concierge-title {

        font-size: 40px;

    }

    .concierge-description {

        font-size: 16px;

    }

    .feature-item {

        font-size: 15px;

    }

    .message {

        max-width: 100%;

        font-size: 14px;

    }

}

/* =========================================
FOOD SLIDER
========================================= */

.food-slider-section {

    padding: 40px 0 80px;

    overflow: hidden;

    background: #f5f7f6;

}

/* =========================================
WRAPPER
========================================= */

.slider-wrapper {

    width: 100%;

    overflow: hidden;

    position: relative;

}

/* =========================================
TRACK
========================================= */

.food-track {

    display: flex;
    align-items: center;
    gap: 22px;

    width: max-content;

    animation: infiniteScroll 35s linear infinite;

}

/* =========================================
SLIDE
========================================= */

.food-slide {

    position: relative;

    width: 260px;
    height: 360px;

    overflow: hidden;

    border-radius: 18px;

    flex-shrink: 0;

    background: #ddd;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);

}

/* =========================================
IMAGE
========================================= */

.food-slide img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;

}

.food-slide:hover img {

    transform: scale(1.08);

}

/* =========================================
OVERLAY
========================================= */

.food-slide::after {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.55),
            transparent 50%);

}

/* =========================================
INFO
========================================= */

.food-info {

    position: absolute;

    left: 16px;
    bottom: 16px;

    z-index: 5;

}

.food-info small {

    display: inline-block;

    background: rgba(255, 255, 255, 0.9);

    color: #666;

    font-size: 11px;
    font-weight: 700;

    padding: 6px 10px;

    border-radius: 8px;

    margin-bottom: 8px;

}

.food-info h4 {

    color: white;

    font-size: 22px;
    font-weight: 800;

}

/* =========================================
INFINITE ANIMATION
========================================= */

@keyframes infiniteScroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(calc(-50% - 11px));

    }

}

/* =========================================
HOVER PAUSE
========================================= */

.food-track:hover {

    animation-play-state: paused;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 768px) {

    .food-slide {

        width: 190px;
        height: 270px;

    }

    .food-info h4 {

        font-size: 18px;

    }

}

/* =========================================
FOOTER
========================================= */

.footer {

    position: relative;

    background: #f5f7f6;

    border-top: 1px solid #e5e7eb;

    padding-top: 70px;

    overflow: hidden;

}

/* =========================================
TOP
========================================= */

.footer-top {

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 60px;

    padding-bottom: 60px;

}

/* =========================================
BRAND
========================================= */

.footer-logo {

    display: inline-block;

    text-decoration: none;

    color: var(--secondary-color);

    font-size: 36px;
    font-weight: 800;

    margin-bottom: 20px;

}

.footer-brand p {

    max-width: 300px;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 28px;

}

/* =========================================
SOCIALS
========================================= */

.footer-socials {

    display: flex;
    align-items: center;
    gap: 14px;

}

.footer-socials a {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: white;

    border: 1px solid #ececec;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--secondary-color);

    text-decoration: none;

    transition: .3s ease;

}

.footer-socials a:hover {

    background: var(--primary-color);

    color: white;

    transform: translateY(-3px);

}

/* =========================================
LINKS
========================================= */

.footer-links h4,
.footer-app h4 {

    font-size: 18px;
    font-weight: 800;

    color: var(--primary-color);

    margin-bottom: 24px;

}

.footer-links {

    display: flex;
    flex-direction: column;
    gap: 18px;

}

.footer-links a {

    text-decoration: none;

    color: #374151;

    font-size: 16px;
    font-weight: 600;

    transition: .3s ease;

}

.footer-links a:hover {

    color: var(--primary-color);

    transform: translateX(4px);

}

/* =========================================
APP
========================================= */

.footer-app p {

    color: var(--text-light);

    line-height: 1.9;

    margin-bottom: 25px;

}

/* =========================================
STORE BUTTONS
========================================= */

.app-buttons {

    display: flex;
    flex-direction: column;
    gap: 16px;

}

.store-btn {

    height: 72px;

    background: #000;

    border-radius: 14px;

    padding-inline: 20px;

    display: flex;
    align-items: center;
    gap: 16px;

    text-decoration: none;

    color: white;

    transition: .3s ease;

}

.store-btn:hover {

    transform: translateY(-3px);

}

.store-btn i {

    font-size: 28px;

}

.store-btn small {

    display: block;

    font-size: 11px;

    opacity: .7;

}

.store-btn span {

    font-size: 20px;
    font-weight: 700;

}

/* =========================================
BOTTOM
========================================= */

.footer-bottom {

    border-top: 1px solid #e5e7eb;

    padding: 28px 0;

    text-align: center;

}

.footer-bottom p {

    color: #6b7280;

    font-size: 15px;
    font-weight: 600;

}

/* =========================================
FLOAT BUTTON
========================================= */

.footer-float-btn {

    position: absolute;

    right: 40px;
    bottom: 30px;

    width: 64px;
    height: 64px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #2dd36f,
            var(--primary-color));

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    text-decoration: none;

    font-size: 24px;

    box-shadow:
        0 20px 40px rgba(0, 146, 69, 0.25);

    animation: floatButton 4s ease-in-out infinite;

}

/* =========================================
   HERO DOWNLOADS
========================================= */

.hero-downloads{

    display: flex !important;

    flex-direction: row !important;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}

/* =========================================
   DOWNLOAD CARD
========================================= */

.download-card{

    width: 180px;
    height: 90px;

    background: #fff;

    border-radius: 22px;

    padding-inline: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-decoration: none;

    border: 1px solid #ececec;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.06);

    transition: .3s ease;

}

.download-card:hover{

    transform: translateY(-5px);

}

/* =========================================
   LEFT
========================================= */

.download-left{

    display: flex;
    align-items: center;

    gap: 14px;

}

/* =========================================
   ICON
========================================= */

.download-left i{

    font-size: 38px;

    color: var(--primary-color);

}

/* =========================================
   TEXT
========================================= */

.download-text{

    line-height: 1.2;

}

.download-text small{

    display: block;

    color: #777;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 6px;

}

.download-text span{

    color: var(--secondary-color);

    font-size: 24px;
    font-weight: 800;

}

/* =========================================
   ARROW
========================================= */

.download-arrow{

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #f5f5f5;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #666;

    flex-shrink: 0;

}

/* =========================================
   DIRECT LINK
========================================= */

.direct-drive-link{

    display: inline-block;

    margin-top: 35px;

    color: #ef6c3e;

    font-size: 28px;
    font-weight: 300;

    text-decoration: underline;

}

/* =========================================
   MOBILE
========================================= */

@media(max-width: 768px){

    .hero-downloads{

        flex-direction: column;

        align-items: stretch;

    }

    .download-card{

        width: 100%;

    }

}


.download-card:hover{

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);

}

/* =========================================
   LEFT
========================================= */

.download-left{

    display: flex;
    align-items: center;

    gap: 16px;

}

/* =========================================
   ICON
========================================= */

.download-left i{

    font-size: 42px;

    color: var(--primary-color);

}

/* =========================================
   TEXT
========================================= */

.download-text{

    line-height: 1.3;

}

.download-text small{

    display: block;

    color: #666;

    font-size: 9px;
    font-weight: 600;

    margin-bottom: 4px;

}

.download-text span{

    color: var(--secondary-color);

    font-size: 15px;
    font-weight: 800;

}

/* =========================================
   ARROW
========================================= */

.download-arrow{

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #f3f4f6;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #666;

    transition: .3s ease;

}

.download-card:hover .download-arrow{

    background: var(--primary-color);

    color: white;

}

/* =========================================
   DIRECT DRIVE
========================================= */

.direct-drive-link{

    display: inline-block;

    color: #ef6c3e;

    /* font-size: 46px; */
    font-weight: 300;

    text-decoration: underline;

    transition: .3s ease;

}

.direct-drive-link:hover{

    opacity: .7;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 992px){

    .hero-downloads{

        justify-content: center;

    }

}

@media(max-width: 768px){

    .download-card{

        width: 100%;

    }

    .download-text span{

        font-size: 24px;

    }

    .direct-drive-link{

        font-size: 30px;

        text-align: center;

    }

}

/* =========================================
ANIMATION
========================================= */

@keyframes floatButton {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 1100px) {

    .footer-top {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width: 768px) {

    .footer {

        padding-top: 50px;

    }

    .footer-top {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .footer-logo {

        font-size: 28px;

    }

    .footer-float-btn {

        width: 54px;
        height: 54px;

        right: 20px;

    }

}

/* =========================================
WRAPPER
========================================= */

.slider-wrapper {

    width: 100%;

    overflow: hidden;

    position: relative;

}

/* =========================================
TRACK
========================================= */

.food-track {

    display: flex;
    align-items: center;
    gap: 22px;

    width: max-content;

    will-change: transform;

    animation: infiniteLoop 45s linear infinite;

}

/* =========================================
REAL INFINITE LOOP
========================================= */

@keyframes infiniteLoop {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-33.3333%);

    }

}

/* =========================================
LOGO
========================================= */

.logo {

    display: flex;
    align-items: center;

    text-decoration: none;

}

.logo img {

    width: 170px;

    height: auto;

    object-fit: contain;

    display: block;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 768px) {

    .logo img {

        width: 130px;

    }

}
.food-grid-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* SECTION HEADER */
.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 100px;

    background: rgba(255,255,255,0.06);

    font-size: 14px;
    color: var(--primary);

    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;

    margin-bottom: 20px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

/* GRID */
.food-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;
}

/* ITEM */
.food-item {
    text-align: center;
    text-decoration: none;

    transition: 0.35s ease;
}

/* IMAGE WRAPPER */
.food-image {
    width: 180px;
    height: 180px;

    margin: 0 auto 18px;

    border-radius: 50%;

    overflow: hidden;

    position: relative;

    border: 4px solid rgba(255,255,255,0.06);

    transition: 0.35s ease;

    background: rgba(255,255,255,0.03);
}

/* IMAGE */
.food-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

/* NAME */
.food-item h4 {
    font-size: 18px;
    font-weight: 700;

    color: #2ecb70;

    transition: 0.3s ease;
}

/* HOVER */
.food-item:hover .food-image {
    transform: translateY(-8px) scale(1.04);

    border-color: var(--primary);

    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.food-item:hover .food-image img {
    transform: scale(1.08);
}

.food-item:hover h4 {
    color: var(--primary);
}

/* RESPONSIVE */
@media(max-width: 992px) {

    .food-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .food-image {
        width: 150px;
        height: 150px;
    }

}

@media(max-width: 768px) {

    .food-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .food-image {
        width: 130px;
        height: 130px;
    }

}

@media(max-width: 480px) {

    .food-image {
        width: 110px;
        height: 110px;
    }

    .food-item h4 {
        font-size: 16px;
    }

}


/* about */

/* =========================
   ABOUT HERO
========================= */

.about-hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 140px 0;

    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(46, 203, 112, 0.10),
            transparent 30%),

        linear-gradient(
            to bottom,
            #ffffff,
            var(--body-bg)
        );
}

/* WRAPPER */
.about-hero-wrapper {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    align-items: center;

    gap: 100px;
}

/* CONTENT */
.about-content {
    position: relative;
    z-index: 2;
}

/* BADGE */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;

    background: rgba(46, 203, 112, 0.08);

    border: 1px solid rgba(46, 203, 112, 0.15);

    border-radius: 100px;

    color: var(--primary-color);

    font-size: 15px;
    font-weight: 700;

    margin-bottom: 30px;
}

.about-badge::before {
    content: '';

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--primary-color);

    box-shadow:
        0 0 12px rgba(46, 203, 112, 0.5);
}

/* TITLE */
.about-title {
    font-size: 76px;
    line-height: 1.05;
    font-weight: 900;

    color: var(--secondary-color);

    margin-bottom: 30px;
}

.about-title span {
    color: var(--primary-color);
}

/* DESCRIPTION */
.about-description {
    font-size: 20px;
    line-height: 2;

    color: var(--text-light);

    max-width: 650px;

    margin-bottom: 45px;
}

/* STATS */
.about-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* STAT */
.about-stat {
    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.5);

    border-radius: var(--radius-lg);

    padding: 24px 34px;

    min-width: 170px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.about-stat:hover {
    transform: translateY(-6px);
}

/* NUMBER */
.about-stat h3 {
    font-size: 34px;
    font-weight: 900;

    color: var(--primary-color);

    margin-bottom: 8px;
}

/* TEXT */
.about-stat span {
    color: var(--text-light);

    font-size: 15px;
}

/* IMAGE */
.about-image {
    position: relative;

    display: flex;
    justify-content: center;
}

/* IMAGE CARD */
.about-image-card {
    position: relative;

    width: 520px;

    border-radius: 38px;

    overflow: hidden;

    transform: rotate(-2deg);

    background: #dff5e8;

    box-shadow:
        0 40px 90px rgba(17, 24, 39, 0.12);
}

/* IMAGE */
.about-image-card img {
    width: 100%;
    display: block;
}

/* FLOATING CARD */
.floating-delivery {
    position: absolute;

    top: -25px;
    right: 20px;

    display: flex;
    align-items: center;
    gap: 16px;

    background: rgba(255,255,255,0.9);

    backdrop-filter: blur(10px);

    border-radius: 22px;

    padding: 18px 24px;

    box-shadow:
        0 20px 50px rgba(17, 24, 39, 0.12);

    animation: floatCard 4s ease-in-out infinite;
}

/* ICON */
.floating-icon {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-color);

    color: var(--white);

    font-size: 24px;
}

/* TEXT */
.floating-delivery small {
    display: block;

    color: var(--text-light);

    margin-bottom: 4px;
}

.floating-delivery strong {
    color: var(--secondary-color);

    font-size: 20px;
    font-weight: 800;
}

/* FLOAT */
@keyframes floatCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px) {

    .about-hero-wrapper {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 70px;
    }

    .about-description {
        margin-inline: auto;
    }

    .about-stats {
        justify-content: center;
    }

    .about-title {
        font-size: 58px;
    }

}

@media(max-width: 768px) {

    .about-hero {
        padding: 110px 0;
    }

    .about-title {
        font-size: 42px;
    }

    .about-description {
        font-size: 18px;
    }

    .about-image-card {
        width: 100%;
    }

    .floating-delivery {
        right: 0;
    }

}

@media(max-width: 480px) {

    .about-stats {
        flex-direction: column;
    }

    .about-stat {
        width: 100%;
    }

    .about-title {
        font-size: 36px;
    }

}


/* =========================
   WHY US SECTION
========================= */

.why-us-section {
    position: relative;

    padding: 140px 0;

    background:
        linear-gradient(
            to bottom,
            #f9fbfa,
            #edf5f1
        );
}

/* GRID */
.why-us-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

/* CARD */
.why-card {
    position: relative;

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(14px);

    border-radius: 30px;

    padding: 45px 35px;

    border: 1px solid rgba(255,255,255,0.6);

    overflow: hidden;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}

/* TOP BORDER */
.why-card::before {
    content: '';

    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 4px;

    background: var(--primary-color);
}

/* HOVER */
.why-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.08);
}

/* ICON */
.why-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: rgba(46, 203, 112, 0.10);

    color: var(--primary-color);

    font-size: 32px;

    margin-bottom: 30px;
}

/* TITLE */
.why-card h3 {
    font-size: 32px;
    font-weight: 800;

    color: var(--secondary-color);

    margin-bottom: 20px;
}

/* TEXT */
.why-card p {
    font-size: 17px;
    line-height: 2;

    color: var(--text-light);

    margin-bottom: 35px;
}

/* FOOTER */
.why-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 24px;

    border-top: 1px solid var(--border-color);
}

.why-footer span {
    color: var(--primary-color);

    font-weight: 700;
}

.why-footer small {
    color: var(--text-light);

    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 992px) {

    .why-us-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 768px) {

    .why-us-section {
        padding: 100px 0;
    }

    .why-card {
        padding: 35px 28px;
    }

    .why-card h3 {
        font-size: 28px;
    }

}

/* =========================
   COVERAGE SECTION
========================= */

.coverage-section {
    position: relative;

    padding: 140px 0;

    background: var(--body-bg);
}

/* WRAPPER */
.coverage-wrapper {
    display: grid;

    grid-template-columns: 1.2fr 1fr;

    align-items: center;

    gap: 90px;
}

/* IMAGE */
.coverage-image {
    position: relative;
}

/* CARD */
.coverage-image-card {
    position: relative;

    border-radius: 34px;

    overflow: hidden;

    background: #000;

    box-shadow:
        0 35px 80px rgba(0,0,0,0.12);
}

/* IMAGE */
.coverage-image-card img {
    width: 100%;
    display: block;
}

/* FLOATING */
.coverage-floating {
    position: absolute;

    bottom: 25px;
    left: 25px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(10px);

    padding: 16px 20px;

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.12);
}

/* DOT */
.coverage-dot {
    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--primary-color);

    box-shadow:
        0 0 14px rgba(46,203,112,0.7);

    animation: pulseDot 2s infinite;
}

/* PULSE */
@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: .6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* TEXT */
.coverage-floating small {
    display: block;

    color: var(--text-light);

    margin-bottom: 4px;
}

.coverage-floating strong {
    color: var(--secondary-color);

    font-size: 18px;
}

/* CONTENT */
.coverage-content {
    position: relative;
}

/* TITLE */
.coverage-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 900;

    color: var(--secondary-color);

    margin: 24px 0;
}

.coverage-title span {
    color: var(--primary-color);
}

/* DESCRIPTION */
.coverage-description {
    font-size: 18px;
    line-height: 2;

    color: var(--text-light);

    margin-bottom: 40px;
}

/* FEATURES */
.coverage-features {
    display: flex;
    flex-direction: column;

    gap: 18px;

    margin-bottom: 40px;
}

/* FEATURE */
.coverage-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    background: rgba(255,255,255,0.7);

    padding: 22px;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border-color);

    transition: var(--transition);
}

.coverage-feature:hover {
    transform: translateY(-5px);
}

/* ICON */
.coverage-feature-icon {
    width: 58px;
    height: 58px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(46,203,112,0.1);

    color: var(--primary-color);

    font-size: 24px;

    flex-shrink: 0;
}

/* TEXT */
.coverage-feature h4 {
    font-size: 22px;
    font-weight: 800;

    color: var(--secondary-color);

    margin-bottom: 10px;
}

.coverage-feature p {
    color: var(--text-light);

    line-height: 1.9;
}

/* STATS */
.coverage-stats {
    display: flex;
    gap: 18px;
}

/* STAT */
.coverage-stat {
    flex: 1;

    padding: 24px;

    border-radius: 20px;

    background: rgba(255,255,255,0.75);

    text-align: center;

    border: 1px solid var(--border-color);

    box-shadow: var(--shadow-sm);
}

.coverage-stat h3 {
    font-size: 36px;
    font-weight: 900;

    color: var(--secondary-color);

    margin-bottom: 10px;
}

.coverage-stat span {
    color: var(--text-light);
}

/* ACTIVE */
.coverage-stat.active {
    background: var(--primary-color);
}

.coverage-stat.active h3,
.coverage-stat.active span {
    color: var(--white);
}

/* RESPONSIVE */
@media(max-width: 992px) {

    .coverage-wrapper {
        grid-template-columns: 1fr;
    }

    .coverage-content {
        text-align: center;
    }

    .coverage-title {
        font-size: 52px;
    }

}

@media(max-width: 768px) {

    .coverage-section {
        padding: 100px 0;
    }

    .coverage-title {
        font-size: 40px;
    }

    .coverage-stats {
        flex-direction: column;
    }

}

@media(max-width: 480px) {

    .coverage-feature {
        flex-direction: column;
        text-align: center;
    }

}





/* ========================================
   FAQ HERO
======================================== */

.faq-hero {

    padding: 120px 20px 80px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #f3f5f6 0%,
            #f7f8f8 100%
        );
}

.faq-hero .container {

    max-width: 850px;

    margin: auto;
}

.faq-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    border-radius: 999px;

    background: rgba(46, 203, 112, 0.08);

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 28px;
}

.faq-title {

    font-size: clamp(42px, 5vw, 70px);

    font-weight: 900;

    line-height: 1.1;

    color: var(--secondary-color);

    margin-bottom: 18px;
}

.faq-subtitle {

    font-size: 18px;

    line-height: 1.9;

    color: var(--text-light);

    max-width: 700px;

    margin: auto;
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {

    padding: 20px 20px 100px;

    background: var(--body-bg);
}

.faq-section .container {

    max-width: 1280px;

    margin: auto;
}

/* ITEM */

.faq-item {

    background: var(--white);

    border: 1px solid var(--border-color);

    border-radius: 26px;

    padding: 38px;

    margin-bottom: 22px;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}

.faq-item:hover {

    transform: translateY(-2px);
}

/* QUESTION */

.faq-question {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    cursor: pointer;
}

.faq-question-right {

    display: flex;

    align-items: center;

    gap: 24px;
}

.faq-question h3 {

    font-size: 24px;

    font-weight: 800;

    line-height: 1.7;

    color: var(--secondary-color);

    margin: 0;
}

/* NUMBER */

.faq-number {

    min-width: 68px;

    height: 68px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f3f5f4;

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 800;
}

/* TOGGLE */

.faq-toggle {

    width: 52px;

    height: 52px;

    border: none;

    border-radius: 50%;

    background: transparent;

    color: var(--text-light);

    font-size: 16px;

    cursor: pointer;

    transition: var(--transition);
}

.faq-item.active .faq-toggle i {

    transform: rotate(180deg);
}

/* ANSWER */

.faq-answer {

    margin-top: 35px;
}

.faq-answer-box {

    background: #f5f6f7;

    border-right: 3px solid var(--primary-color);

    border-radius: 22px;

    padding: 38px;
}

.faq-answer-box p {

    font-size: 18px;

    line-height: 2;

    color: var(--text-color);

    margin-bottom: 28px;
}

/* TAGS */

.faq-tags {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.faq-tag {

    padding: 10px 18px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;
}

.faq-tag.green {

    background: rgba(46, 203, 112, 0.12);

    color: #18a957;
}

.faq-tag.purple {

    background: #e7e9ff;

    color: #6366f1;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 992px) {

    .faq-item {

        padding: 28px;
    }

    .faq-question-right {

        gap: 18px;
    }

    .faq-question h3 {

        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .faq-hero {

        padding: 90px 18px 60px;
    }

    .faq-title {

        font-size: 42px;
    }

    .faq-subtitle {

        font-size: 15px;
    }

    .faq-item {

        padding: 22px;

        border-radius: 22px;
    }

    .faq-question {

        align-items: flex-start;
    }

    .faq-question-right {

        gap: 14px;
    }

    .faq-number {

        min-width: 52px;

        height: 52px;

        font-size: 13px;

        border-radius: 14px;
    }

    .faq-question h3 {

        font-size: 17px;

        line-height: 1.8;
    }

    .faq-answer-box {

        padding: 24px;
    }

    .faq-answer-box p {

        font-size: 15px;

        line-height: 1.9;
    }

    .faq-toggle {

        width: 42px;

        height: 42px;
    }
}

/* FAQ ANSWER ANIMATION */
.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .45s ease,
        margin-top .3s ease;
}

/* OPEN */
.faq-item.active .faq-answer {

    margin-top: 35px;
}

/* ROTATE ICON */
.faq-toggle i {

    transition: transform .3s ease;
}

.faq-item.active .faq-toggle i {

    transform: rotate(180deg);
}



/* ========================================
   FOOTER
======================================== */

.footer {

    background: var(--white);

    border-top: 1px solid var(--border-color);

    padding-top: 80px;

    overflow: hidden;
}

.footer .container {

    max-width: 1300px;

    margin: auto;

    padding: 0 20px;
}

/* TOP */

.footer-top {

    display: grid;

    grid-template-columns:
        1.3fr
        .8fr
        1fr;

    gap: 60px;

    padding-bottom: 50px;
}

/* BRAND */

.footer-brand {

    max-width: 360px;
}

.footer-logo {

    display: inline-flex;

    align-items: center;

    margin-bottom: 24px;

    text-decoration: none;
}

.footer-logo img {

    width: 170px;

    height: auto;

    object-fit: contain;
}

.footer-brand p {

    font-size: 15px;

    line-height: 2;

    color: var(--text-light);

    margin-bottom: 28px;
}

/* SOCIALS */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 14px;
}

.footer-socials a {

    width: 44px;

    height: 44px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f3f5f6;

    color: var(--secondary-color);

    font-size: 15px;

    transition: var(--transition);
}

.footer-socials a:hover {

    background: var(--primary-color);

    color: var(--white);

    transform: translateY(-3px);
}

/* LINKS */

.footer-links h4,
.footer-contact h4 {

    font-size: 18px;

    font-weight: 800;

    color: var(--secondary-color);

    margin-bottom: 24px;
}

.footer-links {

    display: flex;

    flex-direction: column;
}

.footer-links a {

    width: fit-content;

    font-size: 15px;

    color: var(--text-light);

    text-decoration: none;

    margin-bottom: 16px;

    transition: var(--transition);
}

.footer-links a:hover {

    color: var(--primary-color);

    transform: translateX(-4px);
}

/* CONTACT */

.footer-contact-list {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.footer-contact-item {

    padding: 18px 20px;

    border-radius: var(--radius-lg);

    background: #f3f5f6;

    border: 1px solid var(--border-color);
}

.footer-contact-item span {

    display: block;

    font-size: 13px;

    color: var(--text-light);

    margin-bottom: 8px;
}

.footer-contact-item a {

    font-size: 18px;

    font-weight: 800;

    color: var(--secondary-color);

    text-decoration: none;

    transition: var(--transition);
}

.footer-contact-item a:hover {

    color: var(--primary-color);
}

/* BOTTOM */

.footer-bottom {

    border-top: 1px solid var(--border-color);

    padding: 24px 0;

    text-align: center;
}

.footer-bottom p {

    font-size: 14px;

    color: var(--text-light);

    margin: 0;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 992px) {

    .footer-top {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .footer-brand {

        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .footer {

        padding-top: 60px;
    }

    .footer-logo img {

        width: 130px;

        /* height: 62px; */
    }

    .footer-contact-item a {

        font-size: 16px;
    }
}

/* CHAT HEADER */

.chat-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 26px 28px;

    position: relative;

    z-index: 2;
}

/* USER */

.chat-user {

    display: flex;

    align-items: center;

    gap: 16px;
}

/* AVATAR */

.chat-avatar {

    width: 64px;

    height: 64px;

    border-radius: 20px;

    overflow: hidden;

    flex-shrink: 0;

    background: rgba(255,255,255,.08);

    border: 2px solid rgba(255,255,255,.12);

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);
}

.chat-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}

/* TEXT */

.chat-user h4 {

    font-size: 28px;

    font-weight: 900;

    color: var(--white);

    margin-bottom: 8px;

    line-height: 1;
}

.chat-user span {

    font-size: 16px;

    color: var(--primary-color);

    font-weight: 700;
}

/* DOTS */

.chat-dots {

    font-size: 42px;

    line-height: 1;

    color: var(--white);

    letter-spacing: 4px;

    opacity: .9;
}

/* MOBILE */

@media (max-width: 768px) {

    .chat-header {

        padding: 20px;
    }

    .chat-avatar {

        width: 54px;

        height: 54px;

        border-radius: 18px;
    }

    .chat-user h4 {

        font-size: 22px;
    }

    .chat-user span {

        font-size: 14px;
    }

    .chat-dots {

        font-size: 32px;
    }
}

/* DOWNLOAD NAV BUTTONS */

.nav-download-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    height: 46px;

    padding: 0 18px;

    border-radius: 999px;

    background: rgba(46, 203, 112, 0.10);

    border: 1px solid rgba(46, 203, 112, 0.16);

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    transition: var(--transition);
}

/* .nav-download-btn:hover {

    background: var(--primary-color);

    color: var(--white);

    transform: translateY(-2px);
} */

/* DRIVER BUTTON */

.driver-btn {

    background: var(--body-bg);

    border-color: var(--text-light);

    color: var(--white);
}

.driver-btn:hover {

    background: var(--primary-color);

    border-color: var(--primary-color);
}

/* ICON */

.nav-download-btn i {

    font-size: 15px;
}

/* MOBILE */

@media (max-width: 992px) {

    .nav-download-btn {

        width: 100%;

        justify-content: center;
    }
}