/* =====================================================
   FINANZMAGAZIN - Premium Financial Literacy Website
   Unique Design System with CSS-only Animations
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --midnight-indigo: #1B1F3B;
    --neon-cyan: #00F5D4;
    --solar-coral: #FF6B4A;
    --pearl-white: #F7F9FC;
    --graphite: #2B2E34;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1B1F3B 0%, #00F5D4 100%);
    --gradient-button: linear-gradient(135deg, #FF6B4A 0%, #FF8F7A 50%, #00F5D4 100%);
    --gradient-hero: linear-gradient(180deg, rgba(27,31,59,0.85) 0%, rgba(0,245,212,0.75) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #F7F9FC 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(60px, 8vw, 120px);
    --container-width: min(90%, 1200px);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--graphite);
    background-color: var(--pearl-white);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--midnight-indigo);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--solar-coral);
}

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

/* Container */
.container {
    width: var(--container-width);
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(27, 31, 59, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo:hover {
    color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    margin: 6px 0;
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.menu-toggle:hover span {
    background: var(--solar-coral);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-cyan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    .nav.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-link {
        display: block;
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-button);
    background-size: 200% 100%;
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 107, 74, 0.35);
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 74, 0.45);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--midnight-indigo);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--midnight-indigo);
    border: 2px solid var(--midnight-indigo);
}

.btn-outline:hover {
    background: var(--midnight-indigo);
    color: #fff;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--section-padding) 0;
    padding-top: calc(var(--section-padding) + 80px);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    color: #fff;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}

.hero-text {
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* =====================================================
   SECTIONS COMMON STYLES
   ===================================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-alt {
    background: #fff;
}

.section-dark {
    background: var(--midnight-indigo);
    color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--solar-coral);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 20px;
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.75);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-section-header .section-subtitle {
    display: inline-block;
    color: var(--solar-coral);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-section-header h2 {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    order: 1;
}

.about-content {
    order: 2;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--neon-cyan);
    border-radius: 20px;
    transform: translate(15px, 15px);
    z-index: -1;
    transition: transform 0.4s ease;
}

.about-image:hover::before {
    transform: translate(10px, 10px);
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--pearl-white);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-indigo);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
}

/* =====================================================
   SERVICES / TYPES CARDS
   ===================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(27, 31, 59, 0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: var(--transition-bounce);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Card with image */
.card-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}

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

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

.card-title {
    margin-bottom: 15px;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--solar-coral);
    font-weight: 600;
    font-size: 0.95rem;
}

.card-link:hover {
    gap: 12px;
}

/* =====================================================
   ADVANTAGES / FEATURES
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0,245,212,0.15) 0%, rgba(27,31,59,0.15) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--midnight-indigo);
}

.feature-content h4 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--neon-cyan) 0%, var(--solar-coral) 100%);
    border-radius: 3px;
}

.process-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(27, 31, 59, 0.3);
    transition: var(--transition-bounce);
}

.process-item:hover .process-number {
    transform: scale(1.15);
}

.process-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
}

.process-item:hover .process-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.process-content h4 {
    margin-bottom: 10px;
    color: var(--midnight-indigo);
}

.process-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .process-timeline::before {
        left: 20px;
    }
    
    .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .process-item {
        gap: 20px;
    }
}

/* =====================================================
   FAQ SECTION (CSS-only with checkbox)
   ===================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-checkbox {
    display: none;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--midnight-indigo);
    transition: var(--transition-smooth);
    user-select: none;
}

.faq-question:hover {
    background: rgba(0,245,212,0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-checkbox:checked + .faq-question .faq-icon {
    transform: rotate(45deg);
    color: var(--solar-coral);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.7;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.form-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--graphite);
    font-size: 0.95rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: var(--pearl-white);
    color: var(--graphite);
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 4px rgba(0,245,212,0.15);
}

.form-input::placeholder {
    color: #999;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232B2E34' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

.form-select option {
    color: black;
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    accent-color: var(--neon-cyan);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 3px;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--midnight-indigo);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--solar-coral);
}

.form-submit {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .form-box {
        padding: 35px 25px;
    }
}

/* =====================================================
   TRUST / GUARANTEE SECTION
   ===================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-smooth);
}

.trust-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0,245,212,0.2) 0%, rgba(255,107,74,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.trust-item h4 {
    margin-bottom: 12px;
}

.trust-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: var(--solar-coral);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-content .btn-primary {
    background: #fff;
    color: var(--solar-coral);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-content .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--midnight-indigo);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-contact-icon {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--neon-cyan);
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   POLICY PAGES
   ===================================================== */
.policy-page {
    padding-top: 120px;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.policy-content h1 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--neon-cyan);
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--midnight-indigo);
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
}

.policy-content p,
.policy-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-content a {
    color: var(--solar-coral);
}

.policy-meta {
    background: var(--pearl-white);
    padding: 25px;
    border-radius: 12px;
    margin-top: 50px;
}

.policy-meta h4 {
    margin-bottom: 15px;
    color: var(--midnight-indigo);
}

.policy-meta p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* =====================================================
   THANKS PAGE
   ===================================================== */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--solar-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

.thanks-content h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thanks-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* =====================================================
   COOKIE POPUP
   ===================================================== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup h4 {
    margin-bottom: 12px;
    color: var(--midnight-indigo);
}

.cookie-popup p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-popup p a {
    color: var(--solar-coral);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.cookie-btn-accept {
    background: var(--gradient-button);
    color: #fff;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,74,0.3);
}

.cookie-btn-decline {
    background: var(--pearl-white);
    color: var(--graphite);
    border: 2px solid #e0e0e0;
}

.cookie-btn-decline:hover {
    border-color: var(--midnight-indigo);
}

/* =====================================================
   EXTRA PAGE STYLES
   ===================================================== */
.page-hero {
    background: var(--gradient-primary);
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-block {
    padding: 80px 0;
}

.content-block:nth-child(even) {
    background: #fff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-wrapper.reverse {
    direction: rtl;
}

.content-wrapper.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 25px;
}

.content-text p {
    color: #555;
    margin-bottom: 15px;
}

.content-text ul {
    list-style: none;
    margin-top: 25px;
}

.content-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
}

.content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

@media (max-width: 992px) {
    .content-wrapper,
    .content-wrapper.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .content-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =====================================================
   CSS ANIMATIONS
   ===================================================== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal effect simulation with CSS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover animations for images */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 20px;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* Parallax illusion effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Text gradient animation */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
}

@keyframes textGradient {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Loading spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--pearl-white);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.hidden { display: none; }
.visible { display: block; }

/* =====================================================
   RESPONSIVE UTILITIES
   ===================================================== */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .show-mobile { display: block !important; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
    .show-desktop { display: block !important; }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-popup,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

