/* ============================================================
   Premium Zone Marketing — Design System & Global Styles
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0a1628;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid #e8702a;
    border-right: 3px solid #2d7be5;
    border-radius: 50%;
    animation: preloaderSpin 0.8s linear infinite;
}

.preloader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

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

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #2d7be5, #8b5cf6, #ec4899, #e8702a);
    z-index: 10001;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8702a, #f59e4c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(232, 112, 42, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 32px rgba(232, 112, 42, 0.6);
}

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colours */
    --navy: #0a1628;
    --navy-light: #12233d;
    --navy-mid: #1a3155;
    --blue: #1b5faa;
    --blue-bright: #2d7be5;
    --blue-glow: #4a9fff;
    --orange: #e8702a;
    --orange-light: #f59e4c;
    --orange-glow: #ff9f43;
    --purple: #8b5cf6;
    --purple-glow: #a78bfa;
    --magenta: #ec4899;
    --cyan: #06b6d4;
    --cyan-glow: #22d3ee;
    --emerald: #10b981;
    --white: #ffffff;
    --off-white: #f0f4f8;
    --grey-100: #e2e8f0;
    --grey-200: #cbd5e1;
    --grey-300: #94a3b8;
    --grey-400: #64748b;
    --grey-500: #475569;
    --grey-600: #334155;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--navy) 0%, #0f1b3d 30%, #162550 60%, var(--blue) 100%);
    --gradient-card: linear-gradient(145deg, rgba(26, 49, 85, 0.85) 0%, rgba(10, 22, 40, 0.95) 100%);
    --gradient-orange: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    --gradient-blue: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
    --gradient-glow: linear-gradient(135deg, var(--blue-glow) 0%, var(--orange-glow) 100%);
    --gradient-purple: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
    --gradient-rainbow: linear-gradient(135deg, var(--blue-glow), var(--purple), var(--magenta), var(--orange));
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;

    /* Sizes */
    --container-max: 1280px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(74, 159, 255, 0.15);
    --shadow-purple: 0 0 40px rgba(139, 92, 246, 0.2);
    --shadow-orange: 0 0 40px rgba(232, 112, 42, 0.2);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.4s;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--grey-100);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay for premium feel */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.015;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease-out);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    color: var(--grey-200);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-300);
    max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 112, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 112, 42, 0.45);
}

.btn-primary::after {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blue-bright);
    color: var(--blue-bright);
}

.btn-outline:hover {
    background: var(--blue-bright);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo img {
    height: 42px;
    width: auto;
}

.nav-logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--grey-200);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--gradient-orange) !important;
    color: var(--white) !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(232, 112, 42, 0.25);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 112, 42, 0.4) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
    position: relative;
    z-index: 1002;
    margin-left: 8px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--grey-100);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-switcher.open .lang-btn {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--orange);
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    border-radius: 6px;
    color: var(--grey-200);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.lang-option.active {
    background: rgba(232, 112, 42, 0.12);
    color: var(--orange);
}

.lang-option.active::after {
    content: '✓';
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--orange);
}

.lang-flag {
    font-size: 1.15rem;
    line-height: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-event.png') center / cover no-repeat;
    opacity: 0.12;
    mix-blend-mode: luminosity;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}

/* Animated gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--blue-bright);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--orange);
    bottom: 20%;
    left: 5%;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: var(--blue-glow);
    top: 50%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 80px;
}

.hero-content .section-label {
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-content h1 {
    margin-bottom: 24px;
    animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero-content h1 .highlight {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--grey-200);
    margin-bottom: 40px;
    animation: fadeUp 0.8s var(--ease-out) 0.6s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease-out) 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    animation: fadeUp 0.8s var(--ease-out) 1s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-number .accent {
    color: var(--orange);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--grey-300);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ============================================================
   SECTIONS — General
   ============================================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Divider accent */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 3px;
    margin: 16px auto 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
    background: var(--navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration) var(--ease-out);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    background: rgba(45, 123, 229, 0.12);
    color: var(--blue-bright);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--grey-300);
    line-height: 1.7;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap 0.3s ease;
}

.service-card:hover .learn-more {
    gap: 12px;
}

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
.about {
    background: var(--navy-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.about-image-badge .label {
    font-size: 0.8rem;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    margin-bottom: 24px;
    color: var(--grey-200);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(26, 49, 85, 0.5);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-feature-icon {
    color: var(--orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey-100);
}

/* ============================================================
   PORTFOLIO / CASE STUDIES
   ============================================================ */
.portfolio {
    background: var(--navy);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
}

.portfolio-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--duration) var(--ease-out);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.portfolio-card-content {
    padding: 28px;
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 12px;
}

.portfolio-card-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.portfolio-card-content p {
    font-size: 0.9rem;
    color: var(--grey-300);
    line-height: 1.7;
}

.portfolio-results {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-result {
    text-align: left;
}

.portfolio-result .value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--blue-bright);
}

.portfolio-result .metric {
    font-size: 0.75rem;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--navy-light);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--gradient-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: all var(--duration) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--orange);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--grey-200);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.testimonial-info .name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-info .role {
    font-size: 0.8rem;
    color: var(--grey-400);
}

.testimonial-stars {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog {
    background: var(--navy);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--duration) var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.blog-card-image img,
.blog-card-image .blog-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.blog-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.blog-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 40px);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
    transition: transform 0.6s var(--ease-out);
}

.blog-card-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta span {
    font-size: 0.8rem;
    color: var(--grey-400);
}

.blog-meta .category {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
    color: var(--blue-bright);
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--grey-300);
    line-height: 1.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(232, 112, 42, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(45, 123, 229, 0.08) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-5%, 5%);
    }
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-inner p {
    font-size: 1.1rem;
    color: var(--grey-300);
    max-width: 560px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-inner .btn {
    position: relative;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    background: var(--navy-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h3 {
    margin-bottom: 16px;
}

.contact-info>p {
    margin-bottom: 36px;
    color: var(--grey-300);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(45, 123, 229, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--blue-bright);
}

.contact-item-text .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey-400);
    margin-bottom: 4px;
}

.contact-item-text .value {
    font-weight: 500;
    color: var(--grey-100);
}

.contact-form {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-200);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-bright);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(45, 123, 229, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--grey-400);
    max-width: 320px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--grey-300);
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    color: var(--grey-400);
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--grey-500);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--grey-500);
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(45, 123, 229, 0.08);
    filter: blur(100px);
    animation: orbFloat 10s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232, 112, 42, 0.06);
    filter: blur(100px);
    animation: orbFloat 12s ease-in-out infinite reverse;
}

/* Floating particle dots in page heroes */
.page-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: particleFloat 6s ease-in-out infinite;
}

.page-hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.page-hero-particles span:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: -1s;
    animation-duration: 5s;
    width: 3px;
    height: 3px;
}

.page-hero-particles span:nth-child(3) {
    left: 45%;
    top: 30%;
    animation-delay: -2s;
    animation-duration: 8s;
    width: 5px;
    height: 5px;
    background: rgba(232, 112, 42, 0.2);
}

.page-hero-particles span:nth-child(4) {
    left: 65%;
    top: 70%;
    animation-delay: -3s;
    animation-duration: 6s;
}

.page-hero-particles span:nth-child(5) {
    left: 80%;
    top: 40%;
    animation-delay: -4s;
    animation-duration: 9s;
    width: 6px;
    height: 6px;
    background: rgba(45, 123, 229, 0.2);
}

.page-hero-particles span:nth-child(6) {
    left: 90%;
    top: 15%;
    animation-delay: -2.5s;
    animation-duration: 7s;
    width: 3px;
    height: 3px;
}

.page-hero-particles span:nth-child(7) {
    left: 55%;
    top: 85%;
    animation-delay: -5s;
    animation-duration: 6s;
}

.page-hero-particles span:nth-child(8) {
    left: 35%;
    top: 10%;
    animation-delay: -1.5s;
    animation-duration: 8s;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.2);
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(15px, -25px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translate(-10px, -40px) scale(0.8);
        opacity: 0.5;
    }

    75% {
        transform: translate(20px, -15px) scale(1.1);
        opacity: 0.7;
    }
}

.page-hero h1 {
    position: relative;
    z-index: 1;
}

.page-hero .section-label {
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 16px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--grey-400);
}

.breadcrumb a {
    color: var(--grey-300);
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb .separator {
    margin: 0 8px;
    color: var(--grey-500);
}

/* ============================================================
   ABOUT PAGE — Team Section
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card-image {
    height: 260px;
    overflow: hidden;
}

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

.team-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.team-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.team-placeholder::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(255, 255, 255, 0.03) 25%, transparent 50%);
    animation: teamPlaceholderRotate 8s linear infinite;
}

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

.team-card-info {
    padding: 24px;
}

.team-card-info h4 {
    margin-bottom: 4px;
}

.team-card-info .role {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 500;
}

.team-card-info p {
    font-size: 0.85rem;
    color: var(--grey-400);
    margin-top: 8px;
}

/* ============================================================
   ABOUT PAGE — Timeline
   ============================================================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-bright), var(--orange));
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--navy-light);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-item h4 {
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--grey-300);
}

/* ============================================================
   SERVICES PAGE — Detailed
   ============================================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-detail:nth-child(even) .service-detail-content {
    order: -1;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.service-detail-content .section-label {
    text-align: left;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--grey-200);
}

.service-feature-item .check {
    color: var(--orange);
    font-size: 1.1rem;
}

/* ============================================================
   BLOG PAGE — Full List
   ============================================================ */
.blog-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

/* ============================================================
   ANIMATIONS — Scroll reveal
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: all 0.7s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: all 0.7s var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   COUNTER ANIMATION
   ============================================================ */
.counter {
    display: inline-block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

    .about-grid,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-detail-content {
        order: unset;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 36px 36px;
        gap: 4px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 16px;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 12px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    section {
        padding: 64px 0;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .blog-grid,
    .blog-full-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 48px 28px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
    text-align: center;
}

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

.mt-2 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 32px;
}

/* ============================================================
   ENHANCED ANIMATIONS & EFFECTS
   ============================================================ */

/* --- Gradient animated text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--blue-glow), var(--purple), var(--magenta), var(--orange));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

/* --- Pulsing glow on service icons --- */
.service-icon {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 30px rgba(45, 123, 229, 0.4);
}

/* --- Rainbow border spin on cards --- */
.service-card {
    position: relative;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, var(--blue-glow), var(--purple), var(--magenta), var(--orange), var(--cyan), var(--blue-glow));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
    animation: borderSpin 3s linear infinite;
}

@keyframes borderSpin {
    to {
        filter: hue-rotate(360deg);
    }
}

/* --- Floating animation --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
    }

    75% {
        transform: translateY(10px) rotate(-2deg);
    }
}

/* --- Button shimmer sweep --- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    z-index: 1;
    border-radius: inherit;
}

.btn-primary:hover::before {
    animation: shimmer 0.8s ease forwards;
}

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

    100% {
        transform: translateX(100%);
    }
}

/* --- 3D tilt on portfolio cards --- */
.portfolio-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.portfolio-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(139, 92, 246, 0.15);
}

/* --- Colorful testimonial stars --- */
.testimonial-stars {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

/* --- Blog card rainbow top border --- */
.blog-card {
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-glow), var(--purple), var(--magenta), var(--orange));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
    z-index: 2;
}

.blog-card:hover::before {
    transform: scaleX(1);
    animation: gradientShift 2s linear infinite;
}

/* --- Animated nav underline --- */
.nav-links a::after {
    background: linear-gradient(90deg, var(--blue-glow), var(--purple), var(--orange));
    background-size: 200% 100%;
    height: 3px;
    width: 24px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    animation: gradientShift 2s linear infinite;
}

/* --- CTA pulsing glow --- */
.cta-inner {
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.cta-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
    }
}

/* --- Animated section-label dot --- */
.section-label::before {
    content: '◆';
    margin-right: 8px;
    font-size: 0.7em;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

/* --- Rainbow section divider --- */
.section-divider {
    background: linear-gradient(90deg, var(--blue-glow), var(--purple), var(--orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    width: 80px;
}

/* --- Reveal scale variant --- */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Colorful social icon hovers --- */
.footer-social:nth-child(1):hover {
    background: #1877f2;
}

.footer-social:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social:nth-child(3):hover {
    background: #0a66c2;
}

.footer-social:nth-child(4):hover {
    background: #000;
}

.footer-social:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- Counter text glow --- */
.hero-stat-number {
    text-shadow: 0 0 20px rgba(74, 159, 255, 0.3);
}

/* --- About image border glow --- */
.about-image {
    position: relative;
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, var(--blue-glow), var(--purple), var(--magenta), var(--orange), var(--blue-glow));
    z-index: -1;
    animation: borderSpin 4s linear infinite;
    opacity: 0.6;
}

/* --- Timeline dot glow --- */
.timeline-item::before {
    box-shadow: 0 0 12px rgba(232, 112, 42, 0.5);
}

/* --- Enhanced form focus --- */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2), 0 0 20px rgba(139, 92, 246, 0.1);
}

/* --- Cursor glow (applied via JS) --- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease, top 0.3s ease;
}

/* --- Smooth section backgrounds --- */
.services {
    background: linear-gradient(180deg, var(--navy) 0%, #0d1f3c 100%);
}

.testimonials {
    background: linear-gradient(180deg, var(--navy-light) 0%, #0f2240 100%);
}

.blog {
    background: linear-gradient(180deg, #0d1f3c 0%, var(--navy) 100%);
}

/* --- More vibrant hero orbs --- */
.hero-orb-1 {
    background: var(--blue-bright);
}

.hero-orb-2 {
    background: var(--purple);
}

.hero-orb-3 {
    background: var(--cyan);
}

/* --- Team card glow --- */
.team-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

/* --- Portfolio result gradient text --- */
.portfolio-result .value {
    background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Page load fade --- */
body {
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- Typing cursor --- */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--orange);
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ============================================================
   ENHANCED PORTFOLIO FILTER TABS
   ============================================================ */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.portfolio-filter-btn {
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey-300);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-filter-btn:hover {
    color: var(--white);
    border-color: var(--orange);
    background: rgba(232, 112, 42, 0.08);
}

.portfolio-filter-btn.active {
    color: var(--white);
    background: var(--gradient-orange);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(232, 112, 42, 0.3);
}

/* ============================================================
   CLIENTS / LOGO MARQUEE
   ============================================================ */
.clients-marquee {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 64px;
    align-items: center;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--grey-500);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
    opacity: 0.5;
}

.client-logo:hover {
    opacity: 1;
    color: var(--grey-200);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   STATS COUNTER CARDS
   ============================================================ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    transition: all 0.4s ease;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-glow), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item:nth-child(even) .stat-number {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--grey-400);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(1)::after,
    .stat-item:nth-child(3)::after {
        display: block;
    }
}

@media (max-width: 480px) {
    .stats-strip {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* ============================================================
   ENHANCED LINK HOVER — underline slide
   ============================================================ */
.footer-column a {
    position: relative;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
}

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

/* ============================================================
   CONTACT ITEM HOVER
   ============================================================ */
.contact-item {
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}

.contact-item:hover .contact-item-icon {
    background: rgba(232, 112, 42, 0.15);
    color: var(--orange);
    transform: scale(1.05);
}

.contact-item-icon {
    transition: all 0.3s ease;
}

/* ============================================================
   SMOOTH TAG PILLS
   ============================================================ */
.portfolio-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(232, 112, 42, 0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 12px;
    border: 1px solid rgba(232, 112, 42, 0.15);
}