/* ============================================
   CSS Variables - Easy Color Customization
   ============================================ */
:root {
    /* Primary Colors */
    --color-primary: #fd933d;
    --color-primary-rgb: 253, 147, 61;
    --color-primary-light: rgba(253, 147, 61, 0.1);
    --color-primary-medium: rgba(253, 147, 61, 0.2);
    --color-primary-dark: rgba(253, 147, 61, 0.5);
    --color-primary-darker: rgba(253, 147, 61, 0.3);
    
    /* Background Colors */
    --color-bg-primary: #000000;
    --color-bg-secondary: rgba(0, 0, 0, 0.3);
    --color-bg-tertiary: rgba(0, 0, 0, 0.5);
    --color-bg-card: rgba(253, 147, 61, 0.05);
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.5);
    --color-text-quaternary: rgba(255, 255, 255, 0.3);
    
    /* Border Colors */
    --color-border-primary: rgba(253, 147, 61, 0.2);
    --color-border-secondary: rgba(253, 147, 61, 0.1);
    --color-border-hover: #fd933d;
    
    /* Shadow Colors */
    --color-shadow-primary: rgba(253, 147, 61, 0.2);
    --color-shadow-secondary: rgba(253, 147, 61, 0.5);
    --color-shadow-tertiary: rgba(253, 147, 61, 0.3);
    
    /* Animation Durations */
    --animation-fast: 0.3s;
    --animation-medium: 0.8s;
    --animation-slow: 20s;
    
    /* Spacing */
    --spacing-section: 100px;
    --spacing-card: 32px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   Animated Background - Atomic Reaction
   ============================================ */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, var(--color-primary) 0%, var(--color-primary-light) 15%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(253, 147, 61, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(253, 147, 61, 0.08) 0%, transparent 50%);
    animation: atomicPulse 4s ease-in-out infinite;
}

@keyframes atomicPulse {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.mesh-gradient::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(253, 147, 61, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: energyRing 3s ease-out infinite;
}

@keyframes energyRing {
    0% {
        width: 400px;
        height: 400px;
        opacity: 0.8;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
    }
}

/* ============================================
   Particle Effect - Atomic Burst
   ============================================ */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fd933d 0%, rgba(253, 147, 61, 0.2) 100%);
    border-radius: 50%;
    opacity: 0.8;
    animation: atomicBurst 6s ease-out infinite;
    box-shadow: 0 0 20px rgba(253, 147, 61, 0.9), 
                0 0 40px rgba(253, 147, 61, 0.5),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
    filter: blur(0.3px);
}

@keyframes atomicBurst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    30% {
        opacity: 0.9;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.1);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* ============================================
   Glassmorphism Navbar
   ============================================ */
.glass-nav {
    background: var(--color-bg-secondary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-secondary);
    transition: background var(--animation-fast) ease;
}

.glass-nav .btn-primary {
    padding: 8px 20px;
    font-size: 14px;
}

.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    padding: 8px 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(253, 147, 61, 0.5);
}

.nav-link.active {
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(253, 147, 61, 0.6);
}

.nav-link.active::after {
    width: 100%;
}

/* ============================================
   Button Styles
   ============================================ */
.btn-primary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-bg-primary);
    transform: scale(1.08);
    box-shadow: 0 0 30px var(--color-primary), 
                0 0 60px rgba(253, 147, 61, 0.4),
                inset 0 0 20px rgba(253, 147, 61, 0.1);
    border-color: var(--color-primary);
}

.btn-primary:hover::before {
    left: 0;
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--animation-medium) ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Bento Grid Cards
   ============================================ */
.bento-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-primary);
    border-radius: 16px;
    padding: var(--spacing-card);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(10px);
    position: relative;
    perspective: 1000px;
}

.bento-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 60px var(--color-shadow-primary), 
                0 0 40px rgba(253, 147, 61, 0.3);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 147, 61, 0.1) 0%, transparent 50%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 1;
}

/* ============================================
   Content Wrapper
   ============================================ */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    animation: slideInUp 0.8s ease-out forwards;
}

.bento-card.reveal {
    animation: scaleIn 0.6s ease-out forwards;
}

/* ============================================
   Hero Video Background
   ============================================ */
.hero-video-section {
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-video-section .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   Section Spacing
   ============================================ */
section {
    padding: var(--spacing-section) 0;
    position: relative;
}

/* ============================================
   Gradient Text
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Typed Text Cursor
   ============================================ */
.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--color-primary);
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ============================================
   Testimonial Carousel
   ============================================ */
.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-primary);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--animation-fast) ease;
}

.testimonial-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--color-shadow-primary);
}

/* ============================================
   Progress Bars
   ============================================ */
.progress-bar {
    height: 8px;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress {
    width: 100%;
    height: 8px;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 4px;
    overflow: hidden;
}

/* ============================================
   Counter Animation
   ============================================ */
.counter-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-primary);
}

/* ============================================
   Service Icons
   ============================================ */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform var(--animation-fast) ease;
}

.bento-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ============================================
   Form Inputs
   ============================================ */
input[type="text"],
input[type="email"],
textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border-primary);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-text-primary);
    transition: all var(--animation-fast) ease;
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary-light);
}

/* ============================================
   Responsive Design - Mobile First Approach
   ============================================ */

/* ========== MOBILE DEVICES (0px - 480px) ========== */
@media (max-width: 480px) {
    :root {
        --spacing-section: 40px;
        --spacing-card: 16px;
    }
    
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Mobile Menu Mobile */
    .mobile-menu {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 62px);
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu nav {
        padding: 16px 0;
    }
    
    .mobile-menu .nav-link {
        padding: 14px 16px;
        font-size: 15px;
        border-bottom: 1px solid var(--color-border-secondary);
    }
    
    .mobile-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    p {
        font-size: 14px;
    }
    
    /* Navigation */
    .glass-nav {
        padding: 12px 0;
    }
    
    .glass-nav .container {
        padding: 0 12px;
    }
    
    .glass-nav a.text-2xl {
        font-size: 18px;
    }
    
    .hidden.md\:flex {
        display: none !important;
    }
    
    /* Hero Section */
    .hero-video-section {
        min-height: 60vh;
    }
    
    .hero-video-section .container {
        padding: 0 16px;
    }
    
    /* Buttons */
    .btn-primary {
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    .btn-primary.w-full {
        width: 100%;
    }
    
    /* Cards */
    .bento-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .bento-card:hover {
        transform: translateY(-2px);
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Grid */
    .grid {
        gap: 12px;
    }
    
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    /* Text Alignment */
    .text-center {
        text-align: center;
    }
    
    /* Spacing */
    .mb-16 {
        margin-bottom: 24px;
    }
    
    .mb-12 {
        margin-bottom: 20px;
    }
    
    .mb-8 {
        margin-bottom: 16px;
    }
    
    .mb-4 {
        margin-bottom: 12px;
    }
    
    /* Font Sizes */
    .text-5xl,
    .text-6xl {
        font-size: 28px;
    }
    
    .text-4xl {
        font-size: 24px;
    }
    
    .text-3xl {
        font-size: 20px;
    }
    
    .text-2xl {
        font-size: 18px;
    }
    
    .text-xl {
        font-size: 16px;
    }
    
    .text-lg {
        font-size: 14px;
    }
    
    /* Service Icon */
    .service-icon {
        font-size: 2rem;
    }
    
    /* Counter */
    .counter-number {
        font-size: 2rem;
    }
    
    /* Form Inputs */
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer-up {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 24px;
    }
    
    .footer-widget-title {
        font-size: 16px;
    }
    
    .footer-social {
        display: flex;
        gap: 10px;
    }
    
    .footer-social li {
        margin-right: 0;
    }
    
    .footer-social a {
        font-size: 18px;
    }
    
    .recent-post-wrp {
        max-height: none;
        overflow-y: visible;
    }
    
    .recent-post-pic {
        width: 50px;
        height: 50px;
    }
    
    /* Cookie Banner */
    .cookie-banner,
    .cookie-settings {
        padding: 16px;
        gap: 12px;
    }
    
    .cookie-text {
        min-width: 100%;
        font-size: 12px;
    }
    
    .cookie-buttons {
        width: 100%;
        gap: 8px;
    }
    
    .cookie-button {
        padding: 8px 16px;
        font-size: 12px;
        flex: 1;
    }
}

/* ========== TABLET DEVICES (481px - 768px) ========== */
@media (min-width: 481px) and (max-width: 768px) {
    :root {
        --spacing-section: 50px;
        --spacing-card: 20px;
    }
    
    body {
        font-size: 15px;
    }
    
    /* Mobile Menu Tablet */
    .mobile-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu nav {
        padding: 20px 0;
    }
    
    .mobile-menu .nav-link {
        padding: 16px 20px;
        font-size: 16px;
        border-bottom: 1px solid var(--color-border-secondary);
    }
    
    .mobile-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Typography */
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    p {
        font-size: 15px;
    }
    
    /* Navigation */
    .glass-nav {
        padding: 14px 0;
    }
    
    .glass-nav .container {
        padding: 0 20px;
    }
    
    .glass-nav a.text-2xl {
        font-size: 20px;
    }
    
    .hidden.md\:flex {
        display: none !important;
    }
    
    /* Hero Section */
    .hero-video-section {
        min-height: 70vh;
    }
    
    /* Buttons */
    .btn-primary {
        padding: 10px 24px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    /* Cards */
    .bento-card {
        padding: 20px;
        border-radius: 14px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Grid */
    .grid {
        gap: 14px;
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Spacing */
    .mb-16 {
        margin-bottom: 28px;
    }
    
    .mb-12 {
        margin-bottom: 24px;
    }
    
    /* Font Sizes */
    .text-5xl,
    .text-6xl {
        font-size: 36px;
    }
    
    .text-4xl {
        font-size: 28px;
    }
    
    .text-3xl {
        font-size: 24px;
    }
    
    .text-2xl {
        font-size: 20px;
    }
    
    /* Service Icon */
    .service-icon {
        font-size: 2.5rem;
    }
    
    /* Counter */
    .counter-number {
        font-size: 2.5rem;
    }
    
    /* Form Inputs */
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 11px 14px;
        font-size: 15px;
    }
    
    /* Footer */
    .footer-up {
        padding: 60px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 32px;
    }
    
    .footer-widget-title {
        font-size: 18px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social a {
        font-size: 20px;
    }
    
    .recent-post-pic {
        width: 56px;
        height: 56px;
    }
    
    /* Cookie Banner */
    .cookie-banner,
    .cookie-settings {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        gap: 10px;
    }
    
    .cookie-button {
        flex: 1;
        padding: 9px 18px;
    }
}

/* ========== DESKTOP DEVICES (769px and above) ========== */
@media (min-width: 769px) {
    :root {
        --spacing-section: 100px;
        --spacing-card: 32px;
    }
    
    body {
        font-size: 16px;
    }
    
    /* Typography */
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 42px;
    }
    
    h3 {
        font-size: 28px;
    }
    
    h4 {
        font-size: 22px;
    }
    
    p {
        font-size: 16px;
    }
    
    /* Navigation */
    .glass-nav {
        padding: 16px 0;
    }
    
    .glass-nav .container {
        padding: 0 24px;
    }
    
    .glass-nav a.text-2xl {
        font-size: 24px;
    }
    
    /* Hero Section */
    .hero-video-section {
        min-height: 100vh;
    }
    
    /* Buttons */
    .btn-primary {
        padding: 12px 32px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    /* Cards */
    .bento-card {
        padding: 32px;
        border-radius: 16px;
    }
    
    /* Sections */
    section {
        padding: 100px 0;
    }
    
    .container {
        padding: 0 24px;
    }
    
    /* Grid */
    .grid {
        gap: 24px;
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Spacing */
    .mb-16 {
        margin-bottom: 40px;
    }
    
    .mb-12 {
        margin-bottom: 32px;
    }
    
    /* Font Sizes */
    .text-5xl {
        font-size: 48px;
    }
    
    .text-6xl {
        font-size: 56px;
    }
    
    .text-4xl {
        font-size: 32px;
    }
    
    .text-3xl {
        font-size: 28px;
    }
    
    /* Service Icon */
    .service-icon {
        font-size: 3rem;
    }
    
    /* Counter */
    .counter-number {
        font-size: 3rem;
    }
    
    /* Form Inputs */
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    /* Footer */
    .footer-up {
        padding: 80px 0 40px;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-widget-title {
        font-size: 20px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-social a {
        font-size: 22px;
    }
    
    .recent-post-pic {
        width: 64px;
        height: 64px;
    }
    
    /* Cookie Banner - Standard Layout */
    .cookie-banner,
    .cookie-settings {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        gap: 20px;
    }
    
    .cookie-text {
        flex: 1;
        min-width: 300px;
        font-size: 16px;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .cookie-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ============================================
   Mobile Menu Styles
   ============================================ */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-secondary);
    border-top: 1px solid var(--color-border-secondary);
    z-index: 40;
    animation: slideDown 0.3s ease-out;
}

.mobile-menu.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu nav {
    padding: 12px 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    transition: all var(--animation-fast) ease;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link:focus {
    color: var(--color-primary);
    padding-left: 8px;
}

/* ============================================
   Navigation Responsive
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border-primary);
}

.footer-up {
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget-title {
    margin-bottom: 20px;
}

.footer-title-line {
    width: 48px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 8px;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li {
    display: inline-block;
    margin-right: 15px;
}

.footer-social a {
    display: inline-block;
    transition: all var(--animation-fast) ease;
    position: relative;
    z-index: 10;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    transition: all var(--animation-fast) ease;
}

.recent-post-wrp {
    max-height: 400px;
    overflow-y: auto;
}

.recent-post-wrp::-webkit-scrollbar {
    width: 4px;
}

.recent-post-wrp::-webkit-scrollbar-track {
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 2px;
}

.recent-post-wrp::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.footer-recent-post-single {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border-primary);
}

.footer-recent-post-single:last-child {
    border-bottom: none;
}

.recent-post-pic {
    width: 64px;
    height: 64px;
    background: var(--color-bg-card);
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
}

.recent-post-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-desc a {
    display: block;
    line-height: 1.4;
}

.copyright {
    border-top: 1px solid var(--color-border-primary);
    padding: 24px 0;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner,
.cookie-settings {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border-primary);
    padding: 24px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-button {
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .cookie-banner,
    .cookie-settings {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-button {
        flex: 1;
    }
}

