/* Park Evening Courses - Main Stylesheet */
/* Design Direction: Editorial Nighttime Sophistication with Urban Energy */

/* ===== CSS VARIABLES ===== */
:root {
    /* Color Palette - Evening Urban Theme */
    --primary-dark: #0f1419;
    --primary-navy: #1a2332;
    --primary-slate: #2d3e50;
    --accent-amber: #f59e0b;
    --accent-warm: #fb923c;
    --accent-gold: #fbbf24;
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
    --text-muted: #94a3b8;
    --surface-dark: #1e293b;
    --surface-elevated: #334155;
    --border-subtle: rgba(248, 250, 252, 0.1);
    
    /* Typography Scale */
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--accent-amber);
    color: var(--primary-dark);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: 1.125rem; }

.display-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-gray);
}

.card-title{
    color: #fff;
}

a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-gold);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95), rgba(26, 35, 50, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-sm) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: var(--space-xs) 0;
    box-shadow: var(--shadow-xl);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light) !important;
    letter-spacing: -0.01em;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover {
    transform: translateY(-2px);
    color: var(--accent-amber) !important;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-gray) !important;
    padding: var(--space-xs) var(--space-md) !important;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-gold));
    transform: translateX(-50%);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ===== HERO SECTIONS ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.15), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(251, 146, 60, 0.1), transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.15), transparent);
    bottom: 10%;
    left: 5%;
    animation-delay: 3s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1), transparent);
    top: 40%;
    left: 40%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 146, 60, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-amber);
    margin-bottom: var(--space-md);
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--text-light), var(--accent-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-amber);
}

.btn-secondary:hover {
    background: var(--accent-amber);
    color: var(--primary-dark);
}

.btn-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 146, 60, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-amber);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== CARDS ===== */
.card {
    background: linear-gradient(135deg, var(--surface-dark), var(--primary-slate));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-warm));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(245, 158, 11, 0.3);
}

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

.card-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 146, 60, 0.1));
    border-radius: var(--radius-md);
    color: var(--accent-amber);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
}

/* ===== COURSE CARDS ===== */
.course-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(245, 158, 11, 0.3);
}

.course-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-slate), var(--surface-elevated));
}

.course-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-section .hero-description{
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
}

.course-img{
    margin-bottom: 30px;
}

.course-category {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 146, 60, 0.1));
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    width: max-content;
}

.course-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.course-description {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
    flex: 1;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.course-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-amber);
}

.course-duration {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: var(--space-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-amber), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: var(--surface-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--accent-amber);
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: var(--space-sm);
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.timeline-description {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== STATISTICS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--surface-dark), var(--primary-slate));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* ===== TESTIMONIALS ===== */
.testimonial {
    background: var(--surface-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    font-size: 6rem;
    font-family: var(--font-display);
    color: rgba(245, 158, 11, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--surface-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    background: var(--primary-navy);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.form-control.is-invalid {
    border-color: #ef4444;
}

.invalid-feedback {
    display: none;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* ===== CONTACT INFO ===== */
.contact-info-card {
    background: linear-gradient(135deg, var(--surface-dark), var(--primary-slate));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 146, 60, 0.1));
    border-radius: var(--radius-md);
    color: var(--accent-amber);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--text-light);
}

.contact-details p {
    margin-bottom: 0;
    color: var(--text-gray);
}

.contact-details a {
    color: var(--accent-amber);
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--accent-gold);
}

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border-subtle);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.footer-description {
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-gray);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-gray);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent-amber);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--surface-dark), var(--primary-slate));
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-lg);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-xl);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 0;
    color: var(--text-gray);
}

.cookie-text a {
    color: var(--accent-amber);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-md);
}

/* ===== ARTICLE STYLES ===== */
.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    padding-top: var(--space-2xl);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.article-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

.article-content p {
    margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.article-content li {
    margin-bottom: var(--space-sm);
    color: var(--text-gray);
}

.article-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

/* ===== POLICY PAGES ===== */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.policy-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

.policy-content p {
    margin-bottom: var(--space-md);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.policy-content li {
    margin-bottom: var(--space-sm);
    color: var(--text-gray);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.pt-5 { padding-top: var(--space-xl); }
.pb-5 { padding-bottom: var(--space-xl); }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-item .timeline-content::before {
        left: -20px !important;
    }
    
    .display-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 80vh;
        padding: var(--space-xl) 0;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

/* ===== LOADING STATES ===== */
.skeleton {
    background: linear-gradient(90deg, var(--surface-dark) 25%, var(--surface-elevated) 50%, var(--surface-dark) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer,
    .cookie-consent,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}


.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}
