/* ============================================
   BALINEZIA — Premium Dark Tropical Theme
   Google Fonts: Inter
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
    --bg-primary: #080d1a;
    --bg-secondary: #0e1628;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    --accent: #f5a623;
    --accent-dark: #d4891a;
    --accent-glow: rgba(245, 166, 35, 0.25);

    --green: #2dce89;
    --green-glow: rgba(45, 206, 137, 0.2);

    --text-primary: #f0f4ff;
    --text-secondary: #8a9bbf;
    --text-muted: #4d5d7a;

    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(245, 166, 35, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.15);

    --font: 'Inter', sans-serif;
    --transition: 0.3s ease;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 4px;
}

nav ul li a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition), background var(--transition);
}

nav ul li a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.lang-switcher {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.lang-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #080d1a;
}

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(to bottom, rgba(8, 13, 26, 0.5) 0%, rgba(8, 13, 26, 0.7) 60%, var(--bg-primary) 100%),
        url('/assets/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

#hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: var(--text-primary);
}

#hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    color: #080d1a;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(245, 166, 35, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
    }
}

.cta-btn.pulse {
    animation: pulse-ring 2.5s ease-out infinite;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== CATALOG ===== */
#catalog {
    background: var(--bg-secondary);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Filter Row */
.filter-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #080d1a;
    box-shadow: var(--shadow-glow);
}

/* Load More */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.load-more-container.hidden {
    display: none;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.cta-btn.secondary:hover {
    background: var(--accent-glow);
    box-shadow: var(--shadow-glow);
}

/* Skeleton loader */
.vehicle-card.skeleton {
    height: 460px;
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(255, 255, 255, 0.07) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Real card */
.vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

/* Gallery slider inside card */
.card-gallery {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-primary);
}

.card-gallery-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gallery-slide {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: zoom-in;
}

.card-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-gallery-slide:hover img {
    transform: scale(1.04);
}

/* Gallery nav arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 13, 26, 0.75);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition), border-color var(--transition), opacity var(--transition);
    backdrop-filter: blur(8px);
}

.gallery-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #080d1a;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-nav:disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* Photo counter */
.gallery-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(8, 13, 26, 0.75);
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    z-index: 10;
}

/* Type badge */
.type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(8, 13, 26, 0.75);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    z-index: 10;
}

/* Card info */
.card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-model {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-prices {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.price-chip {
    background: var(--green-glow);
    border: 1px solid rgba(45, 206, 137, 0.3);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-included {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.card-included strong {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.card-included p {
    white-space: pre-line;
    line-height: 1.5;
}

.card-actions {
    margin-top: auto;
}

.card-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), #ff8c42);
    color: #080d1a;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

/* Modal / Popup */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 13, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    color: #080d1a;
    transform: rotate(90deg);
}

#modal-body {
    padding: 40px;
}

.modal-full-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.modal-full-text b,
.modal-full-text strong {
    color: var(--accent);
    font-weight: 700;
}

.modal-full-text blockquote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent);
    margin: 10px 0;
    padding: 10px 16px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.modal-header {
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 850;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.modal-prices-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.price-chip.big {
    padding: 6px 12px;
    font-size: 0.95rem;
    font-weight: 700;
}

.modal-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
    margin: 16px 0;
}

.modal-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.modal-post-id {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-family: monospace;
}

/* Animations */
@keyframes bookPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 166, 35, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
    }
}

.book-pulse {
    animation: bookPulse 2s infinite;
}

/* Empty & error states */
.state-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.state-msg .state-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* ===== ADVANTAGES ===== */
#advantages {
    background: var(--bg-primary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}

.advantage-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.adv-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== FAQ ===== */
#faq {
    background: 
        linear-gradient(rgba(8, 13, 26, 0.85), rgba(8, 13, 26, 0.9)),
        url('/assets/faq-bg.jpg') center/cover no-repeat;
    position: relative;
}

#faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-list {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--border-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question-text {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    line-height: inherit;
}

.faq-item.open .faq-question {
    color: var(--accent);
}

.faq-chevron {
    flex-shrink: 0;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
#contact {
    background: var(--bg-primary);
    text-align: center;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tg-btn:hover {
    transform: translateY(-2px);
}

.tg-ru {
    background: linear-gradient(135deg, #2eaee8, #1a7fc1);
    color: #fff;
    box-shadow: 0 4px 16px rgba(46, 174, 232, 0.25);
}

.tg-ru:hover {
    box-shadow: 0 8px 24px rgba(46, 174, 232, 0.4);
}

.tg-en {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.tg-en:hover {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.tg-bot {
    background: transparent;
    border-color: var(--border-accent);
    color: var(--accent);
}

.tg-bot:hover {
    background: var(--accent-glow);
    box-shadow: 0 4px 16px var(--accent-glow);
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-inner .logo-text {
    font-size: 1.2rem;
}

.footer-inner .logo-icon {
    font-size: 1.2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
}

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

/* ===== GLIGHTBOX OVERRIDES ===== */
.glightbox-container .goverlay {
    background: rgba(0, 0, 0, 0.92);
}

/* ===== PARTNERS PAGE ===== */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to bottom, rgba(8, 13, 26, 0.7) 0%, rgba(8, 13, 26, 0.85) 100%),
        url('/assets/partners-hero.jpg') center/cover no-repeat;
    overflow: hidden;
    text-align: center;
    padding: 80px 24px;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero .hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Partnership Grid */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .partnership-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.05) 100%);
    border: 2px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.partner-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.offer-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition);
}

/* Specific alignment for license image */
#offer-license .offer-image img {
    object-position: center center;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: var(--bg-secondary);
    color: var(--text-muted);
}

.offer-content {
    padding: 32px 24px;
}

.offer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.offer-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-features li {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
}

.offer-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 32px 20px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }
}