/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cyberpunk Glassmorphism CSS Variables */
:root {
    --cyber-primary: #00ffff;
    --cyber-secondary: #ff00ff;
    --cyber-accent: #ffff00;
    --cyber-pink: #ff1493;
    --cyber-purple: #9d4edd;
    --cyber-blue: #00b4d8;
    --cyber-green: #00ff88;
    --cyber-dark: #0a0a0f;
    --cyber-darker: #050508;
    --cyber-light: #f0f0f5;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
    --neon-glow: 0 0 20px rgba(0, 255, 255, 0.5);
    --neon-glow-pink: 0 0 20px rgba(255, 0, 255, 0.5);
    --neon-glow-yellow: 0 0 20px rgba(255, 255, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--cyber-light);
    background: linear-gradient(135deg, var(--cyber-darker) 0%, var(--cyber-dark) 50%, #1a1a2e 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #2563eb;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header with background image */
.header.has-hero {
    background: transparent;
    box-shadow: none;
}

.header.has-hero.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* White text for header on hero sections */
.header.has-hero .nav-link {
    color: white;
}

.header.has-hero .nav-link:hover,
.header.has-hero .nav-link.active {
    color: #f1f5f9;
}

.header.has-hero .lang-btn {
    color: rgba(255,255,255,0.8);
}

.header.has-hero .lang-btn.active,
.header.has-hero .lang-btn:hover {
    color: white;
    background-color: rgba(255,255,255,0.2);
}

.header.has-hero .lang-divider {
    color: rgba(255,255,255,0.5);
}

.header.has-hero .nav-toggle span {
    background-color: white;
}

.header.has-hero.scrolled .nav-link {
    color: #333;
}

.header.has-hero.scrolled .nav-link:hover,
.header.has-hero.scrolled .nav-link.active {
    color: #2563eb;
}

.header.has-hero.scrolled .lang-btn {
    color: #666;
}

.header.has-hero.scrolled .lang-btn.active,
.header.has-hero.scrolled .lang-btn:hover {
    color: #2563eb;
    background-color: #f1f5f9;
}

.header.has-hero.scrolled .lang-divider {
    color: #ccc;
}

.header.has-hero.scrolled .nav-toggle span {
    background-color: #333;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

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

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

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

/* Ensure dropdown stays open when hovering over submenu */
.nav-dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dropdown-link:hover,
.dropdown-link.active {
    color: #2563eb;
    background-color: #f1f5f9;
}

/* White dropdown for header with hero */
.header.has-hero .nav-dropdown .dropdown-menu {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.header.has-hero .dropdown-link {
    color: #333;
}

.header.has-hero .dropdown-link:hover,
.header.has-hero .dropdown-link.active {
    color: #2563eb;
    background-color: #f1f5f9;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    color: #666;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    color: #2563eb;
    background-color: #f1f5f9;
}

.lang-divider {
    color: #ccc;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    background-color: #f9fafb;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #2563eb;
    font-weight: 500;
}

.service-link:hover {
    color: #1d4ed8;
}

.services-cta {
    text-align: center;
}

/* Portfolio Preview */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.portfolio-category {
    color: #6b7280;
    font-size: 0.9rem;
}

.portfolio-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    background-color: #f9fafb;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    color: white;
    border-color: white;
}

.cta-actions .btn-outline:hover {
    background-color: white;
    color: #2563eb;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Blog Styles - Cyberpunk Glassmorphism */
.blog-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--cyber-darker) 0%, var(--cyber-dark) 50%, var(--cyber-purple) 100%);
    color: var(--cyber-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.1) 50%, transparent 70%);
    animation: cyber-scan 8s linear infinite;
}

@keyframes cyber-scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.blog-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--cyber-primary);
    text-shadow: 
        0 0 10px var(--cyber-primary),
        0 0 20px var(--cyber-primary),
        0 0 30px var(--cyber-primary);
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: 2px;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    color: var(--cyber-light);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.blog-content {
    padding: 4rem 0;
    position: relative;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--cyber-primary), transparent);
    opacity: 0.5;
}

.blog-filters {
    position: relative;
    z-index: 2;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-container {
    flex: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--cyber-light);
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
}

.search-input::placeholder {
    color: rgba(240, 240, 245, 0.5);
}

.search-input:focus {
    outline: none;
    border-color: var(--cyber-primary);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        0 4px 12px rgba(0, 255, 255, 0.2),
        var(--glass-shadow);
    transform: translateY(-2px);
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 18px;
    border: 2px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(240, 240, 245, 0.7);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--glass-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    border-color: var(--cyber-primary);
    color: var(--cyber-primary);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        0 4px 12px rgba(0, 255, 255, 0.2),
        var(--glass-shadow);
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--cyber-primary);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-blue));
    color: var(--cyber-dark);
    border-color: var(--cyber-primary);
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.4),
        0 6px 16px rgba(0, 255, 255, 0.3),
        var(--glass-shadow);
    transform: translateY(-3px);
    font-weight: 700;
    text-shadow: 0 0 10px var(--cyber-dark);
}

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

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-primary), var(--cyber-secondary), var(--cyber-accent));
    animation: cyber-border-glow 3s linear infinite;
}

@keyframes cyber-border-glow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 255, 255, 0.2),
        0 12px 24px rgba(255, 0, 255, 0.15),
        var(--glass-shadow);
    border-color: var(--cyber-primary);
}

.blog-card.hidden {
    display: none;
}

.blog-card.visible {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

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

/* Additional Cyberpunk Animations */
@keyframes cyber-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes cyber-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
    75% { opacity: 0.9; }
}

@keyframes cyber-glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes cyber-text-glow {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--cyber-primary),
            0 0 20px var(--cyber-primary),
            0 0 30px var(--cyber-primary);
    }
    50% {
        text-shadow: 
            0 0 15px var(--cyber-primary),
            0 0 30px var(--cyber-primary),
            0 0 45px var(--cyber-primary);
    }
}

@keyframes glitchIn {
    0% {
        opacity: 0;
        transform: translateX(-100px) skewX(-30deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px) skewX(10deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewX(0deg);
        filter: blur(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate(100px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.8) contrast(1.1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2) saturate(1.2);
}

.blog-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.blog-category {
    color: var(--cyber-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--cyber-primary);
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cyber-light);
    font-weight: 600;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--cyber-primary);
    text-shadow: 0 0 15px var(--cyber-primary);
}

.blog-excerpt {
    color: rgba(240, 240, 245, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(240, 240, 245, 0.6);
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.blog-read-more {
    color: var(--cyber-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-secondary), var(--cyber-primary));
    transition: width 0.3s ease;
}

.blog-read-more:hover {
    color: var(--cyber-primary);
    text-shadow: 0 0 10px var(--cyber-primary);
}

.blog-read-more:hover::after {
    width: 100%;
}

.blog-cta {
    background: linear-gradient(135deg, var(--cyber-purple) 0%, var(--cyber-darker) 50%, var(--cyber-primary) 100%);
    color: var(--cyber-light);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 4rem;
    box-shadow: 
        0 20px 40px rgba(0, 255, 255, 0.2),
        0 10px 20px rgba(255, 0, 255, 0.15),
        var(--glass-shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.1) 50%, transparent 70%);
    animation: cyber-scan 6s linear infinite;
}

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

.blog-cta .cta-title {
    color: var(--cyber-primary);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 
        0 0 20px var(--cyber-primary),
        0 0 40px var(--cyber-primary);
    letter-spacing: 1px;
}

.blog-cta .cta-subtitle {
    color: rgba(240, 240, 245, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.blog-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-cta .btn-primary {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-blue));
    color: var(--cyber-dark);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.4),
        0 4px 12px rgba(0, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        0 8px 20px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 10px var(--cyber-dark);
}

.blog-cta .btn-outline {
    color: var(--cyber-light);
    border-color: var(--cyber-primary);
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.3),
        inset 0 0 15px rgba(0, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-cta .btn-outline:hover {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-blue));
    color: var(--cyber-dark);
    border-color: var(--cyber-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.5),
        0 6px 16px rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 10px var(--cyber-dark);
}

/* Article Styles */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
}

.article-navigation {
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
}

.article-nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.article-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 500;
}

.article-nav-link:hover {
    color: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0.5rem 0 0 0;
        min-width: auto;
    }
    
    .dropdown-menu li {
        padding: 0.25rem 0;
    }
    
    .dropdown-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    
    .dropdown-link:hover,
    .dropdown-link.active {
        color: #2563eb;
        background: transparent;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0.5rem 0 0 0;
        min-width: auto;
    }
    
    .dropdown-menu li {
        padding: 0.25rem 0;
    }
    
    .dropdown-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    
    .dropdown-link:hover,
    .dropdown-link.active {
        color: #2563eb;
        background: transparent;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin-bottom: 0;
    }
    
    .blog-hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .page-header.blog-header,
    .page-header.blog-header-fr {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .page-header.blog-header .container,
    .page-header.blog-header-fr .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .page-header.blog-header .page-title,
    .page-header.blog-header-fr .page-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .page-header.blog-header .page-subtitle,
    .page-header.blog-header-fr .page-subtitle {
        font-size: 1.3rem;
    }
    
    .page-header.blog-header .hero-actions,
    .page-header.blog-header-fr .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .blog-icon-container {
        width: 200px;
        height: 200px;
    }
    
    .rotating-icon {
        font-size: 4rem;
    }
    
    .shape {
        font-size: 2rem;
    }
    
    .blog-cta {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
    }
    
    .blog-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .category-filters {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .category-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .article-nav-links {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .page-header.blog-header,
    .page-header.blog-header-fr {
        min-height: 70vh;
        padding: 80px 0 40px;
    }
    
    .page-header.blog-header .page-title,
    .page-header.blog-header-fr .page-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .page-header.blog-header .page-subtitle,
    .page-header.blog-header-fr .page-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-icon-container {
        width: 150px;
        height: 150px;
    }
    
    .rotating-icon {
        font-size: 3rem;
    }
    
    .shape {
        font-size: 1.5rem;
    }
    
    .page-header.blog-header .hero-actions,
    .page-header.blog-header-fr .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .blog-card {
        border-radius: 12px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-cta {
        padding: 2.5rem 1rem;
        border-radius: 16px;
    }
    
    .blog-cta .cta-title {
        font-size: 1.5rem;
    }
    
    .blog-cta .cta-subtitle {
        font-size: 1rem;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .category-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .search-input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Specific page header backgrounds */
.page-header.services-header {
    background-image: url('../images/header-services.svg');
}

.page-header.web-design-header {
    background-image: url('../images/header-services.svg');
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-header.web-development-header {
    background-image: url('../images/header-services.svg');
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.page-header.ecommerce-header {
    background-image: url('../images/header-services.svg');
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.page-header.seo-header {
    background-image: url('../images/header-services.svg');
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.page-header.mobile-header {
    background-image: url('../images/header-services.svg');
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.page-header.branding-header,
.identite-visuelle-header {
    background-image: url('../images/header-services.svg');
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.page-header.portfolio-header {
    background-image: url('../images/header-portfolio.svg');
}

.page-header.blog-header {
    background: linear-gradient(135deg, var(--cyber-darker) 0%, var(--cyber-dark) 50%, var(--cyber-purple) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.page-header.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 0, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.page-header.blog-header .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 0;
    animation: slideInLeft 1s ease 0.3s forwards;
}

.hero-content-centered {
    text-align: center;
    opacity: 0;
    animation: slideInUp 1s ease 0.3s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-header.blog-header .page-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--cyber-primary), var(--cyber-secondary), var(--cyber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: glitchIn 1.5s ease forwards;
}

.page-header.blog-header .page-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.5s forwards;
    font-weight: 300;
    color: #b0b0b0;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.page-header.blog-header .page-subtitle-secondary {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.7s forwards;
    font-weight: 300;
    color: rgba(176, 176, 176, 0.8);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.page-header.blog-header .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.9s forwards;
}

.page-header.blog-header .btn-outline {
    background: transparent;
    color: var(--cyber-primary);
    border: 2px solid var(--cyber-primary);
}

.page-header.blog-header .btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.page-header.blog-header .btn-primary {
    background: linear-gradient(45deg, var(--cyber-primary), var(--cyber-secondary));
    color: var(--cyber-dark);
    border: none;
}

.page-header.blog-header .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.page-header.about-header {
    background-image: url('../images/header-about.svg');
}

.page-header.contact-header {
    background-image: url('../images/header-contact.svg');
}

/* French page header backgrounds */
.page-header.services-header-fr {
    background-image: url('../images/header-services-fr.svg');
}

.page-header.portfolio-header-fr {
    background-image: url('../images/header-portfolio-fr.svg');
}

.page-header.blog-header-fr {
    background: linear-gradient(135deg, var(--cyber-darker) 0%, var(--cyber-dark) 50%, var(--cyber-purple) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.page-header.blog-header-fr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 0, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.page-header.blog-header-fr .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.page-header.blog-header-fr .page-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--cyber-primary), var(--cyber-secondary), var(--cyber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: glitchIn 1.5s ease forwards;
}

.page-header.blog-header-fr .page-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.5s forwards;
    font-weight: 300;
    color: #b0b0b0;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.page-header.blog-header-fr .page-subtitle-secondary {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.7s forwards;
    font-weight: 300;
    color: rgba(176, 176, 176, 0.8);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.page-header.blog-header-fr .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.9s forwards;
}

.page-header.blog-header-fr .btn-outline {
    background: transparent;
    color: var(--cyber-primary);
    border: 2px solid var(--cyber-primary);
}

.page-header.blog-header-fr .btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.page-header.blog-header-fr .btn-primary {
    background: linear-gradient(45deg, var(--cyber-primary), var(--cyber-secondary));
    color: var(--cyber-dark);
    border: none;
}

.page-header.blog-header-fr .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: slideInRight 1s ease 0.8s forwards;
}

.blog-icon-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-icon-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: conic-gradient(from 0deg, var(--cyber-primary), var(--cyber-secondary), var(--cyber-accent), var(--cyber-primary));
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 4s linear infinite;
}

.rotating-icon {
    font-size: 6rem;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

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

/* Floating Blog Icons */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: float-random 20s infinite ease-in-out;
    filter: drop-shadow(0 0 10px currentColor);
}

.shape-1 {
    top: 12%;
    left: 6%;
    animation-delay: 0s;
    color: var(--cyber-primary);
}

.shape-2 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
    color: var(--cyber-secondary);
}

.shape-3 {
    bottom: 15%;
    left: 18%;
    animation-delay: 6s;
    color: var(--cyber-accent);
}

.shape-4 {
    top: 25%;
    right: 25%;
    animation-delay: 9s;
    color: var(--cyber-blue);
}

.shape-5 {
    bottom: 30%;
    right: 15%;
    animation-delay: 12s;
    color: var(--cyber-green);
}

@keyframes float-random {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-25px) rotate(90deg) scale(1.1); 
    }
    50% { 
        transform: translateY(15px) rotate(180deg) scale(0.9); 
    }
    75% { 
        transform: translateY(-18px) rotate(270deg) scale(1.05); 
    }
}

.page-header.about-header-fr {
    background-image: url('../images/header-about-fr.svg');
}

.page-header.contact-header-fr {
    background-image: url('../images/header-contact-fr.svg');
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.map-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.map-info p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.address-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.address-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: white;
}

.address-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.address-details p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.address-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transport-info {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.transport-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}

.transport-item svg {
    flex-shrink: 0;
    color: #2563eb;
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 10;
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge svg {
    color: #2563eb;
}

/* Enhanced Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f1f5f9;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.contact-details p a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-details p a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-details span {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    color: #64748b;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Enhanced Form Styles */
.contact-form-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    background: #fef2f2;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group label {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: #2563eb;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #2563eb;
}

.checkbox-group label {
    position: static;
    color: #475569;
    font-size: 0.95rem;
    cursor: pointer;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

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

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

.contact-method {
    animation: fadeInUp 0.6s ease-out;
}

.address-card {
    animation: fadeInUp 0.8s ease-out;
}

.map-container {
    animation: fadeInUp 1s ease-out;
}

.contact-form-section {
    animation: fadeInUp 1.2s ease-out;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Loading Animation */
.form-actions button:active {
    transform: scale(0.95);
}

/* Success Message Styles */
.success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.error-message {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

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

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .address-actions {
        flex-direction: column;
    }
    
    .transport-options {
        gap: 0.5rem;
    }
    
    .map-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-method:hover {
        transform: translateY(-3px);
    }
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
    .nav-brand .logo img {
        max-height: 40px;
        max-width: 160px;
    }
    
    .footer-logo {
        max-height: 35px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo img {
        max-height: 35px;
        max-width: 140px;
    }
    
    .footer-logo {
        max-height: 30px;
        max-width: 130px;
    }
}

/* Logo Optimization */
.nav-brand .logo img,
.footer-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Logo loading optimization */
.nav-brand .logo img {
    transition: opacity 0.3s ease;
}

.nav-brand .logo img:hover {
    opacity: 0.8;
}