/* style.css - Premium Dark Theme */
:root {
    --bg-color: #0f172a;
    --bg-light: #1e293b;
    --bg-lighter: #334155;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.5);
    
    --success: #10b981;
    --error: #ef4444;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-color: #f8fafc;
    --bg-light: #ffffff;
    --bg-lighter: #e2e8f0;
    
    --text-main: #0f172a;
    --text-muted: #475569;
    
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-glow: rgba(37, 99, 235, 0.2);
}

[data-theme="light"] .main-header {
    background-color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .main-footer {
    background-color: #f1f5f9;
}

[data-theme="light"] .hero-section {
    background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 70%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--bg-lighter);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #f8fafc, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-logo {
    max-height: 80px;
    width: auto;
}

.logo-light { display: none; }
[data-theme="light"] .logo-dark { display: none; }
[data-theme="light"] .logo-light { display: block; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.theme-toggle {
    width: 60px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
}

[data-theme="light"] .theme-toggle {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
}

.toggle-circle {
    width: 24px;
    height: 24px;
    background-color: var(--bg-color);
    border-radius: 50%;
    position: absolute;
    left: 2px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

[data-theme="light"] .toggle-circle {
    transform: translateX(30px);
    background-color: white;
}

.theme-icon-dark, .theme-icon-light {
    font-size: 14px;
    position: absolute;
}

.theme-icon-light { display: none; }
[data-theme="light"] .theme-icon-dark { display: none; }
[data-theme="light"] .theme-icon-light { display: block; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    position: relative;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

[data-theme="light"] .hamburger, 
[data-theme="light"] .hamburger::before, 
[data-theme="light"] .hamburger::after {
    background-color: var(--text-main);
}

/* Hamburger active state */
.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}


/* Main sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0) 70%), var(--bg-color);
    position: relative;
}

[data-theme="light"] .hero-section {
    background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.1) 0%, rgba(248, 250, 252, 0) 70%), var(--bg-color);
}

.hero-content h1,
.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-content h1 span,
.hero-content h2 span {
    color: var(--accent);
}

.hero-content h1 span.highlight,
.hero-content h2 span.highlight,
.highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.location-info {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: var(--accent);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--accent-glow);
    font-family: var(--font-body);
    font-size: 1rem;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-campaign {
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-campaign:hover {
    background: linear-gradient(135deg, #dc2626, #d97706);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--bg-lighter);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--accent);
    background-color: rgba(59, 130, 246, 0.08);
    color: var(--accent);
}

/* Trust Stats Strip */
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-lighter);
}

.trust-stat-card {
    background: var(--bg-light);
    border: 1px solid var(--bg-lighter);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid var(--bg-lighter);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 2.2rem;
    line-height: 1;
    width: 55px;
    height: 55px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-tag-pill {
    background-color: var(--bg-light);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-features-list {
    list-style: none;
    margin-bottom: 25px;
    margin-top: auto;
}

.service-features-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.service-link {
    color: #fff;
    background-color: var(--accent);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;
}

.service-link:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 4px 12px var(--accent-glow);
}

/* Campaign Promo Banner on Homepage */
.campaign-promo-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 30px var(--accent-glow);
}

[data-theme="light"] .campaign-promo-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(219, 39, 119, 0.1));
}

.campaign-promo-content h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.campaign-promo-content p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .campaign-promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .hero-content h1,
    .hero-content h2 {
        font-size: 2.3rem;
    }
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--bg-lighter);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item span.icon {
    width: 40px;
    height: 40px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input, 
.form-group textarea {
    padding: 15px;
    background-color: var(--bg-light);
    border: 1px solid var(--bg-lighter);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    padding: 10px;
    background: transparent;
    border: 1px dashed var(--bg-lighter);
    width: 100%;
    cursor: pointer;
}
.file-upload-wrapper input[type="file"]:hover {
    border-color: var(--accent);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

/* Footer */
.main-footer {
    background-color: #0b1120;
    padding: 60px 0 20px 0;
    border-top: 1px solid var(--bg-lighter);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info p, .footer-links a {
    color: var(--text-muted);
}

.footer-info h3, .footer-links h4 {
    margin-bottom: 20px;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-lighter);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page content for terms and privacy */
.page-content {
    padding: 150px 0 100px 0; /* extra top padding for fixed header */
    max-width: 800px;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent);
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

.page-content li {
    margin-bottom: 10px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--bg-lighter);
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-container p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-main);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: var(--bg-color);
        flex-direction: column;
        transition: right 0.3s ease;
        border-top: 1px solid var(--bg-lighter);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 40px;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   CAMPAIGN PAGE STYLES (Kampaania lehe stiilid)
   ========================================================================== */

.campaign-nav-badge {
    position: relative;
    color: var(--accent) !important;
}
.campaign-nav-badge::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #ef4444;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: super;
    box-shadow: 0 0 8px #ef4444;
    animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(0.95); opacity: 1; }
}

.campaign-hero {
    padding-top: 150px;
    padding-bottom: 70px;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.18) 0%, rgba(15, 23, 42, 0) 70%), var(--bg-color);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .campaign-hero {
    background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.12) 0%, rgba(248, 250, 252, 0) 70%), var(--bg-color);
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="light"] .campaign-badge {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(219, 39, 119, 0.1));
    border-color: rgba(37, 99, 235, 0.3);
    color: #1d4ed8;
}

.campaign-hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.campaign-hero h1 span.highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.campaign-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 35px auto;
}

/* Countdown Timer */
.timer-wrapper {
    margin: 30px auto 40px auto;
    max-width: 600px;
}

.timer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 700;
}

.timer-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-box {
    background: var(--bg-light);
    border: 1px solid var(--bg-lighter);
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 85px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.timer-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent);
    line-height: 1;
}

.timer-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
}

/* Campaign Perks Bar */
.campaign-perks-section {
    padding: 35px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--bg-lighter);
    border-bottom: 1px solid var(--bg-lighter);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background-color: var(--bg-color);
    border-radius: 12px;
    border: 1px solid var(--bg-lighter);
    transition: var(--transition);
}

.perk-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.perk-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.perk-text h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.perk-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Category Filter Tabs */
.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    background-color: var(--bg-light);
    border: 1px solid var(--bg-lighter);
    color: var(--text-main);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--accent-glow);
}

/* Campaign Cards */
.campaign-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.deal-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--bg-lighter);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.deal-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.deal-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.card-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.discount-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 2;
}

.deal-header {
    padding: 35px 25px 20px 25px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 100%);
    border-bottom: 1px solid var(--bg-lighter);
}

.deal-category {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.deal-title {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.deal-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.deal-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.specs-list {
    list-style: none;
    margin-bottom: 25px;
}

.specs-list li {
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

[data-theme="light"] .specs-list li {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.specs-list li span.spec-icon {
    font-size: 1.1rem;
    color: var(--accent);
}

.stock-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 20px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
}

.deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--bg-lighter);
}

.price-box {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.88rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.current-price {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-heading);
}

/* Calculator Section */
.calculator-section {
    background-color: var(--bg-color);
    border-top: 1px solid var(--bg-lighter);
    border-bottom: 1px solid var(--bg-lighter);
    padding: 80px 0;
}

.calc-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--bg-lighter);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.calc-option-group {
    margin-bottom: 20px;
}

.calc-option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.calc-select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-color);
    border: 1px solid var(--bg-lighter);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.calc-select:focus {
    outline: none;
    border-color: var(--accent);
}

.calc-summary {
    background-color: var(--bg-color);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.calc-summary-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    margin: 15px 0;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

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

.testimonial-card {
    background-color: var(--bg-color);
    border: 1px solid var(--bg-lighter);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
    display: block;
    margin-top: 2px;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Responsive tweaks for campaign */
@media (max-width: 768px) {
    .campaign-hero h1 {
        font-size: 2.2rem;
    }
    .timer-grid {
        gap: 8px;
    }
    .timer-box {
        padding: 10px 12px;
        min-width: 65px;
    }
    .timer-number {
        font-size: 1.4rem;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

/* Kati Page & Modern Gallery Styles */
.kati-nav-badge {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    color: #ffffff !important;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kati-nav-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.purr-widget-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .purr-widget-card {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.purr-meter-bar {
    height: 12px;
    background: var(--bg-lighter);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0 15px 0;
    position: relative;
}

.purr-meter-fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, #f59e0b, #ec4899);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-purr {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-purr:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5);
}

.btn-purr:active {
    transform: scale(0.98);
}

/* Gallery Grid */
.modern-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--bg-lighter);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 158, 11, 0.5);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background-color: #0b0f19;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

.gallery-zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
    z-index: 2;
}

.gallery-card:hover .gallery-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.gallery-card-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gallery-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.gallery-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 18px;
}

.gallery-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--bg-lighter);
}

.like-btn {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.like-btn:hover {
    background: #ec4899;
    color: #fff;
}

.like-btn.liked {
    background: #ec4899;
    color: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    max-width: 1000px;
    width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--bg-lighter);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.active .lightbox-container {
    transform: scale(1);
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid var(--bg-lighter);
}

.lightbox-counter {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.lightbox-close-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.lightbox-close-btn:hover {
    color: var(--error);
}

.lightbox-body {
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.lightbox-img-wrapper {
    position: relative;
    width: 100%;
    max-height: 60vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrapper img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    padding: 20px 25px;
    background: var(--bg-light);
}

.lightbox-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.lightbox-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}


