:root {
    /* Corporate Light Palette - Enhanced for Tech Feel */
    --primary: #0284c7;
    /* Vivid Sky Blue */
    --primary-dark: #075985;
    --secondary: #0f172a;
    /* Deep Navy */
    --accent: #38bdf8;
    /* Electric Blue */
    --bg-body: #ffffff;
    --bg-alt: #f1f5f9;
    /* Slate 100 */
    --text-main: #334155;
    /* Slate 700 - Softer compare to pure black */
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    /* Fonts */
    --font-main: 'Inter', system-ui, sans-serif;
    --font-mono: 'Menlo', 'Monaco', 'Courier New', monospace;
    /* Tech feel */

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.25);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes pulseSpark {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.service-card {
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.1s;
}

* {
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;

    /* Global Wide Grid Pattern (Standard Professional Look) */
    background-image:
        linear-gradient(rgba(226, 232, 240, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
    background-size: 60px 60px;
    /* Wide spacing */
    background-attachment: fixed;
    /* Keeps pattern stable while scrolling */
}

/* Typography */
h1,
h2,
h3 {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* Tech gradient */
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Tech / Mono Accents */
.section-sub,
.logo,
.stat-label {
    font-family: var(--font-mono);
    letter-spacing: -0.02em;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-padding {
    padding: 4rem 0;
}

.bg-alt {
    background-color: rgba(241, 245, 249, 0.8);
    /* Slight transparency to let grid show */
}

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

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Prevent nav-links from leaking width */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: transform 0.2s ease;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(2, 132, 199, 0.2));
    flex-shrink: 0;
}

.logo-spark {
    animation: pulseSpark 3s ease-in-out infinite;
    transform-origin: center;
}

.logo:hover .logo-icon {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 3rem;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* About hero - less padding */
.hero-about {
    padding-bottom: 2rem;
}

/* Smooth fade transition to services */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
    pointer-events: none;
}

.monitoring-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.22;
    mask-image: linear-gradient(to bottom, transparent, black 5%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 85%, transparent);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--primary);
    overflow: hidden;
}

.terminal-monitor {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2.5rem;
    width: 100%;
}

.terminal-box {
    border: 1px solid rgba(2, 132, 199, 0.25);
    padding: 1rem;
    background: rgba(2, 132, 199, 0.04);
    min-width: 250px;
    max-width: 100%;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.terminal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(2, 132, 199, 0.02) 50%);
    background-size: 100% 2px;
    pointer-events: none;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-weight: bold;
    border-bottom: 1px dashed rgba(2, 132, 199, 0.2);
    padding-bottom: 0.2rem;
}

.terminal-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.2rem;
    opacity: 0.8;
}

.terminal-label {
    opacity: 0.7;
}

.terminal-value {
    animation: valueFlicker 3s infinite;
}

.terminal-chart {
    height: 40px;
    width: 100%;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    margin-top: 0.5rem;
    animation: chartFlicker 4s infinite;
}

.terminal-chart path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawChart 8s linear infinite;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes chartFlicker {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

@keyframes valueFlicker {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Soft fade at bottom to transition to services */
.hero::after {
    display: none;
    /* Removed fade to keep connection solid */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: left;
}

.hero p {
    font-size: 1.35rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-family: var(--font-mono);
    /* Tech feel */
}

.cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cta-secondary {
    display: inline-block;
    background: white;
    /* Ensure contrast against grid */
    color: var(--secondary);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    font-family: var(--font-mono);
}

.cta-secondary:hover {
    border-color: var(--secondary);
    background: var(--bg-alt);
}

/* Nav Button Red "Wow" Factor */
.cta-small {
    background: #ef4444;
    /* Red-500 */
    color: #ffffff !important;
    /* Force white for visibility */
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 900 !important;
    /* Extra Bold */
    font-family: var(--font-mono);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    /* Glow */
    transition: all 0.3s;
    border: 1px solid #dc2626;
    /* Red-600 */
    letter-spacing: 0.5px;
}

.cta-small:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Eye Blink Animation */
@keyframes eyeBlink {

    0%,
    90%,
    100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0.1);
    }
}

.eye-animate {
    animation: eyeBlink 4s infinite;
    transform-origin: center;
}

/* 3RD EYE Eye Blink Animation */
@keyframes eyeBlink {

    0%,
    90%,
    100% {
        transform: scaleY(1);
    }

    94%,
    96% {
        transform: scaleY(0.1);
    }
}

.eye-icon-blink {
    animation: eyeBlink 4s infinite;
    transform-origin: center;
}

.cta-thirdeye {
    padding: 0.6rem 1.1rem;
    background: #000080;
    /* Navy Blue */
    color: white !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 128, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-thirdeye:hover {
    background: #0000a0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 128, 0.3);
}

.cta-thirdeye sup {
    font-size: 0.65em;
    top: -0.4em;
    margin-left: 1px;
    font-weight: 800;
}

/* Sub-page Specific Layouts (About / 3rd Eye) */
.split-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.split-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Modern Values Grid for About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.value-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.12);
    border-color: var(--primary);
}

.value-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}

.value-card-modern:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.value-icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: white;
}

.value-card-modern h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 700;
}

.value-card-modern p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Map Section (Pulsing Cities) */
.world-map-container {
    height: 400px;
    background: url('world-map.png') no-repeat center;
    background-size: contain;
    position: relative;
    margin-top: 2rem;
    opacity: 0.3;
    filter: grayscale(20%);
}

.map-card-modern .world-map-container {
    opacity: 0.25;
}

.city-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.city-dot::after {
    content: attr(data-city);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    border: 1px solid var(--primary);
}

.city-dot:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.dot-istanbul {
    top: 38%;
    left: 54%;
}

.dot-estonia {
    top: 22%;
    left: 54.5%;
}

.dot-nyc {
    top: 35%;
    left: 24%;
}

.dot-dublin {
    top: 28%;
    left: 44%;
}

.dot-dubai {
    top: 48%;
    left: 60%;
}

.dot-madrid {
    top: 38%;
    left: 46%;
}

.dot-tashkent {
    top: 36%;
    left: 63%;
}

.city-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulseSpark 2s infinite;
}

/* 3rd Eye Features Grid - Modern Card Design */
.thirdeye-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.thirdeye-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.thirdeye-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.thirdeye-feature-card:hover::before {
    transform: scaleY(1);
}

.thirdeye-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(2, 132, 199, 0.12);
    border-color: var(--primary);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1), rgba(56, 189, 248, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.thirdeye-feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scale(1.05);
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: color 0.3s;
}

.thirdeye-feature-card:hover .feature-icon-wrapper svg {
    color: white;
}

.thirdeye-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 700;
}

.thirdeye-feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.thirdeye-feature-card strong {
    color: var(--primary);
    font-weight: 700;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-detail {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-color);
    animation: fadeUp 0.4s ease-out;
}

.service-card.expanded .service-detail {
    display: block;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 1.5rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer-item:hover {
    color: white;
}

.footer-item a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
}

.footer-item-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
}

.footer-item:hover .footer-item-icon {
    transform: scale(1.15) rotate(5deg);
    stroke: var(--accent);
}

.contact-icon-spark {
    animation: pulseSpark 3s ease-in-out infinite;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
}

.footer-logo-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
    opacity: 0.6;
}

.legal-link {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
}

.legal-link:hover {
    color: var(--primary);
}

/* How We Work - Modern Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15);
    border-color: var(--primary);
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-alt);
    font-family: var(--font-mono);
    line-height: 1;
    transition: color 0.3s;
}

.process-card:hover .process-number {
    color: rgba(2, 132, 199, 0.1);
}

.process-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.process-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 700;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Elegant Contact CTA Section */
.cta-section-elegant {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
}

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

.cta-content-wrapper h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

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

.contact-buttons .cta {
    background: white;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-buttons .cta:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-buttons .cta svg {
    width: 20px;
    height: 20px;
}

.contact-buttons .cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-buttons .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Simplified About Page Styles */
.about-mission-block {
    margin-bottom: 4rem;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.about-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.08);
    border-color: var(--primary);
}

.about-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1), rgba(56, 189, 248, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.about-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.about-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.about-info-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-stats-section {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.05), rgba(56, 189, 248, 0.05));
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-map-section {
    margin-top: 2rem;
}

/* Cities Inline List */
.cities-inline-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.city-inline-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.city-inline-item:hover {
    color: var(--primary);
}

.city-dot-inline {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4);
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.4);
    }

    50% {
        box-shadow: 0 0 8px 2px rgba(2, 132, 199, 0.6);
    }
}

.city-separator {
    color: var(--border-color);
    font-size: 0.8rem;
}