/* ============================================
   GETON DEAL — COMPONENTS (Light Theme)
   Navbar, Hero, Cards, Deals, Tiers, Footer
   ============================================ */

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 32px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    background: #FFFFFF;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    padding: 8px 32px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo img {
    height: 44px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--text-primary);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
    background: var(--orange-bg);
}

/* Pulsing capsule style for Share & Earn */
.nav-links a.nav-share-btn {
    color: var(--orange) !important;
    background: linear-gradient(135deg, #FFF0E6 0%, #FFF 100%);
    border: 1px solid rgba(255, 107, 0, 0.25);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.06);
    animation: menuPulse 2.5s infinite;
}

@keyframes menuPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.2);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mid-screen responsiveness to prevent text wrapping */
@media (min-width: 993px) and (max-width: 1280px) {
    .navbar {
        padding: 8px 16px;
    }

    .nav-logo img {
        height: 42px;
    }

    .nav-links {
        gap: 2px;
    }

    .nav-links a {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    .navbar-actions {
        gap: 4px;
    }

    .navbar-actions .btn {
        padding: 6px 12px;
        font-size: 0.72rem;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

@media (max-width: 992px) {
    .navbar {
        padding: 6px 20px;
    }

    .nav-logo img {
        height: 60px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #FFFFFF;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 2px solid var(--orange);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
    }

    .navbar-actions .btn {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #FFF7F0 0%, #FFF 40%, #EEF2FF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 63, 199, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero h1 span {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.8;
}

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

/* ==================== TRUST STRIP ==================== */
.trust-strip {
    background: var(--blue);
    padding: 20px 0;
}

.trust-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--orange-light);
}

/* ==================== DEAL CARDS ==================== */
.deal-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.deal-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.deal-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-card:hover .deal-card-image img {
    transform: scale(1.08);
}

.deal-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: #FFF;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--blue);
    color: #FFF;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.deal-card-body {
    padding: 20px;
}

.deal-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.deal-location {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.deal-location i {
    color: var(--red);
    font-size: 0.75rem;
}

.deal-offer {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.deal-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
}

.deal-card-footer .btn {
    font-size: 0.8rem;
    padding: 8px 20px;
}

.deal-validity {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==================== CATEGORY CARDS (Premium) ==================== */
.category-strip {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px 4px 20px;
    margin-bottom: 36px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.category-strip::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: #FFF;
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 90px;
    max-width: 90px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    padding: 16px 10px 14px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.category-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(26, 63, 199, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-pill:hover::before,
.category-pill.active::before {
    opacity: 1;
}

.cat-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.25);
    position: relative;
}

.cat-icon-wrap::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 8px;
    background: inherit;
    filter: blur(8px);
    opacity: 0.5;
    border-radius: 50%;
}

.category-pill:hover .cat-icon-wrap,
.category-pill.active .cat-icon-wrap {
    transform: translateY(-5px) scale(1.08);
}

/* Each category unique color */
.cat-all .cat-icon-wrap {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cat-villas .cat-icon-wrap {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}

.cat-cafes .cat-icon-wrap {
    background: linear-gradient(135deg, #f953c6 0%, #b91d73 100%);
}

.cat-resorts .cat-icon-wrap {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

.cat-restaurants .cat-icon-wrap {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

.cat-events .cat-icon-wrap {
    background: linear-gradient(135deg, #f7b733 0%, #fc4a1a 100%);
}

.cat-clubs .cat-icon-wrap {
    background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
}

.cat-adventure .cat-icon-wrap {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.cat-animal .cat-icon-wrap {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
}

.cat-museum .cat-icon-wrap {
    background: linear-gradient(135deg, #c94b4b 0%, #4b134f 100%);
}

.cat-icon-wrap i {
    color: #FFF;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-pill span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.category-pill:hover span,
.category-pill.active span {
    color: var(--orange);
}

.category-pill:hover {
    border-color: rgba(255, 107, 0, 0.25);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.12);
    transform: translateY(-2px);
}

.category-pill.active {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}


/* ==================== STAT CARDS ==================== */
.stat-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-change {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ==================== MEMBERSHIP TIERS ==================== */
.tier-card {
    background: #FFF;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.tier-card.featured {
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

.tier-card.featured::before {
    content: '⭐ MOST POPULAR';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--orange-gradient);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px;
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    margin-top: 10px;
}

.tier-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin: 16px 0;
}

.tier-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.tier-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.tier-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-light);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li i {
    color: var(--green);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ==================== HOW IT WORKS ==================== */
.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--orange-gradient);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-orange);
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    background: var(--orange-gradient);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #FFF;
    position: relative;
    overflow: hidden;
}

.promo-banner::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.promo-banner h3 {
    color: #FFF;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.promo-banner p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== TESTIMONIAL ==================== */
.testimonial-card {
    background: var(--blue-bg);
    border-radius: var(--radius-xl);
    padding: 40px;
    border-left: 5px solid var(--blue);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--blue);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 16px;
    font-weight: 700;
    font-style: normal;
    color: var(--blue);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-primary);
    color: #FFF;
    padding: 60px 0 24px;
}

.footer h4 {
    color: #FFF;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.footer a:hover {
    color: var(--orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== REVENUE / GROWTH CARDS ==================== */
.revenue-highlight {
    background: var(--orange-bg);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 12px 0;
}

.revenue-highlight strong {
    color: var(--orange);
}

/* ==================== SIDEBAR (Admin) ==================== */
.admin-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 70px;
}

.sidebar {
    width: 250px;
    background: #FFF;
    border-right: 1px solid var(--border);
    padding: 24px 0;
    flex-shrink: 0;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: var(--orange-bg);
    color: var(--orange);
    border-left-color: var(--orange);
}

.sidebar-link.active {
    background: var(--orange-bg);
    color: var(--orange);
    font-weight: 600;
    border-left-color: var(--orange);
}

.sidebar-link i {
    width: 20px;
    text-align: center;
}

.admin-content {
    flex: 1;
    padding: 32px;
    background: var(--bg-light);
    min-height: calc(100vh - 70px);
}

/* ==================== FILTER BAR ==================== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 24px;
    background: #FFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.filter-bar input,
.filter-bar select {
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    color: var(--text-primary);
    background: var(--bg-light);
    outline: none;
    transition: var(--transition);
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--blue);
    background: #FFF;
}

/* ==================== AFFILIATE COMMISSION CARD ==================== */
.commission-card {
    background: var(--blue-gradient);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #FFF;
    text-align: center;
}

.commission-card .stat-value {
    color: var(--orange-light);
    font-size: 3rem;
}

.commission-card .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

/* ==================== SEARCH BOX ==================== */
.search-box {
    display: flex;
    align-items: center;
    background: #FFF;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 4px 4px 4px 20px;
    max-width: 500px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: transparent;
}

.search-box button {
    background: var(--orange-gradient);
    border: none;
    color: #FFF;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.search-box button:hover {
    transform: scale(1.05);
}