/*
Theme Name: Eborion Premium Theme V3
Theme URI: https://eborion.com
Author: Eborion Team
Description: A lightweight, custom Obsidian dark theme with emerald and gold details built for digital agencies.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-colors, translation-ready, full-width-template
Text Domain: eborion
*/

/* ==========================================================================
   CSS DESIGN SYSTEM: Eborion (Luxurious Dark Emerald & Amber Gold Theme)
   ========================================================================== */

/* Design Tokens */
:root {
    --bg-dark: #090B0E;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    --accent-emerald: #00F29F;
    --accent-teal: #0575E6;
    --accent-gold: #FFB800;
    
    --gradient-primary: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-teal) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, #F857A6) 100%;
    --gradient-glow: radial-gradient(circle, rgba(0, 242, 159, 0.12) 0%, rgba(5, 117, 230, 0) 70%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hidden Utility */
.hidden {
    display: none !important;
}

/* Scroll Animations - Default visible, no JS dependency */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Legacy support for .visible class */
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeInSafe 1.2s ease-out 0.2s both;
}

@keyframes fadeInEffect {
    to { opacity: 1; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #030a08;
    box-shadow: 0 4px 20px rgba(0, 242, 159, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FF8A00 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.35);
    color: #000;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-emerald);
    color: var(--accent-emerald);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-emerald);
}

.btn-nav:hover {
    background: var(--gradient-primary);
    color: #030a08;
    box-shadow: 0 4px 15px rgba(0, 242, 159, 0.3);
    transform: scale(1.02);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: rgba(0, 242, 159, 0.3);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 242, 159, 0.05);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    background: rgba(9, 11, 14, 1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: rgba(9, 11, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(9, 11, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-accent {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 0.6rem;
    transition: var(--transition);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(9, 11, 14, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-emerald);
    padding-left: 30px;
}

/* Hamburger mobile nav toggle button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hamburger transition to close X icon */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.desktop-only {
    display: inline-block;
}

.mobile-nav-btn {
    display: none;
}

/* ==========================================================================
   PAGE SECTIONS & LAYOUTS
   ========================================================================== */
.page-section {
    padding: 140px 0 80px 0;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-top: 6px;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   HOMEPAGE
   ========================================================================== */

/* Hero */
.hero {
    position: relative;
    padding: 10px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    height: auto;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    object-fit: cover;
}

.visual-globe {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--gradient-glow);
    position: relative;
    animation: pulse 5s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; filter: blur(5px); }
    100% { transform: scale(1.1); opacity: 0.9; filter: blur(0px); }
}

.stat-card-floating-1, .stat-card-floating-2 {
    position: absolute;
    padding: 20px 28px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(0, 242, 159, 0.15);
}

.stat-card-floating-1 {
    top: 15%;
    left: 5%;
    animation: float1 6s infinite ease-in-out;
}

.stat-card-floating-2 {
    bottom: 15%;
    right: 5%;
    animation: float2 6s infinite ease-in-out 1s;
}

.stat-card-floating-1 h3, .stat-card-floating-2 h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Trusted By / Press */
.trusted-by {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
}

.trusted-label {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 600;
}

.logo-item {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: var(--text-primary);
}

/* Global Digital Network */
.global-network {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a202c;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-tag-light {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.network-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.network-title {
    font-size: 3rem;
    color: #090B0E;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.network-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.network-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    margin-top: 20px;
}

.n-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.n-stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.n-stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #FF6B00;
    line-height: 1;
    display: inline-block;
}
.n-stat-plus {
    font-size: 3rem;
    font-weight: 800;
    color: #FF6B00;
    display: inline-block;
}

.n-stat-lbl {
    font-size: 0.95rem;
    font-weight: 600;
    color: #718096;
    margin-top: 10px;
    white-space: nowrap;
}

.network-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #090B0E;
}

.network-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
}







/* Modal Popup Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal.hidden {
    display: none !important;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 35px;
    background: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-primary);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.map-line {
    fill: none;
    stroke: #FF6B00;
    stroke-width: 2.5;
    stroke-dasharray: 6, 6;
    opacity: 0.6;
    animation: dashAnim 20s linear infinite;
}

@keyframes dashAnim {
    to { stroke-dashoffset: -100; }
}

.map-pin {
    fill: #FF6B00;
}

.pulse-pin {
    fill: none;
    stroke: #FF6B00;
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    animation: pinPulse 2s infinite ease-out;
}

@keyframes pinPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* About Snapshot */
.about-snapshot {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.image-placeholder {
    height: 400px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 242, 159, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 35px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 35px;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Services Grid */
.services-overview {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--accent-emerald);
    box-shadow: 0 15px 35px rgba(0, 242, 159, 0.08);
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    min-height: 72px;
}

.card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-emerald);
}

.service-card:hover .card-link {
    color: var(--accent-gold);
}

.bus-dev-card {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 40px;
}

.bus-dev-card .card-icon {
    margin-bottom: 0;
}

.bus-dev-text {
    display: flex;
    flex-direction: column;
}

.bus-dev-card p {
    margin-bottom: 12px;
    min-height: auto;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 184, 0, 0.3);
}

.feature-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.03);
    background: linear-gradient(135deg, rgba(0, 242, 159, 0.1) 0%, rgba(255, 184, 0, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 40px;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #030a08;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
}

.testimonial-user h4 {
    font-size: 1rem;
    color: var(--text-primary);
}

.testimonial-user p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SERVICE DETAIL PAGES
   ========================================================================== */
.service-detail-hero {
    padding: 40px 0;
}

.back-link {
    display: inline-block;
    color: var(--accent-emerald);
    font-weight: 600;
    margin-bottom: 30px;
}

.back-link:hover {
    color: var(--accent-gold);
}

.service-detail-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 950px;
}

.benefits-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 24px;
    margin-bottom: 60px;
}

.benefits-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefits-list li {
    position: relative;
    padding-left: 32px;
    font-size: 1rem;
}

.benefits-list li::before {
    content: "âœ“";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-emerald);
    font-weight: 900;
}

/* Process Container */
.process-container {
    margin-bottom: 80px;
}

.process-container h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    position: relative;
}

.process-step .step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
}

.cta-box {
    text-align: center;
    padding: 70px;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(0, 242, 159, 0.04) 0%, transparent 100%);
    border: 1px solid var(--border-color);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* ==========================================================================
   BLOG PAGE
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    cursor: pointer;
}

.blog-image-placeholder {
    height: 200px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-heading);
    position: relative;
}

.blog-image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: var(--gradient-primary);
    opacity: 0.02;
}

.blog-card:hover .blog-image-placeholder::before {
    opacity: 0.08;
}

.blog-card-body {
    padding: 30px;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT US PAGE
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 45px;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-icon {
    font-size: 1.8rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-val {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

.info-val:hover {
    color: var(--accent-emerald);
}

.contact-form {
    padding: 45px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent-emerald);
    box-shadow: 0 0 10px rgba(0, 242, 159, 0.1);
}

.custom-select-container select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
}

.budget-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.budget-pill input {
    display: none;
}

.budget-pill span {
    display: block;
    text-align: center;
    padding: 12px 6px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.budget-pill input:checked + span {
    background: var(--gradient-primary);
    color: #030a08;
    border-color: var(--accent-emerald);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.btn-loader {
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(0,0,0,0.1);
    border-top: 2.5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message {
    margin-top: 20px;
    padding: 18px;
    background: rgba(0, 242, 159, 0.08);
    border: 1px solid var(--accent-emerald);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #050608;
    border-top: 1px solid var(--border-color);
    padding: 90px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 70px;
}

.brand-col p {
    margin-top: 20px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-secondary);
}

.social-icon:hover {
    color: var(--text-primary);
    border-color: var(--accent-emerald);
    background: rgba(0, 242, 159, 0.04);
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-emerald);
    padding-left: 6px;
}

.newsletter-col p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 24px;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-emerald);
}

.newsletter-form .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 28px 0;
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a:hover {
    color: var(--accent-emerald);
}

/* Image Wrappers & Glowing Containers */
.image-wrapper-glow {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 10px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper-glow::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 159, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-img, .about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition);
}

.image-wrapper-glow:hover .hero-img, .image-wrapper-glow:hover .about-img {
    transform: scale(1.02);
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE MENU
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bus-dev-card {
        grid-column: span 2;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container, .about-container, .contact-container, .footer-container, .network-container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        order: -1;
        height: 250px;
    }
    
    .visual-globe {
        width: 200px;
        height: 200px;
    }



    

    
    .network-stats {
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
        align-items: flex-start;
        text-align: center;
        width: 100%;
        margin-top: 30px;
        flex-wrap: nowrap !important;
    }
    
    .n-stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .n-stat-num {
        font-size: 2rem !important;
    }
    
    .n-stat-plus {
        font-size: 1.6rem !important;
    }
    
    .n-stat-lbl {
        font-size: 0.75rem !important;
        margin-top: 5px;
        white-space: nowrap !important;
        line-height: 1.2;
    }
    
    .map-line {
        stroke-width: 1.5 !important;
    }
    
    .map-pin {
        r: 4px !important;
    }
    
    .pulse-pin {
        r: 10px !important;
        stroke-width: 1.2 !important;
    }
    
    .network-title {
        text-align: center;
    }
    
    .network-subtitle {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .bus-dev-card {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }

    .desktop-only {
        display: none !important;
    }

    /* Mobile hamburger button */
    .menu-toggle {
        display: flex;
    }

    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
}


/* ==========================================================================
   Mentioned in Press Marquee Section
   ========================================================================== */
.press-marquee-section {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.press-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--font-heading);
}
.press-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    padding: 10px 0;
}
.press-marquee-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    gap: 80px;
    animation: marquee-press 20s linear infinite;
    justify-content: flex-start;
    align-items: center;
}
.press-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a5568;
    opacity: 0.6;
    transition: var(--transition);
    flex-shrink: 0;
    user-select: none;
}
.press-logo:hover {
    opacity: 1;
    color: var(--text-primary);
}
.press-logo.techcrunch {
    font-family: var(--font-heading);
    font-weight: 800;
}
.press-logo.wired {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}
.press-logo.cnbc {
    font-family: var(--font-heading);
    font-weight: 800;
    font-style: italic;
}
.press-logo.business-insider {
    font-family: var(--font-body);
    font-weight: 700;
    font-style: italic;
}
.press-logo.bloomberg {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.5px;
}
.press-logo.forbes {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 800;
}

@keyframes marquee-press {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}


/* Trusted Logos - Desktop Normal */
.trusted-logos-wrapper {
    width: 100%;
    padding: 10px 0;
}
.trusted-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.trusted-logos .logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.trusted-logos svg {
    height: 32px;
    width: auto;
    max-width: 120px;
}
.trusted-logos .logo-dup {
    display: none !important; /* Never show duplicates on desktop */
}

/* Trusted Logos - Mobile Carousel */
@media (max-width: 900px) {
    .trusted-logos-wrapper {
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    }
    .trusted-logos {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: max-content;
        gap: 60px;
        justify-content: flex-start !important;
        animation: marquee 20s linear infinite;
    }
    .trusted-logos .logo-item,
    .trusted-logos .logo-dup {
        display: flex !important;
        flex-shrink: 0;
    }
    @keyframes marquee {
        0% { transform: translate3d(0, 0, 0); }
        100% { transform: translate3d(-50%, 0, 0); }
    }
}


@media (max-width: 768px) {
    .stat-card-floating-1, .stat-card-floating-2 {
        display: none !important;
    }
}


/* Final Fixes for Mobile Buttons & Menu Overflow */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column !important;
        width: 100%;
        gap: 15px !important;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .btn-secondary {
        border-width: 1px !important;
    }

    /* Mobile Page Spacing */
    .page-section {
        padding: 80px 0 45px 0 !important;
    }

    /* COMPLETE Mobile Nav Override - This is the definitive version */
    .nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: rgba(9, 11, 14, 0.99) !important;
        border-left: 1px solid var(--border-color) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 100px 20px 60px 20px !important;
        gap: 5px !important;
        z-index: 1050 !important;
        transition: right 0.3s ease !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .nav.open {
        right: 0 !important;
    }

    .nav .nav-link {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        width: 100% !important;
        padding: 12px 0 !important;
        box-sizing: border-box !important;
    }

    /* Dropdown inside mobile nav - MUST stay within 280px */
    .nav .dropdown {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .nav .dropdown-content {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
        padding: 4px 0 4px 10px !important;
        display: none !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 240px !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: hidden !important;
    }

    .nav .dropdown.active .dropdown-content {
        display: block !important;
    }

    .nav .dropdown-content a {
        font-size: 0.9rem !important;
        padding: 7px 8px !important;
        display: block !important;
        white-space: normal !important;
        word-break: break-word !important;
        width: 100% !important;
        box-sizing: border-box !important;
        color: var(--text-secondary) !important;
    }

    .nav .dropdown-content a:hover {
        padding-left: 12px !important;
        background: transparent !important;
        color: var(--accent-emerald) !important;
    }

    .nav .mobile-nav-btn {
        display: inline-block !important;
        width: 100% !important;
        margin-top: 15px !important;
        box-sizing: border-box !important;
    }
}


/* Entrance Animations */
.animate-up {
    animation: slideUpSafe 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

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

.animate-fade {
    animation: fadeInSafe 1.2s ease-out 0.2s both;
}

@keyframes fadeInEffect {
    to { opacity: 1; }
}

@keyframes slideUpSafe {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSafe {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
