/**
 * Amaizonia Main Stylesheet
 * Professional and Sleek Design
 * 
 * FONT CUSTOMIZATION:
 * To change fonts, simply update the CSS variables below:
 * - --font-primary: Main body font
 * - --font-heading: Headings and titles
 * - --font-brand: Brand/logo text
 * - --font-nav: Navigation links
 */

/* ============================================
   FONT CONFIGURATION - EASY TO CUSTOMIZE
   ============================================ */
:root {
    /* Primary Font Options (Body Text) */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* Alternative options:
       --font-primary: 'Open Sans', sans-serif;
       --font-primary: 'Lato', sans-serif;
       --font-primary: 'Roboto', sans-serif;
    */

    /* Heading Font Options (Titles, H1-H6) */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    /* Alternative options:
       --font-heading: 'Montserrat', sans-serif;
       --font-heading: 'Poppins', sans-serif;
       --font-heading: 'Raleway', sans-serif;
    */

    /* Brand Font Options (Logo, Brand Name) */
    --font-brand: 'Playfair Display', 'Georgia', serif;
    /* Alternative options:
       --font-brand: 'Montserrat', sans-serif;
       --font-brand: 'Poppins', sans-serif;
       --font-brand: 'Cormorant Garamond', serif;
    */

    /* Navigation Font Options */
    --font-nav: 'Montserrat', 'Inter', sans-serif;
    /* Alternative options:
       --font-nav: 'Poppins', sans-serif;
       --font-nav: 'Raleway', sans-serif;
       --font-nav: 'Inter', sans-serif;
    */

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Letter Spacing */
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0.01em;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-wider: 0.1em;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    letter-spacing: var(--letter-spacing-normal);
    line-height: 1.7;
    background: #0a0a0a;
    color: #fff;
    font-weight: var(--font-weight-normal);
}

/* ============================================
   SOPHISTICATED NAVIGATION HEADER
   ============================================ */
.navbar {
    backdrop-filter: blur(20px);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.95)) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 215, 0, 0.1) inset;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: transform 0.3s ease;
}

.logo-section:hover {
    transform: translateY(-2px);
}

.logo-section:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.logo-section:hover .logo {
    animation-duration: 4s;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.logo-link {
    display: block;
    width: 56px;
    height: 56px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-image {
    width: 37px;
    height: 37px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
}

.logo-link:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* Fallback for old CSS logo class (if still used elsewhere) */
.logo {
    width: 37px;
    height: 37px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ffd700);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: logoRotate 8s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-5px);
    }
}

@keyframes logoRotate {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        border-radius: 12px;
    }
    25% { 
        transform: rotate(90deg) scale(1.05);
        border-radius: 50%;
    }
    50% { 
        transform: rotate(180deg) scale(1);
        border-radius: 12px;
    }
    75% { 
        transform: rotate(270deg) scale(1.05);
        border-radius: 50%;
    }
}

@keyframes logoGradient {
    0% {
        background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #ffd700 100%);
    }
    33% {
        background: linear-gradient(135deg, #4ecdc4 0%, #ffd700 50%, #ff6b6b 100%);
    }
    66% {
        background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 50%, #4ecdc4 100%);
    }
    100% {
        background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #ffd700 100%);
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-text h1 {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin: 0;
    padding-left: 0;
    letter-spacing: var(--letter-spacing-tight);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
                word-spacing: 0.5px;
    background: linear-gradient(135deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text p {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: #ffd700;
    margin: 0;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: var(--font-nav);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 6px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #ffd700, #ffed4e);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
}

.nav-links a:hover {
    color: #ffd700;
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.nav-links a.active {
    color: #ffd700;
    font-weight: var(--font-weight-semibold);
}

        /* Dropdown Menu */
        .nav-links .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
            position: relative;
            padding-right: 2.5rem !important;
            padding-left: 1.25rem !important;
        }
        
        .dropdown-toggle-mobile {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        
        @media (min-width: 769px) {
            .dropdown-toggle-mobile {
                display: none;
            }
        }

        .dropdown-toggle::before {
            content: '●';
            font-size: 0.6rem;
            color: #ffd700;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.9;
            display: inline-block;
            line-height: 1;
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% {
                opacity: 0.9;
                transform: translateY(-50%) scale(1);
            }
            50% {
                opacity: 1;
                transform: translateY(-50%) scale(1.2);
            }
        }

        .dropdown:hover .dropdown-toggle::before {
            opacity: 1;
            animation-duration: 1s;
        }

        .dropdown-toggle::after {
            content: ' ▼';
            font-size: 0.8rem;
            margin-left: 0.5rem;
            transition: all 0.3s ease;
            position: absolute;
            right: 0.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: #ffd700;
            font-weight: bold;
            opacity: 1;
            display: inline-block;
            line-height: 1;
        }

        .dropdown:hover .dropdown-toggle::after,
        .dropdown.active .dropdown-toggle::after {
            transform: translateY(-50%) rotate(180deg);
            color: #ffd700;
            opacity: 1;
        }

        .dropdown-toggle:hover::after {
            color: #ffd700;
            opacity: 1;
        }

        /* Always show dropdown indicator */
        .nav-links .dropdown > a {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(20, 20, 20, 0.98);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 8px;
            min-width: 220px;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            list-style: none;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
            padding: 0;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-menu a::after {
            display: none;
        }

        .dropdown-menu a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            border-left-color: #ffd700;
            transform: translateX(5px);
        }

        /* Blog Card Hover Effect */
        .blog-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: heroZoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 
        20vw 30vh 2px 2px rgba(255, 215, 0, 0.5),
        40vw 60vh 2px 2px rgba(255, 215, 0, 0.4),
        60vw 20vh 2px 2px rgba(255, 215, 0, 0.6),
        80vw 80vh 2px 2px rgba(255, 215, 0, 0.3),
        10vw 70vh 2px 2px rgba(255, 215, 0, 0.5),
        70vw 50vh 2px 2px rgba(255, 215, 0, 0.4),
        30vw 10vh 2px 2px rgba(255, 215, 0, 0.6),
        90vw 40vh 2px 2px rgba(255, 215, 0, 0.3);
    animation: floatParticles 15s ease-in-out infinite;
}

.hero-particles::after {
    animation-delay: -7.5s;
    box-shadow: 
        15vw 25vh 2px 2px rgba(78, 205, 196, 0.5),
        35vw 55vh 2px 2px rgba(78, 205, 196, 0.4),
        55vw 15vh 2px 2px rgba(78, 205, 196, 0.6),
        75vw 75vh 2px 2px rgba(78, 205, 196, 0.3),
        5vw 65vh 2px 2px rgba(78, 205, 196, 0.5),
        65vw 45vh 2px 2px rgba(78, 205, 196, 0.4),
        25vw 5vh 2px 2px rgba(78, 205, 196, 0.6),
        85vw 35vh 2px 2px rgba(78, 205, 196, 0.3);
}

@keyframes floatParticles {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(50px, 20px) scale(1.1);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-family: var(--font-nav); /* Match header/navigation font */
    font-size: 4.725rem; /* Reduced by 10% from 5.25rem */
    font-weight: 700;
    letter-spacing: 3.5px;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    word-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 2rem 3rem;
    width: auto;
    max-width: 1800px; /* Further widened to fit exactly two rows */
    min-width: 1200px; /* Ensures minimum width for two rows */
    white-space: normal;
    text-align: center;
    
    /* Glassmorphic Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 60px rgba(255, 215, 0, 0.2);
    
    /* Text Styling */
    color: #fff;
    text-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(255, 215, 0, 0.4),
        0 0 80px rgba(255, 215, 0, 0.2);
    
    /* Animation */
    animation: fadeInUp 1.2s ease, glassmorphicGlow 3s ease-in-out infinite;
    
    /* Typewriter cursor effect */
    overflow: hidden;
}

.hero-content h1::after {
    content: '|';
    color: #ffd700;
    font-weight: 300;
    animation: blinkCursor 1s infinite;
    margin-left: 5px;
}

.hero-content h1.typewriter-complete::after {
    animation: none;
    opacity: 0;
}

@keyframes glassmorphicGlow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 60px rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 80px rgba(255, 215, 0, 0.4);
        border-color: rgba(255, 215, 0, 0.4);
    }
}

@keyframes blinkCursor {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.typewriter-cursor {
    color: #ffd700;
    font-weight: 300;
    animation: blinkCursor 1s infinite;
    margin-left: 2px;
}

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

.hero-subtitle {
    font-family: var(--font-nav); /* Match header/navigation font */
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.5s ease 0.3s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-diamond {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    transform: rotate(45deg);
    margin: 2rem auto;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
    animation: diamondPulse 2s ease-in-out infinite, diamondRotate 8s linear infinite;
    position: relative;
}

.hero-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: diamondShine 3s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.5);
    }
}

@keyframes diamondRotate {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

@keyframes diamondShine {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(45deg) translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) translateX(100%);
    }
}

/* Content Sections */
.content-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    color: #ffd700;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 0.5px rgba(0, 0, 0, 1)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.8));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
    color: #ffd700;
}

.service-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
    position: relative;
}

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

        .service-card h2 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
            transition: color 0.3s ease;
        }

.service-card:hover h2 {
    color: #ffd700;
}

        .service-card p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

.service-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* R&D Section */
.rd-section {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

        .rd-section h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }

        .rd-section p {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

/* Page Content Sections */
.page-content {
    padding: 120px 2rem 80px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 80vh;
}

        .page-content h1 {
            font-size: 2rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
            padding-bottom: 0.75rem;
            font-weight: 600;
        }

        .page-content h2 {
            font-size: 1.5rem;
            color: #ffd700;
            margin: 1.5rem 0 0.75rem;
            font-weight: 600;
        }

        .page-content h3 {
            font-size: 1.25rem;
            color: #fff;
            margin: 1.25rem 0 0.75rem;
            font-weight: 600;
        }

        .page-content p {
            margin-bottom: 0.875rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .page-content ul {
            margin: 1rem 0 1rem 2rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .page-content ul li {
            margin-bottom: 0.5rem;
            line-height: 1.7;
        }

.page-content a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Project Sections Styling */
.project-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    transition: all 0.3s ease;
}

.project-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.project-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #ffd700;
}

.project-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.status-upcoming {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

.project-content {
    color: rgba(255, 255, 255, 0.9);
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
}

.feature-list,
.impact-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list li,
.impact-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ffd700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.feature-list li:hover,
.impact-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.feature-list li strong,
.impact-list li strong {
    color: #ffd700;
    font-weight: 600;
}

.project-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.project-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.project-cta:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    text-decoration: none;
    color: #000;
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: #000;
}

.cta-button.secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.cta-button.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive adjustments for project sections */
@media (max-width: 768px) {
    .project-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .project-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* GDPR Page Styling */
.gdpr-intro {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.gdpr-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.gdpr-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.4);
}

.gdpr-section h2 {
    color: #ffd700;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.gdpr-section h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.right-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.right-item h3 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
}

.right-item p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.right-item p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

@media (max-width: 768px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .gdpr-section {
        padding: 1.5rem;
    }
    
    .gdpr-section h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   SOPHISTICATED FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(10, 10, 10, 1));
    padding: 4rem 2rem 2.5rem;
    text-align: center;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.03), transparent 70%);
    pointer-events: none;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-links li {
    position: relative;
}

.footer-links a {
    font-family: var(--font-nav);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    letter-spacing: var(--letter-spacing-normal);
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

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

footer p {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: var(--letter-spacing-normal);
    position: relative;
    z-index: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #ffd700);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffd700, #ffed4e);
}

        /* Contact Form Styles */
        .contact-intro {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .contact-form-wrapper {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            color: #ffd700;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.6px;
        }

        .required {
            color: #ff6b6b;
        }

        .form-group input,
        .form-group textarea {
            background: rgba(10, 10, 10, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            padding: 0.75rem 1rem;
            color: #fff;
            font-size: 0.95rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ffd700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
        }

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

        .submit-btn {
            background: linear-gradient(135deg, #d4af37, #ffd700);
            color: #000;
            border: none;
            border-radius: 6px;
            padding: 0.875rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .form-message {
            padding: 1rem;
            border-radius: 6px;
            margin-top: 1rem;
            display: none;
            font-size: 0.9rem;
        }

        .form-message.success {
            background: rgba(40, 167, 69, 0.2);
            border: 1px solid #28a745;
            color: #28a745;
            display: block;
        }

        .form-message.error {
            background: rgba(220, 53, 69, 0.2);
            border: 1px solid #dc3545;
            color: #dc3545;
            display: block;
        }

        .info-card {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
        }

        .info-card h3 {
            font-size: 1.1rem;
            color: #ffd700;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .info-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.75rem;
        }

        .info-card a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-card a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* Mobile Dropdown */
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static !important;
                opacity: 0;
                visibility: hidden;
                transform: none;
                display: none !important;
                max-height: none;
                overflow: visible;
                margin-top: 0;
                border: none;
                border-top: 1px solid rgba(255, 215, 0, 0.2);
                border-radius: 0;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .nav-links .dropdown.active .dropdown-menu,
            .dropdown.active .dropdown-menu {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                margin-top: 0 !important;
                padding-left: 1rem !important;
                padding-top: 0.5rem !important;
                padding-bottom: 0.5rem !important;
                background: rgba(10, 10, 10, 0.7) !important;
                position: static !important;
                transform: none !important;
                border-top: 1px solid rgba(255, 215, 0, 0.3) !important;
                width: 100% !important;
            }
            
            .dropdown-menu li {
                width: 100% !important;
            }
            
            .dropdown-menu a {
                padding: 0.875rem 1.5rem !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                color: rgba(255, 255, 255, 0.9) !important;
            }

            .dropdown-toggle::before {
                content: '●';
                font-size: 0.6rem;
                color: #ffd700;
                position: absolute;
                left: 0.5rem;
                top: 50%;
                transform: translateY(-50%);
                opacity: 0.9;
                animation: dotPulse 2s ease-in-out infinite;
            }

            .dropdown-toggle::after {
                content: '';
                display: none;
            }
            
            .dropdown-toggle-mobile {
                display: flex;
            }
            
            .dropdown.active .dropdown-toggle-mobile::before {
                content: '▼';
            }
            
            .dropdown-toggle-mobile::before {
                content: '▶';
                color: #ffd700;
                font-size: 0.8rem;
            }
        }

        /* ============================================
           COMPREHENSIVE MOBILE RESPONSIVE STYLES
           ============================================ */
        
        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none !important;
            background: transparent;
            border: 2px solid rgba(255, 215, 0, 0.3);
            color: #ffd700;
            font-size: 1.5rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10001 !important;
            position: relative;
            pointer-events: auto !important;
        }

        .mobile-menu-toggle:hover {
            border-color: #ffd700;
            background: rgba(255, 215, 0, 0.1);
        }

        .mobile-menu-toggle.active {
            background: rgba(255, 215, 0, 0.2);
            border-color: #ffd700;
        }

        /* Tablet and Mobile (768px and below) */
        @media (max-width: 768px) {
            /* Navigation */
            .nav-container {
                padding: 0 1.5rem;
                flex-wrap: wrap;
            }

            .logo-section {
                gap: 0 !important;
            }
            
            .logo-section:hover {
                transform: none !important;
            }

            .logo-image {
                width: 32px;
                height: 32px;
                margin-right: -3px !important;
                padding: 0 !important;
                animation: none !important;
            }
            
            .logo-link {
                margin-right: -5px !important;
                width: auto !important;
                height: auto !important;
            }
            
            .brand-text {
                margin-left: -9px !important;
                padding-left: 0 !important;
            }
            
            .brand-text h1 {
                font-size: 1.25rem;
                padding-left: 15px !important;
                margin-left: 0 !important;
            }
            
            .logo-link:hover .logo-image {
                transform: none !important;
            }
            
            .logo {
                animation: none !important;
            }

            .brand-text p {
                font-size: 0.65rem;
            }

            .mobile-menu-toggle {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                z-index: 10001 !important;
                position: relative !important;
                pointer-events: auto !important;
                cursor: pointer !important;
            }

            .nav-links {
                display: none !important;
                position: fixed !important;
                top: 70px !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                overflow-y: auto !important;
                overflow-x: hidden !important;
                max-height: calc(100vh - 70px) !important;
                -webkit-overflow-scrolling: touch;
                background: rgba(10, 10, 10, 0.99) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
                flex-direction: column !important;
                gap: 0;
                padding: 1rem 0 !important;
                border-top: 1px solid rgba(255, 215, 0, 0.2);
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
                width: 100% !important;
                z-index: 99999 !important;
                visibility: hidden !important;
                opacity: 0 !important;
                pointer-events: none !important;
                transition: opacity 0.3s ease, visibility 0.3s ease !important;
            }

            .nav-links.active {
                display: flex !important;
                flex-direction: column !important;
                z-index: 99999 !important;
                visibility: visible !important;
                opacity: 1 !important;
                pointer-events: auto !important;
                position: fixed !important;
                top: 70px !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                width: 100% !important;
                height: calc(100vh - 70px) !important;
                background: rgba(10, 10, 10, 0.99) !important;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block !important;
                padding: 1rem 1.5rem !important;
                width: 100% !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                color: rgba(255, 255, 255, 0.9) !important;
                text-decoration: none !important;
            }
            
            .nav-links .dropdown {
                width: 100% !important;
            }
            
            .nav-links .dropdown .dropdown-toggle {
                width: 100% !important;
            }
            
            .nav-links .dropdown-menu {
                width: 100% !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                list-style: none !important;
            }
            
            .nav-links .dropdown.active {
                background: transparent !important;
            }
            
            .nav-links .dropdown.active .dropdown-toggle {
                color: #ffd700 !important;
            }

            .nav-links a::after {
                display: none;
            }

            /* Hero Section */
            .hero {
                padding: 140px 1rem 2rem;
                min-height: 90vh;
            }

            .hero-background {
                background-attachment: scroll;
            }
            
            .hero-content {
                padding: 1rem;
                width: 100%;
                box-sizing: border-box;
            }
            
            .hero-content h1 {
                font-size: 1.6rem;
                letter-spacing: 0.6px;
                padding: 1rem 1rem;
                max-width: 100%;
                min-width: auto;
                word-wrap: break-word;
                overflow-wrap: break-word;
                line-height: 1.4;
                word-spacing: 1px;
            }
            
            .hero-subtitle {
                font-size: 0.85rem;
                padding: 0 1rem;
                line-height: 1.5;
            }
            
            .hero-diamond {
                width: 15px;
                height: 15px;
            }

            /* Content Sections */
            .content-section {
                padding: 140px 1.5rem 60px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-icon {
                width: 32px;
                height: 32px;
                top: 0.75rem;
                right: 0.75rem;
            }

            .service-image {
                height: 150px;
            }

            .service-card h2 {
                font-size: 1.1rem;
            }

            .service-card p {
                font-size: 0.9rem;
            }

            .rd-section {
                padding: 2rem 1.5rem;
                margin: 2rem 0;
            }

            .rd-section h2 {
                font-size: 1.25rem;
            }

            .rd-section p {
                font-size: 0.9rem;
            }

            /* Page Content */
            .page-content {
                padding: 140px 1.5rem 4rem;
                width: 100%;
                box-sizing: border-box;
                overflow-wrap: break-word;
                word-wrap: break-word;
            }
            
            /* Blog post page content - extra top padding for fixed header */
            .page-content .blog-post {
                padding-top: 1rem;
            }

            .page-content h1 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                word-wrap: break-word;
                overflow-wrap: break-word;
                line-height: 1.3;
            }
            
            /* Blog Post H1 - Prevent overlap with header */
            .blog-post header h1,
            .blog-post h1,
            article.blog-post header h1,
            article.blog-post h1 {
                font-size: 1.4rem !important;
                margin-top: 0.5rem;
                margin-bottom: 1rem;
                padding-top: 0;
                line-height: 1.3;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            
            .blog-post {
                padding-top: 0.5rem;
            }

            .page-content h2 {
                font-size: 1.25rem;
                margin-bottom: 0.75rem;
            }

            .page-content h3 {
                font-size: 1.1rem;
            }

            .page-content p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            /* Contact Form */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form-wrapper {
                padding: 1.5rem;
            }

            .form-group {
                margin-bottom: 1.25rem;
            }

            .form-group label {
                font-size: 0.9rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 0.95rem;
                padding: 0.75rem;
            }

            .submit-btn {
                width: 100%;
                padding: 1rem;
                font-size: 1rem;
            }

            .info-card {
                padding: 1.5rem;
            }

            .info-card h3 {
                font-size: 1.1rem;
            }

            .info-card p {
                font-size: 0.9rem;
            }

            /* Footer */
            footer {
                padding: 2rem 1.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 0.75rem;
                align-items: center;
                margin-bottom: 1.5rem;
            }

            .footer-links li {
                margin: 0;
            }

            .footer-links a {
                font-size: 0.85rem;
                padding: 0.5rem 0;
            }

            footer p {
                font-size: 0.8rem;
                text-align: center;
            }

            /* Cookie Banner */
            .cookie-banner {
                padding: 1rem;
                left: 0;
                right: 0;
            }

            .cookie-content {
                flex-direction: column;
                gap: 1rem;
            }

            .cookie-text h3 {
                font-size: 1rem;
            }

            .cookie-text p {
                font-size: 0.85rem;
            }

            .cookie-actions {
                flex-direction: column;
                width: 100%;
                gap: 0.75rem;
            }

            .cookie-btn {
                width: 100%;
                padding: 0.75rem;
                font-size: 0.9rem;
            }

            .cookie-modal-content {
                width: 95%;
                max-width: 95%;
                margin: 1rem auto;
                max-height: 90vh;
            }

            .cookie-modal-header h2 {
                font-size: 1.25rem;
            }

            .cookie-category-header {
                flex-direction: column;
                gap: 0.75rem;
            }

            .cookie-modal-footer {
                flex-direction: column;
                padding: 1rem;
            }

            .cookie-modal-footer .cookie-btn {
                width: 100%;
            }

            /* Blog Cards */
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .blog-card {
                padding: 1.5rem;
            }

            .blog-card h3 {
                font-size: 1.1rem;
            }

            .blog-card p {
                font-size: 0.9rem;
            }

            /* Portfolio Grid */
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* Projects Section */
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* Error 404 Page */
            .error-404 {
                padding: 100px 1rem 2rem;
            }

            .error-content {
                padding: 2rem 1.5rem;
            }

            .error-code {
                font-size: 5rem;
            }

            .error-title {
                font-size: 1.75rem;
            }

            .error-message {
                font-size: 1rem;
            }

            .error-actions {
                flex-direction: column;
                gap: 0.75rem;
            }

            .error-btn {
                width: 100%;
                padding: 0.875rem 1.5rem;
            }

            .error-links ul {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Small Mobile (480px and below) */
        @media (max-width: 480px) {
            /* Blog Post H1 - Even smaller for small mobile */
            .blog-post header h1,
            .blog-post h1,
            article.blog-post header h1,
            article.blog-post h1 {
                font-size: 1.2rem !important;
                margin-top: 0.5rem !important;
                margin-bottom: 0.875rem !important;
                padding-top: 0 !important;
                line-height: 1.25 !important;
            }
            
            main.page-content {
                padding-top: 130px !important;
                padding-left: 0.75rem !important;
                padding-right: 0.75rem !important;
            }
            .nav-container {
                padding: 0 1rem;
            }

            .logo-section {
                gap: 0 !important;
            }
            
            .logo-section:hover {
                transform: none !important;
            }
            
            .logo-image {
                width: 28px;
                height: 28px;
                margin-right: -5px !important;
                padding: 0 !important;
                animation: none !important;
            }
            
            .logo-link:hover .logo-image {
                transform: none !important;
            }
            
            .logo {
                animation: none !important;
            }
            
            .logo-link {
                margin-right: -5px !important;
                width: auto !important;
                height: auto !important;
            }
            
            .brand-text {
                margin-left: -9px !important;
                padding-left: 0 !important;
            }
            
            .brand-text h1 {
                font-size: 1.1rem;
                padding-left: 15px !important;
                margin-left: 0 !important;
            }
            
            .logo {
                animation: none !important;
            }

            .brand-text p {
                font-size: 0.6rem;
            }

            .hero {
                padding: 130px 0.75rem 1.5rem;
                min-height: 85vh;
            }

            .hero-content h1 {
                font-size: 1.4rem;
                padding: 0.875rem 1rem;
                letter-spacing: 0.4px;
                word-wrap: break-word;
                overflow-wrap: break-word;
                line-height: 1.35;
                word-spacing: 1px;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                line-height: 1.3;
                word-spacing: 0.5px;
            }

            .content-section {
                padding: 130px 1rem 50px;
            }

            .page-content {
                padding: 130px 1rem 3rem;
                width: 100%;
                box-sizing: border-box;
                overflow-wrap: break-word;
                word-wrap: break-word;
            }
            
            /* Blog post page content - extra top padding for fixed header */
            .page-content .blog-post {
                padding-top: 0.75rem;
            }

            .page-content h1 {
                font-size: 1.3rem;
                word-wrap: break-word;
                overflow-wrap: break-word;
                line-height: 1.3;
            }
            
            /* Blog Post H1 - Smaller for small mobile */
            .blog-post header h1,
            .blog-post h1,
            article.blog-post header h1,
            article.blog-post h1 {
                font-size: 1.2rem !important;
                margin-top: 0.5rem;
                margin-bottom: 0.875rem;
                padding-top: 0;
                line-height: 1.35;
                word-spacing: 1px;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            
            .blog-post {
                padding-top: 0.5rem;
            }
            
            .blog-post header {
                margin-bottom: 1.5rem;
            }

            .page-content h2 {
                font-size: 1.1rem;
            }

            .service-card {
                padding: 1.25rem;
            }

            .service-icon {
                width: 24px;
                height: 24px;
                top: 0.5rem;
                right: 0.5rem;
            }

            .service-icon svg {
                filter: drop-shadow(0 0 0.3px rgba(0, 0, 0, 1)) drop-shadow(0 0 0.6px rgba(0, 0, 0, 0.8));
            }

            .service-image {
                height: 120px;
            }

            .contact-form-wrapper {
                padding: 1.25rem;
            }

            .rd-section {
                padding: 1.5rem 1rem;
            }

            .error-code {
                font-size: 4rem;
            }

            .error-title {
                font-size: 1.5rem;
            }
        }

        /* Landscape Mobile (max-height: 500px) */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: 100vh;
                padding: 80px 1rem 1rem;
            }

            .hero-content h1 {
                font-size: 1.2rem;
                padding: 0.75rem 0.875rem;
                letter-spacing: 0.3px;
                word-wrap: break-word;
                overflow-wrap: break-word;
                line-height: 1.3;
                word-spacing: 0.5px;
            }

            .hero-subtitle {
                font-size: 0.75rem;
                margin-top: 0.5rem;
                line-height: 1.3;
                word-spacing: 0.5px;
            }
        }

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: cookieBounce 2s ease-in-out infinite;
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.6px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #ffd700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-link {
    background: transparent;
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cookie-btn-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

/* ============================================
   ANIMATED 2026 POPUP
   ============================================ */
.year-2026-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10004;
    animation: fadeIn 0.5s ease-out;
    overflow: hidden;
}

/* Sparkles Animation */
.sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    font-size: 2rem;
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0;
}

.sparkle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 20%; left: 80%; animation-delay: 0.3s; }
.sparkle-3 { top: 30%; left: 20%; animation-delay: 0.6s; }
.sparkle-4 { top: 40%; left: 70%; animation-delay: 0.9s; }
.sparkle-5 { top: 50%; left: 15%; animation-delay: 1.2s; }
.sparkle-6 { top: 60%; left: 85%; animation-delay: 1.5s; }
.sparkle-7 { top: 70%; left: 25%; animation-delay: 1.8s; }
.sparkle-8 { top: 80%; left: 75%; animation-delay: 2.1s; }
.sparkle-9 { top: 15%; left: 50%; animation-delay: 2.4s; }
.sparkle-10 { top: 85%; left: 50%; animation-delay: 2.7s; }

/* Balloons Animation */
.balloons-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.balloon {
    position: absolute;
    font-size: 3rem;
    animation: balloonFloat 4s ease-in-out infinite;
    opacity: 0;
}

.balloon-1 { top: 5%; left: 5%; animation-delay: 0s; }
.balloon-2 { top: 10%; right: 10%; animation-delay: 0.5s; }
.balloon-3 { top: 15%; left: 50%; animation-delay: 1s; }
.balloon-4 { bottom: 10%; left: 10%; animation-delay: 1.5s; }
.balloon-5 { bottom: 15%; right: 15%; animation-delay: 2s; }
.balloon-6 { bottom: 5%; left: 50%; animation-delay: 2.5s; }

.year-2026-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.98));
    border: 3px solid rgba(255, 215, 0, 0.8);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(255, 215, 0, 0.5),
                0 0 100px rgba(255, 215, 0, 0.3),
                inset 0 0 30px rgba(255, 215, 0, 0.2);
    animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 90%;
    z-index: 2;
}

.year-2026-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.year-2026-close:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    transform: rotate(90deg) scale(1.1);
}

.year-2026-text {
    position: relative;
}

.year-2026-number {
    display: block;
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate,
               bounce 1s ease-in-out;
    font-family: var(--font-brand, 'Playfair Display', serif);
    letter-spacing: 0.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.year-2026-message {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 600;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    font-family: var(--font-nav, 'Montserrat', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

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

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        transform: scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.5));
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

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

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: translateY(-20px) scale(1) rotate(180deg);
    }
    40% {
        opacity: 0.8;
        transform: translateY(-40px) scale(1.2) rotate(360deg);
    }
    60% {
        opacity: 1;
        transform: translateY(-60px) scale(1) rotate(540deg);
    }
    80% {
        opacity: 0.6;
        transform: translateY(-80px) scale(0.8) rotate(720deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5) rotate(900deg);
    }
}

@keyframes balloonFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.8);
    }
    25% {
        opacity: 1;
        transform: translateY(-30px) translateX(10px) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-60px) translateX(-10px) scale(1.1);
    }
    75% {
        opacity: 1;
        transform: translateY(-90px) translateX(15px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) translateX(-20px) scale(0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .year-2026-content {
        padding: 2rem 2.5rem;
        border-radius: 15px;
    }

    .year-2026-number {
        font-size: 5rem;
        letter-spacing: 0.3rem;
    }

    .year-2026-message {
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
    }

    .year-2026-close {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .year-2026-content {
        padding: 1.5rem 2rem;
        border-radius: 12px;
    }

    .year-2026-number {
        font-size: 4rem;
        letter-spacing: 0.2rem;
    }

    .year-2026-message {
        font-size: 1rem;
        letter-spacing: 0.15rem;
    }
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    backdrop-filter: blur(5px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal.show {
    display: flex;
    opacity: 1;
}

.cookie-modal-content {
    background: #000000;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cookie-modal-header h2 {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(10, 10, 10, 0.7);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-header h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cookie-category-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background: linear-gradient(135deg, #d4af37, #ffd700);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
    padding: 0.75rem 1.5rem;
}

/* Scrollbar for modal */
.cookie-modal-content::-webkit-scrollbar {
    width: 8px;
}

.cookie-modal-content::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 4px;
}

.cookie-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #ffd700);
    border-radius: 4px;
}

.cookie-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffd700, #ffed4e);
}

/* ============================================
   BLOG LISTEN BUTTON
   ============================================ */
.listen-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 8px;
    color: #ffd700;
    font-family: var(--font-nav);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.listen-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.listen-button:hover::before {
    left: 100%;
}

.listen-button:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.listen-button:active {
    transform: translateY(0);
}

.listen-button.playing {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.4), rgba(78, 205, 196, 0.4));
    border-color: #4ecdc4;
    animation: pulseGlow 2s ease-in-out infinite;
}

.listen-button.playing .listen-icon {
    animation: soundWave 1s ease-in-out infinite;
}

.listen-icon {
    font-size: 1.25rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.listen-button:hover .listen-icon {
    transform: scale(1.1);
}

.listen-text {
    position: relative;
    z-index: 1;
}

.listen-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 6px;
    border-left: 3px solid #ffd700;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.listen-status.playing {
    border-left-color: #4ecdc4;
}

.listen-status.paused {
    border-left-color: #ffd700;
}

.listen-status.stopped {
    border-left-color: rgba(255, 255, 255, 0.3);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(78, 205, 196, 0.5);
    }
}

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

/* Cookie Preferences Floating Button */
.cookie-preferences-float {
    position: fixed;
    bottom: 90px; /* Positioned above the chatbot toggle button */
    right: 20px;
    width: 50px;
    height: 50px;
    background: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001; /* Above chatbot toggle (10000) but below chatbot container (10002) */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    opacity: 0.95;
}

.cookie-preferences-float:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    background: #000000;
}

.cookie-float-icon {
    font-size: 1.5rem;
    line-height: 1;
    animation: cookieFloat 3s ease-in-out infinite;
}

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

/* Mobile responsive for cookie preferences button */
@media (max-width: 768px) {
    .cookie-preferences-float {
        bottom: 85px; /* Positioned above the chatbot toggle button on tablet */
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .cookie-float-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .cookie-preferences-float {
        bottom: 80px; /* Positioned above the chatbot toggle button on mobile */
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .cookie-float-icon {
        font-size: 1.1rem;
    }
}

/* Mobile responsive for listen button */
@media (max-width: 768px) {
    /* Blog Post Styles - Mobile */
    main.page-content {
        padding-top: 130px !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .blog-post header h1,
    .blog-post h1,
    article.blog-post header h1,
    article.blog-post h1 {
        font-size: 1.4rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 1rem !important;
        padding-top: 0 !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .blog-post header {
        margin-bottom: 1.5rem !important;
    }
    
    .listen-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .listen-status {
        width: 100%;
        font-size: 0.8rem;
    }
}

/* Extra small mobile devices (320px and below) */
@media (max-width: 320px) {
    .service-icon {
        width: 20px;
        height: 20px;
        top: 0.4rem;
        right: 0.4rem;
    }

    .service-icon svg {
        filter: drop-shadow(0 0 0.2px rgba(0, 0, 0, 1)) drop-shadow(0 0 0.4px rgba(0, 0, 0, 0.8));
    }

    .service-image {
        height: 100px;
    }
}

/* ============================================
   MOCK-UP COMPUTER SCREEN
   ============================================ */
.computer-mockup {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.computer-mockup-container {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 40px rgba(255, 215, 0, 0.1),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.computer-screen {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9),
                0 0 20px rgba(255, 255, 255, 0.1);
    border: 3px solid #333;
    cursor: pointer;
}

.computer-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.computer-screen-image {
    width: 100%;
    max-height: 400px;
    height: auto;
    display: block;
    border-radius: 5px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.computer-screen-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Screen reflection overlay */
.computer-screen-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    border-radius: 5px;
}

.computer-stand {
    width: 200px;
    height: 20px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
}

.computer-stand::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

/* Screen reflection effect and click indicator */
.computer-screen::after {
    content: 'Click to expand';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 215, 0, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.computer-screen:hover::after {
    opacity: 1;
}

/* Lightbox Modal for Expanded Image */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10005;
    overflow: auto;
    animation: fadeIn 0.3s ease-out;
}

.image-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-content {
    position: relative;
    width: 95%;
    max-width: 95vw;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 2rem 2rem;
    background: #000;
    margin: 2rem auto;
    overflow: hidden;
}

.image-lightbox-content img {
    width: 100%;
    height: 50vh;
    max-width: 100%;
    max-height: 50vh;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 8px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.image-lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10006;
}

.image-lightbox-close:hover {
    background: #ffd700;
    transform: rotate(90deg) scale(1.1);
}

.image-lightbox-caption {
    color: #ffd700;
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}


/* Responsive Design */
@media (max-width: 768px) {
    .computer-mockup {
        margin: 2rem auto;
        padding: 1rem 0;
    }
    
    .computer-mockup-container {
        padding: 1rem;
    }
    
    .computer-screen-image {
        max-height: 300px;
    }
    
    .computer-stand {
        width: 150px;
        height: 15px;
    }
    
    .computer-stand::after {
        width: 90px;
        height: 8px;
    }
    
    .image-lightbox-content {
        width: 98%;
        max-width: 98vw;
        padding: 3rem 1rem 1.5rem;
        margin: 1rem auto;
    }
    
    .image-lightbox-content img {
        height: 45vh;
        max-height: 45vh;
        object-position: top;
    }
}

@media (max-width: 480px) {
    .computer-mockup {
        margin: 1.5rem auto;
        padding: 0.5rem 0;
    }
    
    .computer-mockup-container {
        padding: 0.75rem;
    }
    
    .computer-screen-image {
        max-height: 250px;
    }
    
    .computer-stand {
        width: 120px;
        height: 12px;
    }
    
    .computer-stand::after {
        width: 70px;
        height: 6px;
    }
    
    .image-lightbox-content {
        width: 98%;
        max-width: 98vw;
        padding: 2.5rem 0.5rem 1rem;
        margin: 0.5rem auto;
    }
    
    .image-lightbox-content img {
        height: 40vh;
        max-height: 40vh;
        object-position: top;
    }
    
    .image-lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        top: -10px;
        right: -10px;
    }
}