* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #111111;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo h2 {
    color: #8B0000;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}
/*desktop*/
.hamburger{
    display: none;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #111111;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #8B0000;
}

.login-btn,
.signup-btn,
.btn-primary,
.btn-secondary {
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.login-btn {
    border: 1px solid #8B0000;
    color: #8B0000;
}

.signup-btn,
.btn-primary {
    background: #8B0000;
    color: white;
}

.signup-btn:hover,
.btn-primary:hover {
    background: #6f0000;
}

.btn-secondary {
    border: 1px solid #D4AF37;
    color: #D4AF37;
}

.btn-secondary:hover {
    background: #D4AF37;
    color: white;
}

/* =========================
   PREMIUM HERO
========================= */

.hero {
    min-height: 92vh;
    background:
        linear-gradient(90deg, rgba(7,17,38,0.92), rgba(122,0,0,0.72)),
        url('/static/images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    right: -120px;
    top: 90px;
}

.hero-content {
    max-width: 760px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    color: #ffecec;
    padding: 9px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #f3dddd;
    max-width: 650px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 45px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.35s ease;
}

.hero-btn.primary {
    background: #ffffff;
    color: #b30000;
}

.hero-btn.secondary {
    border: 1px solid rgba(255,255,255,0.55);
    color: #ffffff;
}

.hero-btn:hover {
    transform: translateY(-5px);
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.hero-stats div {
    background: rgba(255,255,255,0.12);
    padding: 18px 24px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-stats strong {
    display: block;
    font-size: 24px;
    color: #ffffff;
}

.hero-stats span {
    font-size: 13px;
    color: #f3dddd;
}

.hero-floating-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    padding: 28px;
    border-radius: 28px;
    width: 260px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    animation: floatCard 3.5s ease-in-out infinite;
}

.hero-floating-card span {
    color: #b30000;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-floating-card h3 {
    color: #071126;
    font-size: 30px;
    margin: 10px 0;
}

.hero-floating-card p {
    color: #5f6b7a;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 90px 5%;
        gap: 35px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .hero-floating-card {
        width: 100%;
    }
}
/* =========================
   PREMIUM CATEGORIES
========================= */

.categories {
    padding: 100px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.categories h2 {
    font-size: 42px;
    color: #071126;
    margin-bottom: 45px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 26px;
    position: relative;
    z-index: 2;
}

.category-grid a {
    text-decoration: none;
    color: inherit;
}

.category-card {
    position: relative;
    background: rgba(255,255,255,0.92);
    padding: 38px 22px;
    border-radius: 26px;
    font-weight: 700;
    color: #071126;
    box-shadow: 0 18px 45px rgba(7, 17, 38, 0.07);
    border: 1px solid rgba(179, 0, 0, 0.06);
    transition: 0.35s ease;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(179, 0, 0, 0.07);
    border-radius: 50%;
    top: -45px;
    right: -45px;
    transition: 0.35s ease;
}

.category-card::after {
    content: "\f02b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 34px;
    color: rgba(179, 0, 0, 0.08);
}

.category-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #8b0000, #b30000);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(179, 0, 0, 0.25);
}

.category-card:hover::before {
    background: rgba(255,255,255,0.14);
    transform: scale(1.7);
}

.category-card:hover::after {
    color: rgba(255,255,255,0.18);
}

@media (max-width: 576px) {
    .categories {
        padding: 70px 5%;
    }

    .categories h2 {
        font-size: 30px;
    }

    .category-card {
        padding: 30px 18px;
    }
}

/* =========================
   PREMIUM FOOTER
========================= */

.footer {
    background: linear-gradient(135deg, #071126 0%, #111111 60%, #7a0000 140%);
    color: #ffffff;
    padding: 80px 8% 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-box h3 {
    font-size: 20px;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 26px;
}

.footer-box p {
    color: #d6d6d6;
    line-height: 1.8;
    font-size: 15px;
}

.footer-box a {
    display: block;
    color: #d6d6d6;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.footer-box a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    background: #b30000;
    transform: translateY(-5px);
}

.footer-box i {
    color: #d4af37;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 50px;
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    color: #cfcfcf;
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 5% 22px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
/* Responsive */
@media(max-width: 768px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

.alert-message {
    background: #8B0000;
    color: white;
    padding: 12px 20px;
    margin: 20px;
    border-radius: 10px;
}

.offer-detail-page {
    padding: 80px 8%;
    background: #f8f8f8;
}

.offer-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.offer-image img {
    width: 100%;
    border-radius: 20px;
    height: 500px;
    object-fit: cover;
}

.offer-info h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.offer-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.offer-meta p {
    margin-bottom: 12px;
    color: #444;
}

.offer-badge {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

@media(max-width: 768px) {
    .offer-detail-container {
        grid-template-columns: 1fr;
    }

    .offer-info h1 {
        font-size: 30px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #111;
    border-radius: 5px;
    transition: 0.3s ease;
}

@media (max-width: 992px) {
    .navbar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    padding: 12px 20px;
    position: relative;
}

    .logo {
        width: auto !important;
        margin: 0 !important;
        text-align: left !important;
        flex: 0 0 auto !important;
    }

    .logo h2 {
        margin: 0 !important;
        text-align: left !important;
        font-size: 28px;
        line-height: 1.2;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        flex: 0 0 auto !important;
        gap: 5px;
        cursor: pointer;
        margin-left: auto !important;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 8%;
        background: white;
        width: 260px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
    }
}
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

.offer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.signup-btn, .login-btn {
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: black;
    color: white;
    transform: scale(1.05);
}

.claim-form-box {
    margin-top: 25px;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 15px;
}

.claim-form-box h3 {
    margin-bottom: 15px;
}

.claim-form-box form p {
    margin-bottom: 15px;
}

.claim-form-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* ===== MOBILE IMPROVEMENTS ===== */
html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero {
    min-height: 90vh;
}

.offer-card a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 70px 5%;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .categories,
    .offers-section,
    .offer-detail-page,
    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .offer-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .offer-image img {
        height: 320px;
    }

    .offers-grid,
    .category-grid,
    .footer-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px !important;
    }

    .logo h2 {
        font-size: 22px !important;
    }

    .nav-links {
        right: 16px;
        width: 220px;
        padding: 16px;
    }

    .hero {
        padding: 60px 5%;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary,
    .signup-btn,
    .login-btn {
        width: 100%;
        text-align: center;
    }

    .categories h2,
    .offers-section h2,
    .offer-info h1 {
        font-size: 26px;
    }

    .category-grid,
    .offers-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .category-card {
        padding: 24px 16px;
    }

    .offer-card img {
        height: 220px;
    }

    .offer-content {
        padding: 16px;
    }

    .offer-info h1 {
        font-size: 28px;
    }

    .offer-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .offer-badge {
        font-size: 13px;
        padding: 8px 14px;
    }

    .claim-form-box {
        padding: 18px;
    }

    .claim-form-box input {
        padding: 10px;
        font-size: 14px;
    }

    .footer {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .footer-box h3 {
        font-size: 18px;
    }

    .alert-message {
        top: 12px;
        right: 12px;
        left: 12px;
        margin: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .logo h2 {
        font-size: 20px !important;
    }

    .offer-image img {
        height: 240px;
    }

    .offer-info h1,
    .categories h2,
    .offers-section h2 {
        font-size: 22px;
    }

    .nav-links {
        width: 200px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-header span {
    color: #b30000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    color: #071126;
    margin: 10px 0;
}

.section-header p {
    color: #5f6b7a;
    font-size: 16px;
}

/* =========================
   PREMIUM WHY CHOOSE US
========================= */

.kc-why-us {
    padding: 100px 8%;
    background: #f8f9fd;
    position: relative;
    overflow: hidden;
}

.kc-why-us .container {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.why-card {
    position: relative;
    background: #ffffff;
    padding: 34px 24px;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(7, 17, 38, 0.07);
    transition: 0.35s ease;
    overflow: hidden;
    border: 1px solid rgba(179, 0, 0, 0.06);
}

.why-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(179, 0, 0, 0.06);
    border-radius: 50%;
    top: -45px;
    right: -45px;
    transition: 0.35s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(7, 17, 38, 0.12);
}

.why-card:hover::before {
    transform: scale(1.5);
    background: rgba(179, 0, 0, 0.1);
}

.why-card i {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    background: #fff1f1;
    color: #b30000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px rgba(179, 0, 0, 0.12);
    transition: 0.35s ease;
}

.why-card:hover i {
    background: #b30000;
    color: #ffffff;
    transform: scale(1.08) rotate(-5deg);
}

.why-card h4 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    color: #071126;
    margin-bottom: 10px;
}

.why-card p {
    position: relative;
    z-index: 2;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.75;
}

/* Responsive */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .kc-why-us {
        padding: 70px 5%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PREMIUM JOIN AS VENTURE CTA
========================= */

.kc-venture-cta {
    padding: 100px 8%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.venture-cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #7a0000 0%, #b30000 55%, #d4af37 140%);
    color: #ffffff;
    border-radius: 34px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    box-shadow: 0 30px 80px rgba(179, 0, 0, 0.25);
}

.venture-cta-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}

.venture-cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -80px;
    left: 35%;
}

.venture-cta-content {
    position: relative;
    z-index: 2;
}

.venture-cta-content span {
    display: inline-block;
    background: rgba(255,255,255,0.16);
    color: #ffecec;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.venture-cta-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}

.venture-cta-content p {
    max-width: 700px;
    color: #ffecec;
    line-height: 1.8;
    font-size: 16px;
}

.venture-cta-btn {
    position: relative;
    z-index: 2;
    background: #ffffff;
    color: #b30000;
    padding: 16px 32px;
    border-radius: 45px;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.venture-cta-btn:hover {
    transform: translateY(-5px) scale(1.03);
    background: #fff7f7;
    box-shadow: 0 20px 45px rgba(0,0,0,0.24);
}

/* Responsive */
@media (max-width: 992px) {
    .venture-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 45px 28px;
    }

    .venture-cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .kc-venture-cta {
        padding: 70px 5%;
    }

    .venture-cta-content h2 {
        font-size: 28px;
    }
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    text-align: center;
    position: relative;
}

.popup-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.popup-box button {
    width: 100%;
    padding: 10px;
    background: #b30000;
    color: #fff;
    border: none;
    border-radius: 6px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

/* FINAL OFFERS SECTION */
.offers-section {
    padding: 80px 8%;
    background: #fff;
}

.offers-section h2 {
    font-size: 42px;
    color: #071126;
    margin-bottom: 35px;
}

.offers-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
}

.offers-grid > a {
    width: 100% !important;
    max-width: none !important;
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

.offer-card {
    width: 100% !important;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(7, 17, 38, 0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

.offer-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.offer-content {
    padding: 22px;
}

.offer-content h3 {
    font-size: 21px;
    color: #071126;
    margin-bottom: 10px;
}

.offer-content p {
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.6;
}

.offer-content span {
    display: inline-block;
    margin-top: 16px;
    background: #fff1f1;
    color: #b30000;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
}

/* tablet */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* mobile */
@media (max-width: 600px) {
    .offers-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== FINAL HARD FIX FOR OFFERS ===== */

.offers-section .offers-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    width: 100% !important;
}

.offers-section .offers-grid > a {
    width: auto !important;
    max-width: none !important;
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

.offers-section .offer-card {
    width: 100% !important;
    max-width: none !important;
    background: #fff !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 45px rgba(7, 17, 38, 0.08) !important;
}

.offers-section .offer-card img {
    width: 100% !important;
    height: 230px !important;
    object-fit: cover !important;
    display: block !important;
}

/* tablet */
@media (max-width: 992px) {
    .offers-section .offers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* mobile */
@media (max-width: 600px) {
    .offers-section .offers-grid {
        grid-template-columns: 1fr !important;
    }
}
/* =========================
   PREMIUM HOW IT WORKS
========================= */

.kc-how-it-works {
    padding: 100px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
    position: relative;
    overflow: hidden;
}

.kc-how-it-works::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(179, 0, 0, 0.06);
    border-radius: 50%;
    top: 40px;
    left: -90px;
}

.kc-how-it-works::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    right: -80px;
    bottom: 40px;
}

.how-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-card {
    position: relative;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
    padding: 38px 28px;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(7, 17, 38, 0.08);
    border: 1px solid rgba(255,255,255,0.8);
    transition: 0.35s ease;
    overflow: hidden;
}

.how-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(179,0,0,0.08), transparent 45%);
    opacity: 0;
    transition: 0.35s ease;
}

.how-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(7, 17, 38, 0.13);
}

.how-card:hover::before {
    opacity: 1;
}

.how-number {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 54px;
    font-weight: 900;
    color: rgba(179, 0, 0, 0.13);
    pointer-events: none;
}

.how-card i {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff1f1, #ffffff);
    color: #b30000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    box-shadow: 0 12px 28px rgba(179, 0, 0, 0.12);
    transition: 0.35s ease;
}

.how-card:hover i {
    transform: rotate(-6deg) scale(1.08);
    background: #b30000;
    color: #ffffff;
}

.how-card h4 {
    position: relative;
    z-index: 2;
    font-size: 22px;
    color: #071126;
    margin-bottom: 12px;
}

.how-card p {
    position: relative;
    z-index: 2;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   PREMIUM TRUSTED BRANDS (ENHANCED)
========================= */

.kc-trusted-brands {
    padding: 100px 8%;
    background: linear-gradient(180deg, #f8f9fd 0%, #ffffff 100%);
    overflow: hidden;
}

/* soft side fade */
.brand-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 24px 0;
}

.brand-marquee::before,
.brand-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f8f9fd, transparent);
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f8f9fd, transparent);
}

/* moving track */
.brand-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: brandScroll 26s linear infinite;
}

.brand-marquee:hover .brand-track {
    animation-play-state: paused;
}

/* 🔥 COLORFUL PILLS */
.brand-pill {
    min-width: 190px;
    padding: 22px 26px;
    border-radius: 22px;
    text-align: center;
    font-weight: 700;
    color: #071126;

    /* glass + gradient */
    background: linear-gradient(135deg, #fff1f1, #ffffff);
    border: 1px solid rgba(179, 0, 0, 0.1);

    box-shadow: 0 15px 40px rgba(7, 17, 38, 0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* glow effect */
.brand-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(179,0,0,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.brand-pill:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, #b30000, #7a0000);
    color: #fff;
    box-shadow: 0 20px 60px rgba(179, 0, 0, 0.3);
}

.brand-pill:hover::before {
    opacity: 1;
}

/* 🎨 ALTERNATING COLORS FOR VARIETY */
.brand-pill:nth-child(3n) {
    background: linear-gradient(135deg, #fff5e6, #ffffff);
}

.brand-pill:nth-child(4n) {
    background: linear-gradient(135deg, #f1fff5, #ffffff);
}

.brand-pill:nth-child(5n) {
    background: linear-gradient(135deg, #f1f5ff, #ffffff);
}

/* animation */
@keyframes brandScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* responsive */
@media (max-width: 576px) {
    .kc-trusted-brands {
        padding: 70px 5%;
    }

    .brand-pill {
        min-width: 150px;
        padding: 18px;
        font-size: 14px;
    }
}
/* =========================
   PREMIUM TESTIMONIALS
========================= */

.kc-testimonials {
    padding: 100px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    position: relative;
    background: rgba(255,255,255,0.9);
    padding: 34px 28px;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(7, 17, 38, 0.08);
    border: 1px solid rgba(179, 0, 0, 0.06);
    transition: 0.35s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(179, 0, 0, 0.06);
    border-radius: 50%;
    right: -50px;
    top: -50px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(7, 17, 38, 0.13);
}

.testimonial-card > i {
    color: #b30000;
    font-size: 32px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b0000, #b30000);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.testimonial-user h4 {
    color: #071126;
    font-size: 17px;
    margin-bottom: 4px;
}

.testimonial-user span {
    color: #b30000;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   PREMIUM FAQ
========================= */

.kc-faq {
    padding: 100px 8%;
    background: #ffffff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fd;
    margin-bottom: 18px;
    border-radius: 20px;
    padding: 0 24px;
    box-shadow: 0 14px 40px rgba(7, 17, 38, 0.06);
    border: 1px solid rgba(179, 0, 0, 0.06);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 700;
    color: #071126;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff1f1;
    color: #b30000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.3s ease;
}

.faq-item[open] summary::after {
    content: "−";
    background: #b30000;
    color: #ffffff;
}

.faq-item p {
    color: #5f6b7a;
    line-height: 1.8;
    padding-bottom: 24px;
    font-size: 15px;
}

@media (max-width: 576px) {
    .kc-faq {
        padding: 70px 5%;
    }

    .faq-item {
        padding: 0 18px;
    }

    .faq-item summary {
        font-size: 16px;
        gap: 15px;
    }
}
/* =========================
   PREMIUM FINAL CTA
========================= */

.kc-final-cta {
    padding: 100px 8%;
    background: linear-gradient(135deg, #071126 0%, #7a0000 70%, #b30000 100%);
    position: relative;
    overflow: hidden;
}

.kc-final-cta::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -120px;
    left: -100px;
}

.kc-final-cta::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(212,175,55,0.18);
    border-radius: 50%;
    right: -80px;
    bottom: -80px;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.final-cta-content span {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    color: #ffecec;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.final-cta-content h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.final-cta-content p {
    color: #f2dede;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.final-btn {
    padding: 15px 30px;
    border-radius: 45px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.35s ease;
}

.final-btn.primary {
    background: #ffffff;
    color: #b30000;
}

.final-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.5);
}

.final-btn:hover {
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .kc-final-cta {
        padding: 75px 5%;
    }

    .final-cta-content h2 {
        font-size: 30px;
    }

    .final-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   PREMIUM OFFERS SECTION
========================= */

.offers-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.offers-header {
    margin-bottom: 45px;
}

.offers-header span {
    color: #b30000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offers-header h2 {
    font-size: 46px;
    color: #071126;
    margin: 10px 0;
}

.offers-header p {
    color: #5f6b7a;
    font-size: 16px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-link {
    text-decoration: none;
    color: inherit;
}

.offer-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(7, 17, 38, 0.08);
    transition: 0.35s ease;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(7, 17, 38, 0.14);
}

.offer-image {
    position: relative;
    height: 240px;
    background: #fff1f1;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-discount {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #b30000;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(179, 0, 0, 0.3);
}

.offer-content {
    padding: 24px;
}

.offer-content h3 {
    font-size: 22px;
    color: #071126;
    margin-bottom: 10px;
}

.offer-content p {
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.7;
}

.offer-bottom {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-tag {
    background: #fff1f1;
    color: #b30000;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.offer-arrow {
    width: 42px;
    height: 42px;
    background: #071126;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card:hover .offer-arrow {
    background: #b30000;
}

/* Tablet */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .offers-section {
        padding: 70px 5%;
    }

    .offers-header h2 {
        font-size: 32px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-image {
        height: 220px;
    }
}
/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    padding: 120px 8% 80px;
    background: linear-gradient(135deg, #071126, #7a0000);
    color: #fff;
    text-align: center;
}

.about-hero span {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
}

.about-hero h1 {
    font-size: 48px;
    margin: 20px 0;
}

.about-hero p {
    color: #f3dddd;
    max-width: 700px;
    margin: auto;
}

.about-section {
    padding: 100px 8%;
    background: #f8f9fd;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-card {
    background: #fff;
    padding: 32px;
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(7,17,38,0.08);
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
}

.about-card h3 {
    color: #071126;
    margin-bottom: 10px;
}

.about-card p {
    color: #5f6b7a;
    line-height: 1.8;
}

.about-stats {
    padding: 80px 8%;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-box h2 {
    color: #b30000;
    font-size: 40px;
}

.stat-box p {
    color: #555;
}

.about-cta {
    padding: 100px 8%;
    background: linear-gradient(135deg, #7a0000, #b30000);
    text-align: center;
    color: #fff;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #b30000;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
    }
}
/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    padding: 110px 8% 70px;
    background: linear-gradient(135deg, #071126, #7a0000);
    color: #fff;
    text-align: center;
}

.contact-hero span {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
}

.contact-hero h1 {
    font-size: 44px;
    margin: 20px 0;
}

.contact-hero p {
    color: #f3dddd;
}

/* SECTION */
.contact-section {
    padding: 90px 8%;
    background: #f8f9fd;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(7,17,38,0.08);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #071126;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.contact-btn {
    background: #b30000;
    color: #fff;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
}

/* INFO */
.contact-info {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(7,17,38,0.08);
}

.contact-info h3 {
    margin-bottom: 25px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.info-box i {
    color: #b30000;
    font-size: 18px;
}

.contact-note {
    margin-top: 25px;
    font-size: 14px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   VENTURES LIST PAGE
========================= */

.ventures-page {
    padding: 100px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.ventures-page .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ventures-page .section-header span {
    color: #b30000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ventures-page .section-header h1 {
    font-size: 46px;
    color: #071126;
    margin: 10px 0;
}

.ventures-page .section-header p {
    color: #5f6b7a;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.venture-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 22px 60px rgba(7, 17, 38, 0.08);
    transition: 0.35s ease;
    border: 1px solid rgba(179, 0, 0, 0.06);
}

.venture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(7, 17, 38, 0.14);
}

.venture-icon {
    width: 64px;
    height: 64px;
    background: #fff1f1;
    color: #b30000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.venture-content h3 {
    font-size: 22px;
    color: #071126;
    margin-bottom: 16px;
}

.venture-content p {
    color: #5f6b7a;
    font-size: 15px;
    margin-bottom: 10px;
}

.venture-content p i {
    color: #b30000;
    margin-right: 8px;
}

.venture-content span {
    display: inline-block;
    margin-top: 16px;
    background: #e9fff0;
    color: #14883e;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 992px) {
    .ventures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ventures-page {
        padding: 70px 5%;
    }

    .ventures-page .section-header h1 {
        font-size: 32px;
    }

    .ventures-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   OFFERS LIST PAGE
========================= */

.offers-page {
    padding: 100px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.offers-header {
    text-align: center;
    margin-bottom: 50px;
}

.offers-header span {
    color: #b30000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.offers-header h1 {
    font-size: 46px;
    color: #071126;
    margin: 10px 0;
}

.offers-header p {
    color: #5f6b7a;
}

/* GRID */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.offer-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(7,17,38,0.08);
    transition: 0.35s;
}

.offer-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.offer-image {
    position: relative;
    height: 230px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b30000;
    color: #fff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

/* CONTENT */
.offer-content {
    padding: 24px;
}

.offer-content h3 {
    color: #071126;
    font-size: 22px;
    margin-bottom: 10px;
}

.offer-content p {
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.7;
}

/* BUTTONS */
.offer-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-view {
    background: #071126;
    color: #ffffff !important;  /* 🔥 FIX */
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-view:hover {
    background: #b30000;
    color: #ffffff !important;
}

.btn-save {
    background: #fff1f1;
    color: #b30000;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .offers-page {
        padding: 70px 5%;
    }

    .offers-header h1 {
        font-size: 32px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   PREMIUM OFFER DETAIL PAGE
========================= */

.offer-detail-premium {
    padding: 100px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.offer-detail-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 45px;
    align-items: center;
}

.offer-detail-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 75px rgba(7, 17, 38, 0.12);
}

.offer-detail-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.detail-discount {
    position: absolute;
    top: 22px;
    left: 22px;
    background: #b30000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(179, 0, 0, 0.3);
}

.offer-detail-info {
    background: #ffffff;
    padding: 42px;
    border-radius: 32px;
    box-shadow: 0 25px 75px rgba(7, 17, 38, 0.08);
}

.detail-label {
    display: inline-block;
    background: #fff1f1;
    color: #b30000;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.offer-detail-info h1 {
    font-size: 42px;
    color: #071126;
    line-height: 1.2;
    margin-bottom: 18px;
}

.detail-description {
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.detail-meta div {
    background: #f8f9fd;
    border-radius: 20px;
    padding: 18px;
}

.detail-meta i {
    color: #b30000;
    font-size: 20px;
    margin-bottom: 10px;
}

.detail-meta span {
    display: block;
    color: #5f6b7a;
    font-size: 13px;
    margin-bottom: 4px;
}

.detail-meta strong {
    color: #071126;
    font-size: 15px;
}

.detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.detail-btn {
    padding: 14px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.35s ease;
}

.detail-btn.primary {
    background: #b30000;
    color: #ffffff;
}

.detail-btn.secondary {
    background: #fff1f1;
    color: #b30000;
}

.detail-btn:hover {
    transform: translateY(-4px);
}

.trust-note {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    background: #f8f9fd;
    padding: 16px;
    border-radius: 18px;
}

.trust-note i {
    color: #b30000;
    margin-top: 4px;
}

.trust-note p {
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .offer-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .offer-detail-image img {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .offer-detail-premium {
        padding: 70px 5%;
    }

    .offer-detail-info {
        padding: 28px 22px;
    }

    .offer-detail-info h1 {
        font-size: 30px;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }

    .detail-btn {
        width: 100%;
        text-align: center;
    }

    .offer-detail-image img {
        height: 280px;
    }
}
/* =========================
   ADMIN DASHBOARD PREMIUM
========================= */

.admin-dashboard {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #071126, #7a0000);
    color: #fff;
    padding: 30px 20px;
}

.admin-sidebar h2 {
    margin-bottom: 30px;
}

.admin-sidebar a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.admin-sidebar a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.admin-sidebar i {
    margin-right: 10px;
}

.logout {
    margin-top: 20px;
    color: #ffb3b3;
}

/* CONTENT */
.admin-content {
    flex: 1;
    padding: 40px;
    background: #f8f9fd;
}

/* CARDS */
.admin-cards {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.admin-card {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(7,17,38,0.08);
    text-align: center;
}

.admin-card p {
    font-size: 28px;
    font-weight: bold;
    color: #b30000;
}

/* LIST CARDS */
.admin-list-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(7,17,38,0.06);
}

/* ACTION BUTTONS */
.admin-actions a {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-left: 8px;
}

.btn-approve {
    background: #28a745;
    color: #fff;
}

.btn-reject {
    background: #dc3545;
    color: #fff;
}

/* MOBILE */
@media (max-width: 992px) {
    .admin-dashboard {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }

    .admin-cards {
        flex-direction: column;
    }
}
/* =========================
   ADMIN USER MANAGEMENT
========================= */

.admin-page-header {
    margin-bottom: 30px;
}

.admin-page-header span {
    color: #b30000;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-page-header h1 {
    color: #071126;
    font-size: 40px;
    margin: 8px 0;
}

.admin-page-header p {
    color: #5f6b7a;
}

.admin-table-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 22px 60px rgba(7, 17, 38, 0.08);
}

.admin-user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.admin-user-row:hover {
    background: #f8f9fd;
}

.admin-user-row:not(:last-child) {
    border-bottom: 1px solid rgba(7,17,38,0.07);
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #8b0000, #b30000);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.admin-user-info h3 {
    color: #071126;
    margin-bottom: 6px;
}

.admin-user-info p {
    color: #5f6b7a;
    font-size: 14px;
    margin-bottom: 4px;
}

.admin-user-info i {
    color: #b30000;
    margin-right: 6px;
}

@media (max-width: 576px) {
    .admin-user-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-reject {
        width: 100%;
        text-align: center;
    }
}
/* MANAGE VENTURES */
.admin-venture-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.admin-venture-row:hover {
    background: #f8f9fd;
}

.admin-venture-row:not(:last-child) {
    border-bottom: 1px solid rgba(7,17,38,0.07);
}

.admin-venture-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.admin-venture-info h3 {
    color: #071126;
    margin-bottom: 8px;
}

.admin-venture-info p {
    color: #5f6b7a;
    font-size: 14px;
    margin-bottom: 5px;
}

.admin-venture-info i {
    color: #b30000;
    margin-right: 6px;
}

.venture-status-wrap {
    margin-top: 12px;
}

.status-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.status-badge.approved {
    background: #e9fff0;
    color: #14883e;
}

.status-badge.pending {
    background: #fff7e6;
    color: #b56b00;
}

.status-badge.hold {
    background: #fff1f1;
    color: #b30000;
}

.btn-hold {
    background: #ff9800;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .admin-venture-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .admin-actions {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .admin-actions a {
        flex: 1;
        text-align: center;
        margin-left: 0;
    }
}
/* MANAGE OFFERS */
.admin-offer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.admin-offer-row:hover {
    background: #f8f9fd;
}

.admin-offer-row:not(:last-child) {
    border-bottom: 1px solid rgba(7,17,38,0.07);
}

.admin-offer-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.admin-offer-info h3 {
    color: #071126;
    margin-bottom: 8px;
}

.admin-offer-info p {
    color: #5f6b7a;
    font-size: 14px;
    margin-bottom: 5px;
}

.admin-offer-info i {
    color: #b30000;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .admin-offer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}
/* FIX ADMIN AVATAR ICON COLOR */
.admin-user-avatar i {
    color: #ffffff !important;
    margin-right: 0 !important;
    font-size: 22px;
}
.admin-offer-info .admin-user-avatar i,
.admin-venture-info .admin-user-avatar i {
    color: #ffffff !important;
    margin-right: 0 !important;
}
/* =========================
   CLAIMED OFFERS ADMIN
========================= */

.claim-filter-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(7,17,38,0.07);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.claim-filter-form input,
.claim-filter-form select {
    padding: 13px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-family: inherit;
}

.claim-filter-form input {
    min-width: 320px;
}

.claim-filter-form button {
    background: #b30000;
    color: #ffffff;
    border: none;
    padding: 13px 24px;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
}

.claims-list {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 22px 60px rgba(7,17,38,0.08);
}

.claim-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.claim-card:hover {
    background: #f8f9fd;
}

.claim-card:not(:last-child) {
    border-bottom: 1px solid rgba(7,17,38,0.07);
}

.claim-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.claim-main h3 {
    color: #071126;
    margin-bottom: 10px;
}

.claim-main p {
    color: #5f6b7a;
    font-size: 14px;
    margin-bottom: 6px;
}

.claim-main i {
    color: #b30000;
    margin-right: 6px;
}

.claim-status {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
}

.claim-status.pending {
    background: #fff7e6;
    color: #b56b00;
}

.claim-status.redeemed {
    background: #e9fff0;
    color: #14883e;
}

.claim-status.cancelled {
    background: #fff1f1;
    color: #b30000;
}

.redeem-date {
    margin-top: 8px;
    font-weight: 600;
}

.claim-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .claim-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .claim-filter-form input {
        min-width: 100%;
    }

    .claim-actions {
        width: 100%;
    }

    .claim-actions a {
        flex: 1;
        text-align: center;
    }
}
/* =========================
   ADMIN REPORTS
========================= */

.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 35px;
}

.report-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(7, 17, 38, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.3s ease;
}

.report-card:hover {
    transform: translateY(-8px);
}

.report-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff1f1;
    color: #b30000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.report-card h3 {
    color: #5f6b7a;
    font-size: 14px;
    margin-bottom: 6px;
}

.report-card p {
    color: #071126;
    font-size: 30px;
    font-weight: 800;
}

.report-summary {
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 22px 60px rgba(7,17,38,0.08);
}

.report-summary h2 {
    color: #071126;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(7,17,38,0.08);
}

.summary-row span {
    color: #5f6b7a;
}

.summary-row strong {
    color: #071126;
}

@media (max-width: 1100px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .report-grid {
        grid-template-columns: 1fr;
    }

    .summary-row {
        flex-direction: column;
        gap: 6px;
    }
}
.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 35px;
}

@media (max-width: 1200px) {
    .report-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .report-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   VENTURE PROFILE
========================= */

.profile-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(7,17,38,0.08);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #b30000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.profile-header h2 {
    color: #071126;
    margin-bottom: 6px;
}

.profile-details {
    margin-top: 20px;
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(7,17,38,0.08);
}

.profile-row i {
    color: #b30000;
}

.profile-row span {
    color: #5f6b7a;
    font-size: 15px;
}

.profile-actions {
    margin-top: 25px;
}

/* STATUS BADGES (reuse if already added) */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge.approved {
    background: #e9fff0;
    color: #14883e;
}

.status-badge.pending {
    background: #fff7e6;
    color: #b56b00;
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.venture-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
/* EDIT PROFILE FORM */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #071126;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.logo-preview {
    margin: 15px 0;
}

.logo-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #ddd;
}
.image-preview {
    margin-top: 15px;
}

.image-preview img {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    border: 1px solid #ddd;
}
/* =========================
   VENTURE MY OFFERS
========================= */

.venture-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.venture-offer-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(7,17,38,0.08);
    transition: 0.35s ease;
}

.venture-offer-card:hover {
    transform: translateY(-8px);
}

.venture-offer-image {
    position: relative;
    height: 220px;
    background: #fff1f1;
}

.venture-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venture-offer-content {
    padding: 22px;
}

.venture-offer-content h3 {
    color: #071126;
    font-size: 21px;
    margin-bottom: 10px;
}

.venture-offer-content p {
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.7;
}

.venture-offer-status {
    margin-top: 16px;
}

.venture-offer-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .venture-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .venture-offers-grid {
        grid-template-columns: 1fr;
    }
}
/* GLOBAL DASHBOARD BUTTONS */
.btn-approve,
.btn-reject,
.btn-hold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 28px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: 0.3s ease;
}

.btn-approve {
    background: #14883e;
    color: #ffffff !important;
}

.btn-reject {
    background: #dc3545;
    color: #ffffff !important;
}

.btn-hold {
    background: #ff9800;
    color: #ffffff !important;
}

.btn-approve:hover,
.btn-reject:hover,
.btn-hold:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
/* =========================
   CUSTOMER DASHBOARD
========================= */

.customer-latest-section {
    margin-top: 35px;
}

.section-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.section-mini-header h2 {
    color: #071126;
    font-size: 28px;
}

.section-mini-header a {
    color: #b30000;
    text-decoration: none;
    font-weight: 800;
}

.customer-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.customer-offer-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 22px 60px rgba(7,17,38,0.08);
    transition: 0.35s ease;
}

.customer-offer-card:hover {
    transform: translateY(-8px);
}

.customer-offer-image {
    position: relative;
    height: 210px;
    background: #fff1f1;
}

.customer-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-offer-image span {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b30000;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
}

.customer-offer-content {
    padding: 22px;
}

.customer-offer-content h3 {
    color: #071126;
    font-size: 20px;
    margin-bottom: 8px;
}

.customer-offer-content p {
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.7;
}

.customer-offer-footer {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b30000;
    font-weight: 800;
}

.customer-offer-footer i {
    width: 38px;
    height: 38px;
    background: #071126;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1100px) {
    .customer-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .customer-offers-grid {
        grid-template-columns: 1fr;
    }

    .section-mini-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
/* =========================
   REDEEMED COUPONS
========================= */

.redeemed-list {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 22px 60px rgba(7,17,38,0.08);
}

.redeemed-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.redeemed-card:hover {
    background: #f8f9fd;
}

.redeemed-card:not(:last-child) {
    border-bottom: 1px solid rgba(7,17,38,0.07);
}

.redeemed-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.redeemed-main h3 {
    color: #071126;
    margin-bottom: 8px;
}

.redeemed-main p {
    color: #5f6b7a;
    font-size: 14px;
    margin-bottom: 6px;
}

.redeemed-main i {
    color: #b30000;
    margin-right: 6px;
}

.redeemed-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .redeemed-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .redeemed-actions {
        width: 100%;
    }

    .redeemed-actions a {
        width: 100%;
        text-align: center;
    }
}
/* =========================
   AUTH PREMIUM
========================= */

.premium-auth {
    max-width: 420px;
    margin: auto;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(7,17,38,0.08);
    background: #ffffff;
}

.auth-header h2 {
    font-size: 26px;
    color: #071126;
}

.auth-header p {
    color: #5f6b7a;
    margin-top: 6px;
}

.full-btn {
    width: 100%;
    margin-top: 15px;
}

.auth-footer {
    margin-top: 18px;
    text-align: center;
}

.auth-footer a {
    color: #b30000;
    text-decoration: none;
    font-weight: 600;
}
.banner-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.banner-controls label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff1f1;
    color: #b30000;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.banner-controls input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.banner-controls input[type="number"] {
    width: 90px;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
}
.banner-offers-section {
    padding: 90px 8%;
    background: #ffffff;
}

.banner-offers-header {
    margin-bottom: 35px;
}

.banner-offers-header span {
    color: #b30000;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.banner-offers-header h2 {
    font-size: 42px;
    color: #071126;
    margin: 8px 0;
}

.banner-offers-header p {
    color: #5f6b7a;
}

.bannerOfferSwiper {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    padding-bottom: 45px;
}

.single-banner-slide {
    height: 380px;
    display: block;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.single-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,17,38,0.88), rgba(179,0,0,0.45));
}

.single-banner-content {
    position: absolute;
    left: 50px;
    bottom: 50px;
    max-width: 600px;
    z-index: 2;
}

.single-banner-content span {
    display: inline-block;
    background: #b30000;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.single-banner-content h3 {
    font-size: 38px;
    margin-bottom: 10px;
}

.single-banner-content p {
    color: #f3dddd;
    font-size: 16px;
}

.bannerOfferSwiper .swiper-pagination-bullet {
    background: #b30000;
    opacity: 0.35;
}

.bannerOfferSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 576px) {
    .banner-offers-section {
        padding: 70px 5%;
    }

    .banner-offers-header h2 {
        font-size: 30px;
    }

    .single-banner-slide {
        height: 260px;
    }

    .single-banner-content {
        left: 22px;
        right: 22px;
        bottom: 28px;
    }

    .single-banner-content h3 {
        font-size: 24px;
    }

    .single-banner-content p {
        font-size: 14px;
    }
}
.offer-detail-image img {
    cursor: zoom-in;
}

.extra-offer-images {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.extra-offer-images img {
    width: 110px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    cursor: zoom-in;
    box-shadow: 0 10px 25px rgba(7,17,38,0.08);
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.88);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 18px;
}

.image-modal span {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 42px;
    cursor: pointer;
}
/* EDIT OFFER EXTRA IMAGES */
.extra-edit-images {
    margin: 20px 0;
}

.extra-edit-images p {
    color: #071126;
    font-weight: 700;
    margin-bottom: 12px;
}

.extra-edit-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.extra-edit-grid img {
    width: 110px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(7,17,38,0.08);
}
/* GLOBAL SECTION HEADER */

.section-header {
    text-align: left;
    margin-bottom: 45px;
}

.section-header.center {
    text-align: center;
}

.section-header span {
    display: inline-block;
    color: #b30000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #071126;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-header p {
    color: #5f6b7a;
    font-size: 16px;
    max-width: 600px;
}

.section-header.center p {
    margin: 0 auto;
}

/* MOBILE */
@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }
}
/* GLOBAL SECTION SPACING */
section {
    padding: 90px 8%;
}

@media (max-width: 576px) {
    section {
        padding: 70px 5%;
    }
}
/* GLOBAL CARD EFFECT */
.offer-card,
.category-card,
.how-card,
.why-card,
.testimonial-card {
    transition: all 0.3s ease;
}

.offer-card:hover,
.category-card:hover,
.how-card:hover,
.why-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(7,17,38,0.12);
}
/* BUTTON EFFECT */
button,
a.btn,
.hero-btn,
.signup-btn {
    transition: all 0.3s ease;
}

button:hover,
.hero-btn:hover,
.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179,0,0,0.25);
}
/* IMAGE HOVER */
.offer-image img,
.single-banner-slide img {
    transition: transform 0.4s ease;
}

.offer-card:hover img,
.single-banner-slide:hover img {
    transform: scale(1.08);
}
/* SECTION COLORS */
.banner-offers-section {
    background: #ffffff;
}

.categories {
    background: #f9fafc;
}

.offers-section {
    background: #ffffff;
}

.kc-how-it-works {
    background: #f9fafc;
}

.kc-why-us {
    background: #ffffff;
}
html {
    scroll-behavior: smooth;
}

/* MOBILE: 2 CARDS PER ROW */
@media (max-width: 576px) {

    /* Homepage + offers list */
    .offers-grid,
    .customer-offers-grid,
    .venture-offers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .offer-image,
    .customer-offer-image,
    .venture-offer-image {
        height: 140px !important;
    }

    .offer-content,
    .customer-offer-content,
    .venture-offer-content {
        padding: 14px !important;
    }

    .offer-content h3,
    .customer-offer-content h3,
    .venture-offer-content h3 {
        font-size: 15px !important;
    }

    .offer-content p,
    .customer-offer-content p,
    .venture-offer-content p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .offer-tag,
    .offer-arrow,
    .customer-offer-footer {
        display: none !important;
    }

    .offer-discount,
    .customer-offer-image span {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }

    /* Ventures list */
    .ventures-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .venture-card {
        padding: 18px !important;
        border-radius: 20px !important;
    }

    .venture-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
        margin-bottom: 14px !important;
    }

    .venture-content h3 {
        font-size: 16px !important;
    }

    .venture-content p {
        font-size: 12px !important;
    }

    .venture-content span {
        font-size: 11px !important;
        padding: 6px 10px !important;
    }
}