:root {
    --primary-color: #06b6d4;
    --secondary-color: #0891b2;
    --accent-color: #22d3ee;
    --text-color: #f8fafc;
    --light-text: #cbd5e1;
    --background-color: #0f172a;
    --card-background: #1e293b;
    --dark-background: #020617;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-dark: linear-gradient(135deg, #1e293b, #334155);
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --neon-glow: 0 0 20px rgba(34, 211, 238, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly improvements */
button, 
.cta-button, 
.submit-btn, 
a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Improved form elements for mobile */
input, 
textarea, 
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Better scrolling on mobile */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Mobile-first approach improvements */
.nav-links a,
.footer-section ul li a {
    padding: 0.5rem 0;
    min-height: 40px;
}

.stat-item,
.service-card,
.benefit-card,
.metric-card,
.city-stat-card,
.criteria-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Touch hover states */
@media (hover: hover) {
    .stat-item:hover,
    .service-card:hover,
    .benefit-card:hover,
    .metric-card:hover,
    .city-stat-card:hover,
    .criteria-card:hover {
        transform: translateY(-2px);
    }
}

/* Navigation */
.main-nav {
    background: rgba(15, 23, 42, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: var(--neon-glow);
    flex-direction: row;
}

.logo-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.6));
    transition: all 0.4s ease;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    background: rgba(34, 211, 238, 0.1);
    border: 2px solid rgba(34, 211, 238, 0.3);
    padding: 2px;
    box-sizing: border-box;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 25px rgba(34, 211, 238, 1));
    transform: scale(1.1);
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--accent-color);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background: var(--text-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(34, 211, 238, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(34, 211, 238, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        font-size: 1.1rem;
        width: 100%;
        min-height: 60px;
        border-bottom: none;
    }

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

    .nav-links a:hover {
        background: rgba(34, 211, 238, 0.1);
    }
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--background-color), var(--card-background));
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.8) 0%, 
        rgba(6, 182, 212, 0.3) 50%, 
        rgba(15, 23, 42, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.highlight {
    color: var(--accent-color);
    position: relative;
    text-shadow: var(--neon-glow);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
}

.cta-button.primary {
    background: var(--gradient-primary);
    box-shadow: var(--neon-glow);
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--accent-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.4);
}

.cta-button.primary:hover {
    background: var(--accent-color);
}

.cta-button.secondary:hover {
    background: var(--accent-color);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 211, 238, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* World Reach Video Section */
.world-reach {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--card-background), var(--background-color));
    margin-top: 2rem;
}

.world-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.world-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.world-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-text);
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.world-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.3);
}

.video-container video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2.5rem 2rem;
    color: white;
    text-align: center;
    backdrop-filter: blur(3px);
}

.video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 15px;
    z-index: -1;
    margin: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.video-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: 
        0 0 15px rgba(34, 211, 238, 0.9),
        2px 2px 6px rgba(0, 0, 0, 1),
        0 0 30px rgba(34, 211, 238, 0.4);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.video-overlay p {
    opacity: 1;
    color: #f8fafc;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 1),
        0 0 10px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: var(--background-color);
    text-align: center;
}

.services h1,
.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
    text-align: center;
}

.services-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.service-card {
    background: var(--card-background);
    padding: 0;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid rgba(34, 211, 238, 0.1);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

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

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

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

.service-card .fas {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--accent-color);
    background: rgba(15, 23, 42, 0.8);
    padding: 10px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
    z-index: 1;
}

.service-card .service-content {
    padding: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    position: relative;
    padding-left: 1rem;
    opacity: 0.9;
}

.service-card li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Results Section */
.results {
    padding: 6rem 2rem;
    background: var(--background-color);
    text-align: center;
}

.results-content {
    max-width: 1200px;
    margin: 0 auto;
}

.results h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.results p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.result-item {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--neon-glow);
}

.result-icon i {
    font-size: 2rem;
    color: white;
}

.result-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.result-item p {
    color: var(--light-text);
    margin: 0;
}

/* Cases Section */
.cases {
    padding: 6rem 2rem;
    background: var(--card-background);
    text-align: center;
}

.cases h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background: var(--card-background);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(34, 211, 238, 0.2);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.case-card:hover img {
    filter: brightness(1);
}

.case-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.case-card p {
    padding: 0 1.5rem 1rem;
    color: var(--light-text);
}

.case-results {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
}

.case-results span {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background: var(--background-color);
    text-align: center;
}

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--neon-glow);
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.step p {
    color: var(--light-text);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--card-background);
    position: relative;
    text-align: center;
    margin-top: 3rem;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(34, 211, 238, 0.08) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

/* Modern form styling */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

/* Modern submit button */
.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #00b4d8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
    background: linear-gradient(135deg, #00b4d8 0%, var(--accent-color) 100%);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.2);
}

.submit-btn:disabled {
    background: #4a4a4a;
    border: none;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

/* Form status messages */
.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.form-status .success {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-status .error {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

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

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* Modern, luftig footer */
.footer {
    background: var(--dark-background);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.5rem;
    text-align: left;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.footer-section {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1rem;
    margin-top: 0.5rem;
}
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}
.footer-section p, .footer-company-info {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.footer-section .footer-company-info {
    width: 100%;
    text-align: center;
}
.footer-section:last-child {
    align-items: center;
    text-align: center;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
        text-align: center;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .footer-section, .footer-section:last-child {
        align-items: center;
        text-align: center;
        padding: 0;
        max-width: none;
    }
    .footer-section h4 {
        margin-top: 1.5rem;
    }
}

.footer-section p {
    opacity: 0.7;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

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

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

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.1);
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(34, 211, 238, 0.1);
    color: var(--light-text);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-direction: row;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.4));
    transition: all 0.4s ease;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.footer-logo:hover .footer-logo-icon {
    filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.8));
    transform: scale(1.1);
}

.footer-logo h4 {
    margin: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        background: rgba(15, 23, 42, 0.98);
    }

    .nav-content {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
        gap: 0.3rem;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .world-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .world-text {
        text-align: left;
        padding: 0 1rem;
    }

    .world-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .world-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .benefits-list {
        margin-bottom: 2rem;
    }

    .benefits-list li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: flex-start;
    }

    .benefits-list i {
        margin-top: 0.3rem;
    }

    .world-video {
        padding: 0 1rem;
    }

    .video-container {
        margin: 0;
        height: auto;
    }

    .video-container img {
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    .video-overlay {
        padding: 1.5rem;
    }

    .video-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .video-overlay p {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-media {
        margin-top: 2rem;
        flex-direction: column;
    }

    .team-image,
    .data-video {
        margin: 0;
    }

    .about-stats {
        justify-content: center;
        margin-top: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .services-grid,
    .results-grid,
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services {
        padding: 6rem 1rem;
    }

    .services h1,
    .services h2 {
        margin-bottom: 1.5rem;
    }

    .services-intro {
        margin-bottom: 3rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    .service-card .fas {
        font-size: 2rem;
    }

    .services h2,
    .process h2,
    .contact h2 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .world-reach,
    .process,
    .contact {
        padding: 4rem 1rem;
    }

    .contact-content {
        max-width: none;
    }

    .submit-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .footer {
        padding: 3rem 1rem 1rem;
    }

    .footer-content {
        text-align: center;
    }

    /* Lokal SEO Mobile Styles */
    .lokal-seo-hero {
        padding: 6rem 1rem 3rem;
    }

    .lokal-seo-hero h1 {
        font-size: 2.5rem;
    }

    .lokal-seo-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .lokal-seo-hero .stats-lead {
        font-size: 1rem;
    }

    .seo-potential {
        padding: 3rem 1rem;
    }

    .seo-visual-section {
        margin: 2rem 0;
    }

    .seo-image-container.large {
        width: 100%;
        margin: 0;
    }

    .seo-feature-image.large {
        height: 400px;
        max-width: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .search-volumes-text {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .search-volumes-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .search-volumes-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Köpa Länkar Mobile Styles */
    .quality-metrics,
    .authority-sources,
    .exclusivity,
    .links-cta {
        padding: 4rem 1rem;
    }

    .metrics-grid,
    .exclusivity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .source-logos {
        gap: 1rem;
        justify-content: center;
    }

    .source-item {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .commitment-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .authority-note {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-process {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .metric-card,
    .criteria-card {
        padding: 1.5rem;
    }

    .metric-icon,
    .criteria-icon {
        width: 50px;
        height: 50px;
    }

    .metric-icon i,
    .criteria-icon i {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .about-text {
        text-align: left;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-media {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        height: auto;
    }

    .team-image,
    .data-video {
        height: 250px;
        margin: 0;
    }

    .team-image img,
    .data-video video {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .video-overlay-small {
        padding: 1rem;
    }

    .video-overlay-small h4 {
        font-size: 1rem;
    }

    .video-overlay-small p {
        font-size: 0.9rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
    }

    .about-stat {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
    }

    .seo-image-container.large {
        width: 100vw;
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }

    .seo-feature-image.large {
        height: 350px;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-content {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1rem;
        gap: 0.2rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .services h1,
    .services h2,
    .process h2,
    .contact h2,
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .services {
        padding: 5rem 1rem;
    }

    .services-grid {
        gap: 2rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .world-reach,
    .about-us,
    .process,
    .contact {
        padding: 4rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }

    .video-overlay {
        padding: 1rem;
    }

    .video-overlay h3 {
        font-size: 1.2rem;
    }

    .video-overlay p {
        font-size: 0.9rem;
    }

    /* Lokal SEO Extra Small Mobile Styles */
    .lokal-seo-hero h1 {
        font-size: 2rem;
    }

    .lokal-seo-hero .hero-subtitle {
        font-size: 1rem;
    }

    .lokal-seo-hero .stats-lead {
        font-size: 0.95rem;
    }

    .seo-feature-image.large {
        height: 300px;
        width: 100%;
        max-width: 100%;
    }

    .seo-benefits {
        padding: 1.5rem 1rem;
    }

    .seo-benefits h3 {
        font-size: 1.5rem;
    }

    .seo-benefits li {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .search-volumes-text h3 {
        font-size: 1.3rem;
    }

    .search-volumes-text p {
        font-size: 1rem;
    }

    .volumes-list li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }

    /* Köpa Länkar Extra Small Mobile Styles */
    .quality-metrics,
    .authority-sources,
    .exclusivity,
    .links-cta {
        padding: 2rem 0.5rem;
    }

    .metrics-intro h2,
    .sources-content h2,
    .exclusivity-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .metric-card,
    .criteria-card {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }

    .source-item {
        min-width: 60px;
        padding: 0.6rem;
    }

    .source-item span {
        font-size: 0.8rem;
    }

    .cta-button.large {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
    }

    .seo-image-container.large {
        width: 100%;
        margin: 0;
        padding: 0 1rem;
    }

    .seo-feature-image.large {
        height: 350px;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(34, 211, 238, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(34, 211, 238, 0.2);
    }
}

.service-card,
.result-item,
.case-card,
.step {
    animation: fadeIn 0.6s ease-out forwards;
}

.cta-button.primary {
    animation: glow 2s ease-in-out infinite;
}

/* About Us Section */
.about-us {
    padding: 8rem 2rem;
    background: var(--card-background);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    line-height: 1.7;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    gap: 1rem;
}

.about-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    flex: 1;
}

.about-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat .stat-text {
    font-size: 0.9rem;
    color: var(--light-text);
    opacity: 0.8;
}

.about-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 400px;
}

.team-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.2);
}

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

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

.data-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.2);
}

.data-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-small {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.video-overlay-small h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.video-overlay-small p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Lokal SEO Page Styles */
.search-stats {
    padding: 6rem 2rem;
    background: var(--card-background);
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.stats-lead {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* SEO Section Title */
.seo-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.seo-section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.seo-section-title p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin: 0;
}

/* SEO Visual Section - now vertical layout */
.seo-visual-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.seo-image-container.large {
    width: 95%;
    overflow: hidden;
}

.seo-feature-image.large {
    height: 400px;
    max-width: 100%;
    width: 100%;
}

.seo-image-container.large:hover .seo-feature-image.large {
    transform: scale(1.05);
}

.seo-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-color);
    animation: zoomIn 0.3s ease;
    cursor: default;
}

.lightbox-content:hover {
    box-shadow: 0 25px 80px rgba(34, 211, 238, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10001;
    background: rgba(15, 23, 42, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: scale(1.1);
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--card-background), var(--background-color));
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.lightbox-caption p {
    color: var(--light-text);
    margin: 0;
    font-size: 1.1rem;
}

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

@keyframes zoomIn {
    from { 
        opacity: 0; 
        transform: scale(0.3); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes zoomOut {
    from { 
        opacity: 1; 
        transform: scale(1); 
    }
    to { 
        opacity: 0; 
        transform: scale(0.3); 
    }
}

.lightbox.closing .lightbox-content {
    animation: zoomOut 0.3s ease;
}

/* Mobile Lightbox Responsiveness */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
        margin: 2.5%;
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
    
    .lightbox-caption {
        padding: 1.5rem;
    }
    
    .lightbox-caption h3 {
        font-size: 1.3rem;
    }
    
    .lightbox-caption p {
        font-size: 1rem;
    }
    
    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    .click-hint {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 98%;
        margin: 1%;
    }
    
    .lightbox-image {
        max-height: 50vh;
    }
    
    .lightbox-caption {
        padding: 1rem;
    }

    .click-hint {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .click-hint span {
        display: none;
    }
}

/* Click hint overlay */
.click-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    background: rgba(15, 23, 42, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 0;
    border-top: 1px solid rgba(34, 211, 238, 0.3);
    opacity: 0.8;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.seo-image-container.large:hover .click-hint {
    opacity: 1;
    transform: scale(1.05);
}

.click-hint i {
    font-size: 1rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    margin: 20px;
    background: var(--card-background);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lightbox-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        margin: 10px;
        max-height: 85vh;
    }

    .lightbox-image {
        max-height: 60vh;
        width: 100%;
    }

    .lightbox-caption {
        padding: 1rem;
    }
}

.lightbox-caption {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--card-background), var(--background-color));
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.lightbox-caption p {
    color: var(--light-text);
    margin: 0;
    font-size: 1.1rem;
}

/* Click hint styles */
.click-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    background: rgba(15, 23, 42, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 0;
    border-top: 1px solid rgba(34, 211, 238, 0.3);
    opacity: 0.8;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.seo-image-container:hover .click-hint {
    opacity: 1;
    background: rgba(15, 23, 42, 0.95);
}

.click-hint i {
    font-size: 1.1rem;
}

.click-hint span {
    display: inline-block;
}

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

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes zoomOut {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0.9); opacity: 0; }
}

.lightbox.closing .lightbox-content {
    animation: zoomOut 0.3s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        margin: 10px;
    }

    .lightbox-image {
        max-height: 70vh;
    }

    .lightbox-caption {
        padding: 15px;
    }

    .lightbox-caption h3 {
        font-size: 1.2rem;
    }

    .lightbox-caption p {
        font-size: 0.9rem;
    }

    .close-btn {
        top: 5px;
        right: 5px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }

    .click-hint {
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 100%;
        margin: 5px;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-caption {
        padding: 10px;
    }

    .click-hint {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .click-hint span {
        display: none;
    }
}

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

.city-stat-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.city-stat-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.city-stat-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--card-background), rgba(34, 211, 238, 0.1));
}

.city-stat-card.highlight {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--card-background), rgba(6, 182, 212, 0.1));
}

.city-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--neon-glow);
}

.city-icon i {
    font-size: 1.5rem;
    color: white;
}

.city-stat-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.search-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: var(--neon-glow);
}

.stat-detail {
    color: var(--light-text);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.stats-insight {
    background: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.insight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.insight-content i {
    font-size: 2rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
}

.insight-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.insight-text p {
    color: var(--light-text);
    margin: 0;
}

/* Local Benefits */
.local-benefits {
    padding: 6rem 2rem;
    background: var(--background-color);
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

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

.benefit-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--neon-glow);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.benefit-card p {
    color: var(--light-text);
}

/* Local CTA */
.local-cta {
    padding: 6rem 2rem;
    background: var(--card-background);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    justify-content: center;
}

.feature i {
    color: var(--accent-color);
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    margin-bottom: 1rem;
}

.cta-note {
    color: var(--light-text);
    opacity: 0.8;
    margin: 0;
}

/* Lokal SEO Hero Section */
.lokal-seo-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--background-color), var(--dark-background));
    text-align: center;
    position: relative;
}

.hero-stats-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.lokal-seo-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lokal-seo-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.lokal-seo-hero .stats-lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* SEO Potential Section */
.seo-potential {
    padding: 4rem 2rem;
    background: var(--card-background);
}

.potential-content {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-image-container.large {
    width: 95%;
    overflow: hidden;
}

.seo-feature-image.large {
    height: 400px;
    max-width: 100%;
    width: 100%;
}

.seo-benefits {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.seo-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.seo-benefits ul {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.seo-benefits li {
    font-size: 1rem;
    padding: 1rem;
}

.search-volumes-text {
    padding: 2rem 1rem;
    margin: 2rem 0;
}

/* Search Volumes Text */
.search-volumes-text {
    background: var(--background-color);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.search-volumes-text h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.search-volumes-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    text-align: center;
}

.volumes-list ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.volumes-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
    font-size: 1.1rem;
    line-height: 1.6;
}

.volumes-list li:last-child {
    border-bottom: none;
}

.volumes-list li strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Köpa Länkar Page Styles */
.quality-metrics {
    padding: 6rem 2rem;
    background: var(--background-color);
}

.metrics-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.metrics-intro {
    margin-bottom: 3rem;
}

.metrics-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.metrics-lead {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
}

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

.metric-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.metric-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.metric-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--neon-glow);
}

.metric-icon i {
    font-size: 1.8rem;
    color: white;
}

.metric-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.metric-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.authority-sources {
    padding: 6rem 2rem;
    background: var(--card-background);
}

.sources-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sources-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.sources-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.source-category {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.1);
}

.source-category h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.source-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.source-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 10px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
    min-width: 80px;
}

.source-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 211, 238, 0.2);
}

.source-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.source-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.authority-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.authority-note i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.authority-note p {
    color: var(--light-text);
    margin: 0;
    text-align: center;
}

.exclusivity {
    padding: 6rem 2rem;
    background: var(--background-color);
}

.exclusivity-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.exclusivity-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

.exclusivity-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.criteria-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.criteria-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.criteria-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--neon-glow);
}

.criteria-icon i {
    font-size: 1.8rem;
    color: white;
}

.criteria-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.criteria-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.criteria-card ul {
    list-style: none;
}

.criteria-card li {
    margin-bottom: 0.8rem;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.criteria-card li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.quality-commitment {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.commitment-content i {
    font-size: 2.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
}

.commitment-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.commitment-text p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

.links-cta {
    padding: 6rem 2rem;
    background: var(--card-background);
    text-align: center;
}

.cta-process {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 200px;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--neon-glow);
}

.process-step h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.process-step p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* Highlight text styles */
.highlight-text {
    font-size: 1.2em;
    color: var(--accent-color);
    margin: 1.5em 0;
    font-weight: 500;
    line-height: 1.4;
}

.city-highlight {
    color: #38bdf8;
    font-weight: 600;
}

.source-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.source-item:hover a {
    color: var(--accent-color);
}

.source-item a i {
    transition: transform 0.3s ease;
}

.source-item:hover a i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .about-text {
        text-align: left;
        padding: 0 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .about-media {
        grid-template-columns: 1fr;
        gap: 1rem;
        height: auto;
        margin: 0 -1rem;  /* Extend full width */
    }

    .team-image,
    .data-video {
        height: 300px;
        margin: 0;
        border-radius: 0;  /* Remove border radius for full width */
    }

    .team-image img,
    .data-video video {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1rem;
        margin: 2rem 1rem;
        justify-content: space-between;
    }

    .about-stat {
        flex: 0 1 calc(50% - 0.5rem);
        min-width: 140px;
        padding: 1rem;
    }

    .about-stat .stat-number {
        font-size: 1.3rem;
    }

    .about-stat .stat-text {
        font-size: 0.8rem;
    }
}

/* Form status messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.form-status .success {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 5px;
}

.form-status .error {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    padding: 1rem;
    border-radius: 5px;
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Submit button styling */
.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border: 1px solid var(--accent-color);
    box-shadow: var(--neon-glow);
    font-size: 1.1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.4);
    background: var(--accent-color);
}

.submit-btn:disabled {
    background: #666;
    border-color: #666;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Form status messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.form-status .success {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 5px;
}

.form-status .error {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    padding: 1rem;
    border-radius: 5px;
}