/* 
 * Premium Menu & Product Display System v4.0
 * Clean, Deduplicated & High-Performance
 */

:root {
    /* Official Brand Identity Colors v8.0 */
    --brand-teal: #3CD6CA;
    --brand-red: #F13E3E;
    --brand-gold: #DBBA5D;
    --brand-navy: #103B66;
    --brand-purple: #3A2868;
    --brand-off-white: #F8F9FA;

    /* Functional Mapping */
    --kq-primary: var(--brand-teal);
    --kq-primary-deep: #32B3A9;
    /* Darkened Teal */
    --kq-accent: var(--brand-red);
    --kq-gold: var(--brand-gold);
    --kq-navy: var(--brand-navy);
    --kq-gold-light: rgba(219, 186, 93, 0.2);
    --kq-bg-soft: var(--brand-off-white);
    --kq-card-shadow: 0 10px 30px rgba(60, 214, 202, 0.08);
    --kq-card-shadow-hover: 0 20px 45px rgba(60, 214, 202, 0.15);
    --kq-radius-xl: 24px;
    --kq-radius-lg: 18px;
    --kq-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Typography */
    --kq-font-main: 'Dubai', 'Cairo', sans-serif;
}

body {
    font-family: var(--kq-font-main);
}

/* Force image visibility site-wide */
img[loading="lazy"],
.kq-card-modern img,
.kq-modal-img img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* --- Category Navbar --- */
.kq-category-nav-wrapper {
    position: relative;
    margin-bottom: 40px;
    padding: 10px 0;
}

.kq-category-navbar {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.kq-category-navbar::-webkit-scrollbar {
    display: none;
}

.kq-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: #fdfdfd;
    border-radius: 12px;
    min-width: 80px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.kq-cat-item.active {
    background: var(--kq-primary);
    color: #fff;
    border-color: var(--kq-primary);
    box-shadow: 0 4px 12px rgba(30, 58, 52, 0.3);
}

.kq-cat-item.active i {
    color: #fff;
}

.kq-cat-item i {
    font-size: 1.1rem;
    color: var(--kq-primary);
    margin-bottom: 5px;
}

.kq-cat-item span {
    font-weight: 800;
    font-size: 0.8rem;
}

/* --- Product Grid & Card --- */
.kq-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.kq-card-modern {
    background: #fff;
    border-radius: var(--kq-radius-xl);
    overflow: hidden;
    box-shadow: var(--kq-card-shadow);
    transition: var(--kq-transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.kq-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--kq-card-shadow-hover);
    border-color: var(--kq-gold);
}

/* The Royal Frame (Full Bleed v7.0) */
.kq-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 !important;
}

.kq-card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover !important;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.kq-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--kq-primary);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.kq-card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kq-card-info h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 0 8px;
    color: var(--kq-primary);
    line-height: 1.3;
}

.kq-card-info p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.5;
}

.kq-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.kq-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.kq-card-price .val {
    font-size: 1.6rem;
    font-weight: 950;
    color: var(--kq-primary);
}

.kq-card-price .cur {
    font-size: 0.85rem;
    font-weight: 700;
    color: #999;
}

/* Card Add Button (Icon Only) */
.kq-add-btn-modern {
    background: var(--kq-primary);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.kq-add-btn-modern:hover {
    background: var(--kq-gold);
    transform: scale(1.1) rotate(90deg);
}

/* --- Category Navbar (Menu Filter) --- */
.kq-category-navbar {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.kq-category-navbar::-webkit-scrollbar {
    display: none;
}

.kq-cat-item {
    flex: 0 0 140px;
    /* Uniform width */
    text-align: center;
    background: #fff;
    padding: 15px 10px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.kq-cat-item i {
    display: block;
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: var(--kq-teal);
    transition: 0.3s;
}

.kq-cat-item span {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--kq-dark);
}

/* --- Royal Modern Header (v8.0 Clean Style) --- */
.royal-modern-header {
    background: transparent;
    padding: 80px 0 40px;
    text-align: center;
    color: var(--kq-dark);
    position: relative;
}

/* Remove pattern as requested */
.royal-modern-header::before {
    display: none;
}

.header-royal-stack {
    position: relative;
    z-index: 2;
}

.royal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 134, 11, 0.05);
    /* Very subtle gold */
    border: 1px solid rgba(184, 134, 11, 0.2);
    padding: 8px 22px;
    border-radius: 50px;
    color: #b8860b;
    /* Deep Gold for readability */
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.royal-modern-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 950;
    margin: 0 0 20px;
    color: var(--kq-navy);
    line-height: 1.1;
}

.royal-modern-header h1 span {
    color: var(--kq-teal);
    display: block;
    font-size: 0.8em;
    margin-top: 5px;
}

.h-subtitle {
    font-size: 1.35rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 700;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .royal-modern-header {
        padding: 40px 15px 60px;
    }

    .royal-modern-header h1 {
        font-size: 2.2rem;
    }

    .h-subtitle {
        font-size: 1rem;
    }
}

.kq-cat-item:hover,
.kq-cat-item.active {
    background: var(--kq-primary);
    border-color: var(--kq-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 52, 0.2);
}

/* --- Sticky Subnav (Menu Page) --- */
.kq-sticky-subnav-wrapper.sticky {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.4s ease;
    padding: 8px 0;
}

@media (max-width: 600px) {
    .kq-sticky-subnav-wrapper.sticky {
        top: 0;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* --- Product Modal (v5.1 Pixel-Perfect Match) --- */
.kq-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.kq-modal-overlay.active {
    display: flex;
}

.kq-modal-content {
    background: #fff;
    width: 100%;
    max-width: 340px;
    /* Thinner */
    border-radius: 16px;
    position: relative;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Lock total container */
    animation: kqModalZoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@keyframes kqModalZoom {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.kq-modal-img-wrap {
    width: 100%;
    height: 130px;
    /* Ultra short as requested */
    position: relative;
    background: #f8fbfb;
    overflow: hidden;
}

.kq-modal-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

.kq-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.kq-modal-body {
    padding: 10px 15px;
    overflow: hidden;
    /* Kill scroll as requested */
}

/* Hide scrollbar track for clean look */
.kq-modal-body::-webkit-scrollbar {
    width: 0;
}

.kq-modal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.kq-modal-header-row h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    text-align: right;
    line-height: 1.3;
}

.kq-modal-price-display {
    font-size: 1.35rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
    direction: ltr;
    /* English numbers for exact look */
}

.kq-modal-price-display .curr {
    font-size: 0.8rem;
    color: #333;
}

#kq-modal-desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: right;
}

.kq-modal-notes-area {
    margin-bottom: 10px;
}

.kq-modal-notes-area label {
    display: block;
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #333;
}

.kq-modal-notes-area textarea {
    width: 100%;
    height: 48px;
    /* Extremely compact as per screenshot intent */
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: inherit;
    font-size: 0.85rem;
    resize: none;
    outline: none;
}

.kq-modal-footer {
    padding: 12px 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    /* Tightest gap for image look */
    border-top: 1px solid #f0f0f0;
}

.kq-modal-qty-picker {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    padding: 4px;
    border-radius: 10px;
    gap: 8px;
}

.modal-qty-btn {
    width: 32px;
    /* Smaller btns */
    height: 32px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.modal-qty-btn:hover {
    background: #f0f0f0;
    color: #333;
}

#kq-modal-qty-val {
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
    color: #1a1a1a;
}

.kq-modal-add-btn-premium {
    flex: 2;
    /* Takes more space as prominent button */
    height: 42px;
    background: var(--kq-teal);
    /* Teal like screenshot */
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-family: var(--kq-font-main);
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
}

.kq-add-btn-txt {
    display: inline-block;
}

.kq-add-btn-price-group {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 950;
    font-size: 1rem;
}

.kq-add-btn-cur {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 700;
}

.kq-modal-add-btn-premium:hover {
    background: var(--kq-primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(60, 214, 202, 0.2);
}

@media (min-width: 769px) {
    .kq-modal-overlay {
        align-items: center;
    }

    .kq-modal-content {
        border-radius: 32px;
        animation: kqFadeIn 0.3s ease-out;
    }
}

@keyframes kqFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#kq-modal-add-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, var(--kq-primary-deep) 0%, var(--kq-primary) 100%);
}

.kq-btn-whatsapp-direct {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    margin-top: 15px;
    transition: 0.3s;
}

.kq-btn-whatsapp-direct:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* --- Cart Items (v7.0 Royal Control) --- */
.kq-cart-item {
    display: flex;
    align-items: center;
    /* Align with image */
    padding: 15px;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f2f2f2;
    gap: 15px;
}

.cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.cart-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0;
}

.item-info h4 {
    margin: 0;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--kq-primary);
}

.item-info span {
    font-weight: 700;
    color: #999;
}

.item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    padding: 5px;
    border-radius: 12px;
}

.item-qty .qty-num {
    flex: 1;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.item-qty .qty-btn {
    width: 42px;
    /* Larger for better touch v7.0 */
    height: 42px;
    border: none;
    background: #fff;
    border-radius: 10px;
    color: var(--kq-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-cart-item {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #ffb7b7;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: 0.3s;
}

.remove-cart-item:hover {
    color: #ff4d4d;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Royal Cart Options v7.5 */
.kq-cart-options-premium {
    margin-bottom: 25px;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.kq-label-royal {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--kq-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kq-label-royal i {
    color: var(--kq-gold);
}

.kq-type-selector-royal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.kq-type-btn-royal {
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
}

.kq-type-btn-royal.active {
    background: var(--kq-primary);
    color: #fff;
    border-color: var(--kq-primary);
    box-shadow: 0 5px 15px rgba(30, 58, 52, 0.2);
}

.kq-input-royal {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px !important;
    border: 1px solid #eee !important;
    font-size: 0.9rem !important;
    font-family: 'Cairo', sans-serif;
    outline: none;
    transition: 0.3s;
}

.kq-input-royal:focus {
    border-color: var(--kq-gold) !important;
    background: #fff;
}

.kq-datetime-inputs-royal {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
}

/* Removed Blur v7.6 */
.kq-modal-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.kq-sticky-subnav-wrapper.sticky {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Responsive Hacks */
@media (max-width: 600px) {
    .kq-container {
        padding: 0 15px !important;
    }

    .kq-grid-modern {
        grid-template-columns: 1fr !important;
        /* Single column for full width "Comfort" */
        gap: 25px !important;
    }

    .kq-card-img-wrap {
        height: auto !important;
        /* Allow aspect-ratio 1/1 to work */
    }

    .kq-card-modern {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto;
    }

    .kq-card-info h3 {
        font-size: 1.25rem !important;
    }

    .kq-cat-item {
        padding: 10px 12px !important;
        min-width: 75px !important;
    }

    .kq-cat-item i {
        font-size: 1rem !important;
    }

    .kq-cat-item span {
        font-size: 0.75rem !important;
    }

    .kq-cart-drawer {
        width: 100% !important;
        max-width: none !important;
        height: 100vh !important;
        height: 100dvh !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        transform: translateY(100%) !important;
        /* Start hidden below */
        border-radius: 0 !important;
        z-index: 100000 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s !important;
        display: flex !important;
        flex-direction: column !important;
        background: #fff !important;
    }

    .kq-cart-drawer.active {
        transform: translateY(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .kq-cart-header-premium {
        padding: 15px 20px !important;
        background: var(--kq-dark) !important;
        flex-shrink: 0 !important;
    }

    .kq-cart-header-premium h3 {
        font-size: 1.1rem !important;
    }

    .kq-cart-body-premium {
        padding: 15px !important;
        flex: 1 !important;
        overflow-y: auto !important;
        background: #fbfbfb !important;
        -webkit-overflow-scrolling: touch;
    }

    .kq-cart-footer-premium {
        padding: 20px !important;
        background: #fff !important;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
        flex-shrink: 0 !important;
    }

    /* REDESIGNED COMPACT DELIVERY OPTIONS */
    .kq-cart-options-premium {
        padding: 12px !important;
        margin-bottom: 15px !important;
        border-radius: 12px !important;
        background: white !important;
        border: 1px solid #f0f0f0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .kq-cart-options-premium .kq-option-group {
        margin-bottom: 12px !important;
    }

    .kq-cart-options-premium .kq-option-group:last-child {
        margin-bottom: 0 !important;
    }

    .kq-cart-options-premium label {
        font-size: 0.75rem !important;
        margin-bottom: 6px !important;
        font-weight: 800 !important;
        color: #555 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .kq-type-selector {
        background: #f0f0f0 !important;
        padding: 3px !important;
        border-radius: 10px !important;
    }

    .kq-type-btn {
        padding: 8px !important;
        font-size: 0.8rem !important;
        border-radius: 8px !important;
    }

    .kq-datetime-inputs {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .kq-datetime-inputs input {
        font-size: 0.8rem !important;
        padding: 8px !important;
        border: 1px solid #ddd !important;
        border-radius: 8px !important;
    }

    .kq-cart-total-premium {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }

    .total-val {
        font-size: 1.5rem !important;
    }

    .kq-btn-checkout-premium {
        padding: 15px !important;
        font-size: 1.1rem !important;
        border-radius: 50px !important;
    }
}

/* --- Menu CTA (Refined v8.0) --- */
.menu-cta {
    padding: 100px 0;
    background: var(--kq-off-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--kq-navy), var(--kq-purple));
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px rgba(16, 59, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box .gold-crown {
    font-size: 3rem;
    color: var(--kq-gold);
    margin-bottom: 25px;
    display: block;
}

.cta-box h2 {
    font-size: 2.8rem;
    font-weight: 950;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 35px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: #128C7E;
    color: #fff !important;
}