/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   LOADING SCREEN (Global)
   ============================================ */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050a18;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loading--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loading__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: pageLogoPulse 1.5s ease-in-out infinite;
}

@keyframes pageLogoPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.page-loading__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 180, 216, 0.15);
    border-top-color: #00b4d8;
    border-radius: 50%;
    animation: pageLoadSpin 0.8s linear infinite;
}

@keyframes pageLoadSpin {
    to { transform: rotate(360deg); }
}

/* ============================================
   PAGE TRANSITIONS (SPA-like)
   ============================================ */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a1628;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

body.page-transition {
    animation: fadeInPage 0.6s ease forwards;
}

@keyframes fadeInPage {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-color: #0e2a4a;
    --primary-light: #1a3d6d;
    --primary-dark: #091a30;
    --accent-color: #00b4d8;
    --accent-secondary: #6c63ff;
    --accent-glow: rgba(0, 180, 216, 0.3);
    --header-height: 80px;
    --text-color: #2d3748;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --light-bg: #f0f7ff;
    --dark-bg: #0a1628;
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   CSS RESET
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    font-family: var(--font-family);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 32, 96, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
    font-weight: 700;
}

.btn-white:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   HEADER & NAVIGATION (ODS Style - Dark)
   ============================================ */
header {
    background-color: var(--dark-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 72px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    list-style: none;
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ---- Dropdown Menu ---- */
.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.has-dropdown > a .dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: rgba(12, 17, 33, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(12, 17, 33, 0.97);
}

/* invisible bridge so hover doesn't break */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--accent-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.dropdown-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.5rem;
}

.dropdown-menu li a:hover i {
    background: var(--accent-color);
    color: #fff;
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.4rem 1rem;
}

.dropdown-menu .dropdown-footer {
    padding: 0.6rem 1.25rem 0.4rem;
}

.dropdown-menu .dropdown-footer a {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0;
}

.dropdown-menu .dropdown-footer a:hover {
    color: #fff;
    background: none;
    padding-left: 0;
}

/* CTA button in nav */
.nav-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 28, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 0.5rem;
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 0.5rem;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s, background 0.3s;
        border-radius: 8px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Hizmetlerimiz dropdown trigger */
    .has-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .has-dropdown > a .dropdown-arrow {
        font-size: 0.65rem;
        transition: transform 0.3s ease;
        opacity: 0.5;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.3s, transform 0.3s;
    }

    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-btn i {
        font-size: 1.1rem;
    }

    nav {
        height: 70px;
    }

    .nav-logo-img {
        height: 55px;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: none;
        border: none;
        border-radius: 10px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin: 0 0 0.25rem;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    }

    .dropdown-menu::before {
        display: none;
    }

    .has-dropdown::after {
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .has-dropdown.open > a .dropdown-arrow {
        transform: rotate(180deg);
        opacity: 1;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu li a {
        justify-content: flex-start;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 6px;
        margin: 0 0.25rem;
    }

    .dropdown-menu li a:hover {
        padding-left: 1rem;
        background: rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu li a i {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .dropdown-menu .dropdown-divider {
        margin: 0.3rem 1rem;
    }

    /* Mobile CTA button */
    .nav-links li:last-child {
        padding-top: 0.25rem;
    }

    .nav-cta {
        display: block;
        text-align: center;
        padding: 0.85rem 1.5rem;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: #fff;
}

.bg-dark h2,
.bg-dark h3 {
    color: #fff;
}

/* ============================================
   HERO SECTION (DeepZeka-Inspired Tech Style)
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #0a1628 0%, #0e2a4a 40%, #122f55 70%, #0a1628 100%);
}

/* Animated grid background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Gradient glow orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.2); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.04);
    border: 1px solid rgba(0, 180, 216, 0.08);
    animation: float 20s infinite ease-in-out;
}

.hero-circle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -50px;
    animation-duration: 25s;
}

.hero-circle:nth-child(2) {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    animation-duration: 30s;
    animation-delay: -5s;
    background: rgba(108, 99, 255, 0.04);
    border-color: rgba(108, 99, 255, 0.08);
}

.hero-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 25%;
    animation-duration: 20s;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(2deg); }
    50% { transform: translate(-20px, -40px) rotate(-1deg); }
    75% { transform: translate(10px, 20px) rotate(1deg); }
}

.hero > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    flex: 1;
}

.hero-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-white {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.hero-buttons .btn-white:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* Hero Visual / Floating Image */
.hero-visual {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 85%;
}

.hero-visual-main {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 85%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 180, 216, 0.15);
    animation: visualFloat 8s ease-in-out infinite;
}

.hero-visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes visualFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating accent cards */
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 3;
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-float-card i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.hero-float-card span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.hero-float-card:nth-child(2) {
    top: 8%;
    right: -5%;
    animation-delay: -1s;
}

.hero-float-card:nth-child(3) {
    bottom: 15%;
    left: -8%;
    animation-delay: -3s;
}

.hero-float-card:nth-child(4) {
    bottom: 5%;
    right: 5%;
    animation-delay: -4.5s;
    background: rgba(108, 99, 255, 0.12);
    border-color: rgba(108, 99, 255, 0.2);
}

.hero-float-card:nth-child(4) i {
    color: var(--accent-secondary);
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Decorative ring behind visual */
.hero-visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 1px solid rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.hero-visual-ring:nth-child(6) {
    width: 130%;
    height: 130%;
    border-color: rgba(108, 99, 255, 0.06);
    animation-delay: -2s;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.03); opacity: 1; }
}

/* Scroll Indicator - Animated Arrow */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-indicator .scroll-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scroll-indicator .scroll-arrow::before,
.scroll-indicator .scroll-arrow::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    border-radius: 2px;
}

.scroll-indicator .scroll-arrow::before {
    background: linear-gradient(90deg, transparent, var(--accent-color));
    transform: rotate(45deg);
    left: 1px;
}

.scroll-indicator .scroll-arrow::after {
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: rotate(-45deg);
    right: 1px;
}

.scroll-indicator .scroll-arrow {
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

.scroll-indicator:hover span {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 70px);
        padding: 4rem 0 5rem;
    }

    .hero > .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        max-width: 340px;
    }

    .hero-float-card {
        display: none;
    }
}

/* ============================================
   GLASSMORPHISM NAVIGATION (Modern Glass Effect)
   ============================================ */
.glass-nav {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-nav.scrolled {
    background: rgba(5, 10, 24, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================
   HERO V2 - Mesh Gradient & Modern Design
   ============================================ */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #050a18 0%, #0a1628 30%, #0e2a4a 60%, #091e36 100%);
    padding-top: var(--header-height);
}

/* Mesh Gradient Background */
.hero-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.mesh-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: meshFloat 20s ease-in-out infinite;
}

.mesh-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 42, 74, 0.8) 0%, rgba(0, 180, 216, 0.3) 50%, transparent 70%);
    top: -300px;
    right: -200px;
    animation-duration: 25s;
}

.mesh-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.4) 0%, rgba(14, 42, 74, 0.3) 50%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.mesh-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, transparent 60%);
    top: 30%;
    left: 40%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes meshFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(30px, 30px) scale(1.02);
    }
}

/* Floating Particles */
.mesh-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.mesh-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 180, 216, 0.5);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.mesh-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.mesh-particles span:nth-child(2) { top: 60%; left: 20%; animation-delay: -2s; }
.mesh-particles span:nth-child(3) { top: 30%; left: 70%; animation-delay: -4s; }
.mesh-particles span:nth-child(4) { top: 80%; left: 80%; animation-delay: -6s; }
.mesh-particles span:nth-child(5) { top: 10%; left: 50%; animation-delay: -8s; }
.mesh-particles span:nth-child(6) { top: 50%; left: 90%; animation-delay: -10s; }
.mesh-particles span:nth-child(7) { top: 70%; left: 40%; animation-delay: -12s; }
.mesh-particles span:nth-child(8) { top: 40%; left: 15%; animation-delay: -14s; }
.mesh-particles span:nth-child(9) { top: 90%; left: 60%; animation-delay: -3s; }
.mesh-particles span:nth-child(10) { top: 15%; left: 85%; animation-delay: -7s; }

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Floating Tech Icons */
.hero-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    animation: iconFloat 8s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: rgba(0, 180, 216, 0.5);
}

.floating-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 25%; right: 12%; animation-delay: -1.5s; }
.floating-icon:nth-child(3) { top: 60%; left: 5%; animation-delay: -3s; }
.floating-icon:nth-child(4) { top: 75%; right: 8%; animation-delay: -4.5s; }
.floating-icon:nth-child(5) { top: 45%; right: 5%; animation-delay: -6s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Hero Container V2 */
.hero-container-v2 {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - var(--header-height));
    padding: 4rem 0;
}

/* Hero Content V2 */
.hero-content-v2 {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.hero-badge span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Title V2 */
.hero-title-v2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-title-v2 .gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #60a5fa 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Hero Subtitle V2 */
.hero-subtitle-v2 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-weight: 400;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--accent-color), #0096c7);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 24px rgba(0, 180, 216, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 180, 216, 0.5);
}

.btn-hero-primary i {
    font-size: 0.9rem;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-hero-outline i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-hero-outline:hover i {
    transform: translateX(4px);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.trust-badge span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Scroll Indicator V2 */
.scroll-indicator-v2 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

.scroll-indicator-v2 span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator-v2:hover .scroll-mouse {
    border-color: var(--accent-color);
}

/* Fade-in Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.fade-in-up:nth-child(4) { transition-delay: 0.4s; }
.fade-in-up:nth-child(5) { transition-delay: 0.5s; }

/* Hero V2 Responsive */
@media (max-width: 992px) {
    .hero-title-v2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        letter-spacing: -1px;
    }
    
    .hero-subtitle-v2 {
        font-size: 1.1rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-v2 {
        min-height: calc(100vh - 70px);
        padding-top: 70px;
    }
    
    .hero-container-v2 {
        min-height: calc(100vh - 70px);
        padding: 3rem 0;
    }
    
    .hero-title-v2 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle-v2 {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .floating-icon {
        display: none;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    .scroll-indicator-v2 {
        display: none;
    }
}

/* ============================================
   STATS SECTION (ODS Style Counter Section)
   ============================================ */
.stats-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-sublabel {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

/* ============================================
   SERVICES SECTION (Homepage version)
   ============================================ */
.services-home {
    padding: 5rem 0;
}

/* ============================================
   SERVICES V2 - Neon Glow Cards
   ============================================ */
.services-v2 {
    background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
    padding: 6rem 0;
}

.services-cards-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-v2 {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

/* Neon Glow Effect */
.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.5), rgba(108, 99, 255, 0.5));
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.service-card-v2:hover .service-card-glow {
    opacity: 0.6;
    filter: blur(30px);
    transform: scale(1.02);
}

.service-card-inner {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-v2:hover .service-card-inner {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 180, 216, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Icon Wrapper with Outline Style */
.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 0 transparent);
}

.service-card-v2:hover .service-icon-wrapper i {
    color: var(--accent-color);
    filter: drop-shadow(0 0 12px rgba(0, 180, 216, 0.6));
    transform: scale(1.1);
}

.icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 180, 216, 0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-card-v2:hover .icon-ring {
    border-color: rgba(0, 180, 216, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.2);
}

.service-card-v2 h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-card-v2 > .service-card-inner > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    font-size: 0.7rem;
    color: var(--accent-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
}

/* Service Card Button */
.service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    margin-top: auto;
}

.service-card-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), #0096c7);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.35);
}

.service-card-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-card-btn:hover i {
    transform: translateX(4px);
}

/* Services V2 Responsive */
@media (max-width: 1024px) {
    .services-cards-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-v2 {
        padding: 4rem 0;
    }
    
    .services-cards-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-inner {
        padding: 2rem;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .service-card-v2 h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   SUCCESS SECTION - Başarı Tablosu ve Farkımız
   ============================================ */
.success-section {
    background: linear-gradient(135deg, #050a18 0%, #0a1628 40%, #0e2a4a 80%, #091e36 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.success-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.success-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.success-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Content */
.success-content {
    max-width: 520px;
}

.section-label-light {
    background: linear-gradient(135deg, var(--accent-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.success-title span {
    background: linear-gradient(135deg, var(--accent-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.success-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.success-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 50px;
}

.success-feature i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.success-feature span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-success-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--accent-color), #0096c7);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 24px rgba(0, 180, 216, 0.3);
    text-decoration: none;
}

.btn-success-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 180, 216, 0.5);
}

.btn-success-cta i {
    font-size: 0.9rem;
}

/* Right Side - Stats */
.success-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.success-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.success-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.success-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateX(8px);
}

.success-stat-card:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(108, 99, 255, 0.1));
    border-radius: 16px;
    flex-shrink: 0;
}

.stat-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.success-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Success Section Responsive */
@media (max-width: 1024px) {
    .success-wrapper {
        gap: 3rem;
    }
    
    .success-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .success-section {
        padding: 4rem 0;
    }
    
    .success-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .success-content {
        max-width: 100%;
    }
    
    .success-title {
        font-size: 1.8rem;
    }
    
    .success-description {
        font-size: 1rem;
    }
    
    .success-features {
        justify-content: center;
    }
    
    .btn-success-cta {
        width: 100%;
        justify-content: center;
    }
    
    .success-stat-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .success-stat-number {
        font-size: 2rem;
    }
    
    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon-wrapper i {
        font-size: 1.2rem;
    }
}

/* ============================================
   TIMELINE SECTION - Süreç Akışı
   ============================================ */
.timeline-section {
    background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

/* Timeline Vertical Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(0, 180, 216, 0.15);
    transform: translateX(-50%);
    border-radius: 2px;
    overflow: hidden;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-secondary));
    border-radius: 2px;
    transition: height 0.1s ease-out;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

/* Timeline Steps Container */
.timeline-steps {
    position: relative;
    z-index: 2;
}

/* Timeline Step */
.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Alternate left/right positioning */
.timeline-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-step:nth-child(even) {
    text-align: left;
}

/* Step Marker (Center Icon) */
.timeline-step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.marker-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 3px solid rgba(0, 180, 216, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.marker-icon i {
    font-size: 1.4rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

/* Pulse Animation Ring */
.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

.timeline-step.active .marker-pulse {
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Active State */
.timeline-step.active .marker-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border: none;
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.5), 0 0 0 6px rgba(0, 180, 216, 0.15);
    transform: scale(1.15);
    width: 64px;
    height: 64px;
}

.timeline-step.active .marker-icon i {
    color: #fff;
    font-size: 1.5rem;
}

/* Step Content */
.timeline-step-content {
    flex: 1;
    max-width: calc(50% - 60px);
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step.active .timeline-step-content {
    border-color: rgba(0, 180, 216, 0.2);
    box-shadow: 0 8px 40px rgba(0, 180, 216, 0.1);
}

.step-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-step-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.timeline-step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Hover Effect */
.timeline-step:hover .timeline-step-content {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-section {
        padding: 4rem 0;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-step,
    .timeline-step:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 80px;
    }
    
    .timeline-step-marker {
        left: 30px;
        top: 0;
    }
    
    .marker-icon {
        width: 50px;
        height: 50px;
    }
    
    .marker-icon i {
        font-size: 1.1rem;
    }
    
    .marker-pulse {
        width: 50px;
        height: 50px;
    }
    
    .timeline-step-content {
        max-width: 100%;
        padding: 1.25rem 1.5rem;
    }
    
    .timeline-step-content h3 {
        font-size: 1.15rem;
    }
    
    .timeline-step-content p {
        font-size: 0.9rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION (Index Page)
   ============================================ */

/* Keyframe Animations */
@keyframes testimonialSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes testimonialShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes testimonialBorderGlow {
    0%, 100% {
        border-color: rgba(0, 180, 216, 0.08);
        box-shadow: 0 0 20px rgba(0, 180, 216, 0);
    }
    50% {
        border-color: rgba(0, 180, 216, 0.25);
        box-shadow: 0 0 30px rgba(0, 180, 216, 0.08);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 180, 216, 0);
    }
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
        opacity: 0.06;
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
        opacity: 0.12;
    }
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                background 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
}

/* Shimmer overlay */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(0, 180, 216, 0.04) 45%,
        rgba(0, 180, 216, 0.08) 50%,
        rgba(0, 180, 216, 0.04) 55%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: testimonialShimmer 6s ease-in-out infinite;
    pointer-events: none;
    border-radius: 16px;
}

/* Floating quote icon */
.testimonial-card::after {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(0, 180, 216, 0.08);
    line-height: 1;
    pointer-events: none;
    animation: quoteFloat 5s ease-in-out infinite;
}

/* Slide-in animation when revealed */
.testimonial-card.revealed {
    animation: testimonialSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered delays for each card */
.testimonial-card:nth-child(1).revealed {
    animation-delay: 0.1s;
}
.testimonial-card:nth-child(2).revealed {
    animation-delay: 0.3s;
}
.testimonial-card:nth-child(3).revealed {
    animation-delay: 0.5s;
}

/* Idle subtle glow pulse */
.testimonial-card.revealed {
    animation: testimonialSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
               testimonialBorderGlow 4s ease-in-out infinite 1.5s;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 180, 216, 0.35);
    box-shadow: 0 20px 60px rgba(0, 180, 216, 0.12),
                0 0 40px rgba(0, 180, 216, 0.06);
    background: rgba(255, 255, 255, 0.06);
}

.testimonial-card:hover::before {
    animation: testimonialShimmer 2s ease-in-out infinite;
}

.testimonial-card:hover::after {
    color: rgba(0, 180, 216, 0.15);
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 0.85rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-stars i {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
    animation: starTwinkle 1.2s ease-in-out infinite;
}

.testimonial-card:hover .testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .testimonial-stars i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:hover .testimonial-stars i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:hover .testimonial-stars i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:hover .testimonial-stars i:nth-child(5) { animation-delay: 0.4s; }

.testimonial-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.93rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    min-height: 100px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b4d8;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    background: rgba(0, 180, 216, 0.2);
    animation: avatarPulse 2s ease-in-out infinite;
}

.testimonial-author strong {
    color: #fff;
    display: block;
    font-size: 0.93rem;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author strong {
    color: #00b4d8;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-text {
        min-height: auto;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-color), var(--primary-dark));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.page-header h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #b5dcff 40%, #7bc8ff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(183, 224, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Header (alias) */
.services-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.services-header h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services List */
.services-list {
    padding: 4rem 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.service-item:hover::before {
    opacity: 1;
}

.service-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: var(--primary-color);
    color: #fff;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-content>p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-sub-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.service-sub-items li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-bg);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #555;
    transition: var(--transition);
}

.service-sub-items li i {
    color: var(--primary-color);
    font-size: 0.5rem;
}

.service-sub-items li:hover {
    background: var(--primary-color);
    color: #fff;
}

.service-sub-items li:hover i {
    color: #fff;
}

/* Services CTA */
.services-cta {
    background: var(--light-bg);
    padding: 4rem 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .services-header h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .service-sub-items {
        flex-direction: column;
    }

    .service-sub-items li {
        width: fit-content;
    }
}

/* ============================================
   ABOUT / KURUMSAL PAGE
   ============================================ */
.about-intro {
    padding: 5rem 0;
}

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 0;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    min-width: 0;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 auto 1rem auto;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: #fff;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ============================================
   CONTACT / İLETİŞİM PAGE
   ============================================ */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f6faff 45%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.16), transparent 55%),
                radial-gradient(circle at 80% 45%, rgba(14, 42, 74, 0.12), transparent 55%),
                linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(14, 42, 74, 0.05), rgba(0, 180, 216, 0.08));
    background-size: 140% 140%, 120% 120%, 200% 200%;
    background-position: 0% 10%, 80% 20%, 40% 60%;
    animation: contactGradient 16s ease-in-out infinite alternate;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.contact-shell {
    position: relative;
    z-index: 1;
}

.contact-aurora {
    position: absolute;
    width: 480px;
    height: 480px;
    filter: blur(120px);
    opacity: 0.4;
    border-radius: 50%;
    animation: auroraMove 12s ease-in-out infinite alternate;
    z-index: 0;
}

.contact-aurora--one {
    top: -120px;
    left: -60px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 180, 216, 0.35), rgba(14, 42, 74, 0));
}

.contact-aurora--two {
    bottom: -160px;
    right: -80px;
    background: radial-gradient(circle at 40% 40%, rgba(14, 42, 74, 0.28), rgba(0, 180, 216, 0));
    animation-delay: 1.2s;
}

.contact-aurora--three {
    top: 40%;
    right: 25%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.25), rgba(14, 42, 74, 0));
    animation-delay: 2.4s;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e4efff;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 24px 60px rgba(0, 32, 96, 0.08);
    backdrop-filter: blur(10px);
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light), #4a6fa1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.12);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.4rem;
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 246, 255, 0.85));
    border: 1px solid #e6f1ff;
    box-shadow: 0 16px 35px rgba(0, 32, 96, 0.08);
    position: relative;
    overflow: hidden;
    animation: floatUp 0.85s ease var(--delay, 0s) both;
}

.contact-detail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 180, 216, 0.08), rgba(14, 42, 74, 0.06));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-detail:hover::after {
    opacity: 1;
}

.contact-detail-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.18), rgba(14, 42, 74, 0.85));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(0, 32, 96, 0.25);
    position: relative;
    z-index: 1;
    transform: translateZ(0);
}

.contact-detail h4 {
    font-size: 1rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 60px rgba(0, 32, 96, 0.12);
    border: 1px solid #e4f1ff;
}

.form-head {
    margin-bottom: 1.5rem;
}

.form-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.form-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00b4d8;
    box-shadow: 0 0 0 8px rgba(0, 180, 216, 0.2);
    animation: pulse 1.6s ease-in-out infinite;
}

.form-note {
    color: var(--text-light);
    margin-top: 0.8rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactGradient {
    0% {
        background-position: 0% 10%, 80% 20%, 40% 60%;
        transform: translate3d(-8px, 0, 0) scale(1);
    }
    50% {
        background-position: 18% 26%, 68% 38%, 58% 46%;
        transform: translate3d(6px, -6px, 0) scale(1.02);
    }
    100% {
        background-position: 36% 48%, 54% 60%, 78% 32%;
        transform: translate3d(14px, -12px, 0) scale(1.04);
    }
}

@keyframes auroraMove {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(20px, -30px, 0) scale(1.05);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 8px rgba(0, 180, 216, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(0, 180, 216, 0.06); }
    100% { box-shadow: 0 0 0 8px rgba(0, 180, 216, 0.2); }
}

/* ============================================
   FOOTER (ODS Style - Dark)
   ============================================ */
footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.d-none {
    display: none;
}

/* ============================================
   ANIMATED SECTION REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero image shimmer */
.hero-visual-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ============================================
   ANIMATED GRADIENT TEXT & GLOW HEADINGS
   ============================================ */

/* Gradient text for inline spans inside headings */
.gradient-text-inline {
    background: linear-gradient(135deg, var(--accent-color) 0%, #60a5fa 30%, var(--accent-secondary) 60%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: gradientFlow 4s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Animated gradient for hero titles */
.animated-gradient {
    background-size: 300% auto !important;
    animation: gradientFlow 4s ease-in-out infinite !important;
}

/* Glow effect on section titles */
.glow-title {
    position: relative;
}

.glow-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary), #f472b6);
    border-radius: 4px;
    background-size: 200% auto;
    animation: gradientFlow 3s ease-in-out infinite;
}

/* Typing dot animation */
.typing-dot {
    display: inline-block;
    animation: typingBlink 1.2s step-end infinite;
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

@keyframes typingBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Stat icon glow bubble */
.stat-icon-glow {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(108, 99, 255, 0.12));
    position: relative;
    animation: pulseGlow 3s ease-in-out infinite;
}

.stat-icon-glow i {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.2);
    }
    50% {
        box-shadow: 0 0 20px 8px rgba(0, 180, 216, 0.15);
    }
}

/* Enhanced stat number with shimmer */
.stat-number {
    position: relative;
    display: inline-block;
}

/* Stats section enhanced */
.stats-section .stat-item {
    position: relative;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 180, 216, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-section .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.12);
    border-color: rgba(0, 180, 216, 0.2);
}

/* Success title gradient span */
.success-title span,
.success-title .gradient-text-inline {
    background: linear-gradient(135deg, var(--accent-color) 0%, #60a5fa 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: gradientFlow 4s ease-in-out infinite;
}

/* Section title enhanced entrance animation */
.section-title.reveal.visible {
    animation: titleReveal 0.8s ease-out forwards;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Animated underline for section labels */
.section-label {
    position: relative;
    padding-bottom: 8px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    border-radius: 2px;
    transition: width 0.6s ease;
}

.section-label:hover::after,
.reveal.visible .section-label::after {
    width: 100%;
}

/* Number counter glow */
.success-stat-number {
    text-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}