/* ============================================
   Nice Lojistik - Modern Website Styles
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1d2362;
    --primary-dark: #13183f;
    --primary-light: #2a3185;
    --accent: #0bbbef;
    --accent-light: #4dd0f5;
    --gradient-1: linear-gradient(135deg, #1d2362 0%, #0bbbef 100%);
    --gradient-2: linear-gradient(135deg, #0bbbef 0%, #1d2362 100%);
    --gradient-3: linear-gradient(135deg, #1d2362 0%, #0bbbef 50%, #1d2362 100%);
    --gradient-text: linear-gradient(135deg, #0bbbef, #1d2362, #0bbbef);
    --dark: #0a0e27;
    --dark-2: #111539;
    --dark-3: #1a1e42;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;
    --light-bg: #f8f9ff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 2px 8px rgba(29, 35, 98, 0.08);
    --shadow-md: 0 8px 32px rgba(29, 35, 98, 0.12);
    --shadow-lg: 0 16px 64px rgba(29, 35, 98, 0.16);
    --shadow-xl: 0 24px 80px rgba(29, 35, 98, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    height: 60px;
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-3);
    border-radius: 10px;
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(11, 187, 239, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(2);
    background: var(--accent-light);
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(11, 187, 239, 0.2);
}

/* ============================================
   Navigation
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

#navbar.scrolled .nav-logo img {
    filter: none;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

#navbar.scrolled .nav-link {
    color: var(--text);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--primary);
    background: rgba(29, 35, 98, 0.06);
}

.nav-cta {
    background: var(--gradient-1);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(29, 35, 98, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-search-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

#navbar.scrolled .nav-search-btn {
    border-color: rgba(29, 35, 98, 0.12);
    background: rgba(29, 35, 98, 0.05);
    color: var(--primary);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 35, 98, 0.4);
}

#navbar.scrolled .nav-cta {
    background: var(--gradient-1);
    color: var(--white);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

#navbar.scrolled .hamburger span {
    background: var(--dark);
}

.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(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 16px 0;
}

.mobile-nav-links a {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--accent-light);
    transform: translateX(10px);
}

.mobile-cta {
    display: inline-block;
    margin-top: 20px !important;
    background: var(--gradient-1) !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    font-size: 1.2rem !important;
}

.mobile-dropdown {
    position: relative;
}

.mobile-sub-menu {
    list-style: none;
    padding: 8px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-sub-menu li {
    margin: 0 !important;
}

.mobile-sub-menu a {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 6px 20px;
}

.mobile-sub-menu a:hover {
    color: var(--accent-light) !important;
}

/* ============================================
   Hero Section
   ============================================ */
#hero {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding: 0;
}

#hero .hero-swiper,
#hero .hero-swiper .swiper-wrapper,
#hero .hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-has-slider .hero-scroll-indicator {
    z-index: 3;
}

.hero-slider-nav {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-slider-pagination {
    position: absolute !important;
    bottom: 72px !important;
    z-index: 4;
}

.hero-slider-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: var(--accent-light);
    width: 24px;
    border-radius: 6px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.18;
    z-index: 0;
}

.hero-bg-image--photo {
    opacity: 1;
    transform: scale(1.02);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.42);
    z-index: 1;
}

.hero-bg-image--photo::before {
    background:
        linear-gradient(90deg, rgba(10, 14, 39, 0.88) 0%, rgba(10, 14, 39, 0.35) 18%, rgba(10, 14, 39, 0.35) 82%, rgba(10, 14, 39, 0.88) 100%),
        linear-gradient(180deg, rgba(10, 14, 39, 0.72) 0%, rgba(10, 14, 39, 0.28) 32%, rgba(10, 14, 39, 0.28) 68%, rgba(10, 14, 39, 0.82) 100%);
}

.hero-slide--visual-only .hero-bg-image--photo::before {
    background:
        linear-gradient(180deg, rgba(10, 14, 39, 0.35) 0%, rgba(10, 14, 39, 0.12) 40%, rgba(10, 14, 39, 0.12) 60%, rgba(10, 14, 39, 0.45) 100%);
}

.hero-slide--visual-only .hero-gradient {
    opacity: 0.35;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, var(--dark) 0%, transparent 28%, transparent 72%, var(--dark) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(11, 187, 239, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(11, 187, 239, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(29, 35, 98, 0.25) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 96px;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-30px);
}

.hero-badge i {
    color: var(--accent-light);
    font-size: 1rem;
}

#hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(29, 35, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(29, 35, 98, 0.4);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

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

.hero-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    animation: float 2s ease-in-out infinite;
    z-index: 3;
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-tag span {
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-tag.light {
    color: var(--accent-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-image-bg {
    position: absolute;
    inset: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-radius: var(--radius-lg);
}

.about-image-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about-image-card i {
    font-size: 2rem;
    color: var(--primary);
}

.about-image-card strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
}

.about-image-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite reverse;
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-20px);
}

.about-feature:hover {
    background: var(--light-bg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.about-feature strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.services-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card--compact {
    min-height: 210px;
    padding: 32px 24px;
}

.service-card--compact p {
    display: none;
}

.service-title-main {
    font-size: 1.02rem;
    letter-spacing: 0.05em;
    line-height: 1.35;
    margin-bottom: 16px;
    flex: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(40px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-3);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

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

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-card.featured {
    background: rgba(11, 187, 239, 0.15);
    border-color: rgba(11, 187, 239, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    opacity: 0.15;
    transition: var(--transition);
}

.service-card:hover .service-icon-bg {
    opacity: 0.25;
    transform: rotate(6deg);
}

.service-icon-wrap i {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-light);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    margin-top: auto;
}

.service-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 50px;
}

.service-features span i {
    color: var(--accent-light);
    font-size: 0.7rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: auto;
}

.service-link:hover {
    gap: 12px;
    color: var(--white);
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: stretch;
}

.why-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(29, 35, 98, 0.06);
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    opacity: 0;
    transform: translateY(40px);
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.why-card:hover h4 {
    color: var(--white);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    transition: var(--transition);
}

.why-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Stats Section
   ============================================ */
.section-stats {
    background: var(--dark);
    color: var(--white);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.stats-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stats-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--accent);
}

.stats-shape.s1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.stats-shape.s2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
}

.stats-shape.s3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: stretch;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: inline;
    font-variant-numeric: tabular-nums;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    display: inline;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    font-weight: 500;
}

/* ============================================
   E-Commerce Section
   ============================================ */
.ecommerce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ecommerce-content .section-tag {
    margin-bottom: 12px;
}

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

.ecommerce-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.ecommerce-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.step:hover {
    background: var(--light-bg);
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* E-Commerce Visual */
.ecommerce-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecom-visual-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.ecom-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.ecom-circle {
    position: absolute;
    border: 2px dashed rgba(11, 187, 239, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ecom-circle.c1 {
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.ecom-circle.c2 {
    width: 300px;
    height: 300px;
    animation: rotate 30s linear infinite reverse;
}

.ecom-circle.c3 {
    width: 380px;
    height: 380px;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ecom-box {
    position: absolute;
    background: var(--white);
    border: 1px solid rgba(29, 35, 98, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    transition: var(--transition);
}

.ecom-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ecom-box i {
    font-size: 1.5rem;
    color: var(--primary);
}

.ecom-box span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.ecom-box.box1 {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCard 3s ease-in-out infinite;
}

.ecom-box.box2 {
    bottom: 80px;
    left: 10px;
    animation: floatCard 3.5s ease-in-out infinite 0.5s;
}

.ecom-box.box3 {
    bottom: 80px;
    right: 10px;
    animation: floatCard 4s ease-in-out infinite 1s;
}

/* ============================================
   References Section
   ============================================ */
.references-marquee {
    overflow: hidden;
    margin-bottom: 60px;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

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

.marquee-item {
    flex-shrink: 0;
}

.ref-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 20px 34px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    min-width: 168px;
    min-height: 82px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ref-logo:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(11, 187, 239, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.ref-logo i {
    font-size: 1.5rem;
    color: var(--accent-light);
}

.ref-logo span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.ref-logo img {
    height: 42px;
    max-width: 136px;
    object-fit: contain;
    display: block;
    opacity: 0.94;
    transition: opacity var(--transition), filter var(--transition);
    filter: brightness(0) invert(1);
}

.ref-logo:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
}

a.ref-logo {
    text-decoration: none;
    color: inherit;
}

/* Testimonials */
.testimonial-swiper {
    padding-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-card > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar--image {
    background: transparent;
    padding: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-light) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* ============================================
   CTA Section
   ============================================ */
.section-cta {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 187, 239, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary);
    font-weight: 500;
}

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

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--light-bg);
    border: 1px solid rgba(29, 35, 98, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid rgba(29, 35, 98, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 28px;
}

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

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-group.full {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid rgba(29, 35, 98, 0.08);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--light-bg);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(29, 35, 98, 0.08);
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 14px;
    font-size: 0.8rem;
    color: var(--primary);
    background: var(--white);
    font-weight: 600;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    position: relative;
}

.map-section iframe {
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.map-section:hover iframe {
    filter: grayscale(0);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent-light);
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--white);
}

.footer-links-col a:hover::before {
    width: 12px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 100;
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Quote Modal (Teklif Al popup)
   ============================================ */
body.quote-modal-open {
    overflow: hidden;
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.quote-modal.is-open {
    display: flex;
}

.quote-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.78);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    animation: quoteFade 0.25s ease;
}

.quote-modal-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 880px;
    max-height: calc(100vh - 48px);
    display: grid;
    grid-template-columns: 320px 1fr;
    overflow: hidden;
    animation: quotePop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes quoteFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes quotePop {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.quote-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.quote-modal-close:hover {
    transform: rotate(90deg);
    background: var(--white);
}

/* Sol marka paneli */
.quote-brand-panel {
    position: relative;
    background: var(--gradient-3);
    color: var(--white);
    padding: 36px 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.quote-brand-bg-shape {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.quote-brand-bg-shape.s2 {
    width: 160px;
    height: 160px;
    top: auto;
    right: auto;
    bottom: -50px;
    left: -50px;
    background: rgba(11, 187, 239, 0.18);
}

.quote-brand-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-brand-tag span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(11, 187, 239, 0.25);
}

.quote-brand-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 14px;
    color: var(--white);
}

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

.quote-brand-panel p {
    margin: 0 0 22px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.quote-brand-panel p strong { color: var(--white); }

.quote-brand-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quote-brand-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
}

.quote-brand-list li i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(11, 187, 239, 0.18);
    color: var(--accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

.quote-brand-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-brand-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.quote-brand-contact-item:hover {
    color: var(--white);
    transform: translateX(3px);
}

.quote-brand-contact-item i {
    width: 22px;
    color: var(--accent-light);
}

/* Sağ form paneli */
.quote-form-panel {
    padding: 36px 32px 28px;
    overflow-y: auto;
}

.quote-form-head {
    margin-bottom: 22px;
    padding-right: 40px;
}

.quote-form-head h4 {
    margin: 0 0 4px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.quote-form-head p {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(10, 14, 39, 0.55);
}

.quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 12px;
}

.quote-field { display: flex; flex-direction: column; }
.quote-field.full { width: 100%; }

.quote-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.quote-field .req { color: var(--accent); }

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(29, 35, 98, 0.14);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--primary);
    background: var(--white);
    transition: var(--transition);
    font-family: inherit;
    resize: vertical;
}

.quote-field textarea {
    min-height: 90px;
    line-height: 1.5;
}

.quote-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231d2362' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(11, 187, 239, 0.18);
}

.quote-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0 16px;
    font-size: 0.82rem;
    color: rgba(10, 14, 39, 0.7);
    line-height: 1.5;
    cursor: pointer;
}

.quote-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.quote-consent a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.quote-consent a:hover { color: var(--accent); }

.quote-actions {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.quote-btn {
    flex: 1;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.quote-btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(29, 35, 98, 0.32);
}

.quote-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(29, 35, 98, 0.4);
}

.quote-btn-primary:disabled { cursor: not-allowed; opacity: 0.85; }

.quote-btn-ghost {
    flex: 0 0 auto;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid rgba(29, 35, 98, 0.16);
}

.quote-btn-ghost:hover { background: rgba(29, 35, 98, 0.06); }

.quote-btn-loading { display: none; }

.quote-btn.is-loading .quote-btn-label { display: none; }
.quote-btn.is-loading .quote-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quote-feedback {
    margin-top: 12px;
    padding: 0;
    font-size: 0.86rem;
    border-radius: var(--radius-sm);
    line-height: 1.5;
    transition: var(--transition);
}

.quote-feedback:empty { display: none; }

.quote-feedback.is-success {
    padding: 12px 14px;
    background: rgba(11, 187, 239, 0.1);
    color: var(--primary);
    border: 1px solid rgba(11, 187, 239, 0.3);
}

.quote-feedback.is-error {
    padding: 12px 14px;
    background: rgba(220, 53, 69, 0.08);
    color: #b91c2c;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

@media (max-width: 768px) {
    .quote-modal { padding: 12px; }
    .quote-modal-card {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    .quote-brand-panel { padding: 28px 22px 22px; }
    .quote-brand-panel h3 { font-size: 1.25rem; }
    .quote-brand-list { margin-bottom: 0; }
    .quote-brand-contact { display: none; }

    .quote-form-panel { padding: 26px 22px 22px; }
    .quote-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .quote-row .quote-field { margin-bottom: 12px; }
}

@media (max-width: 480px) {
    .quote-form-head h4 { font-size: 1.15rem; }
}

/* ============================================
   Cookie / KVKK Consent Banner (sol alt)
   ============================================ */
.cookie-consent {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: min(380px, calc(100vw - 48px));
    background: rgba(10, 14, 39, 0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    color: var(--white);
    padding: 22px 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    z-index: 1200;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    pointer-events: none;
    overflow: hidden;
}

.cookie-consent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-3);
}

.cookie-consent.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-consent-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    transform: rotate(90deg);
}

.cookie-consent-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding-right: 30px;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-2);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 22px rgba(11, 187, 239, 0.45);
}

.cookie-consent-head h4 {
    margin: 0 0 2px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cookie-consent-tag {
    font-size: 0.74rem;
    color: var(--accent-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cookie-consent-text {
    margin: 0 0 18px;
    font-size: 0.86rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.cookie-consent-text strong {
    color: var(--white);
    font-weight: 700;
}

.cookie-consent-link {
    color: var(--accent-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.cookie-consent-link:hover {
    color: var(--white);
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
}

.cookie-btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(11, 187, 239, 0.4);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(11, 187, 239, 0.55);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

@media (max-width: 480px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 18px 18px 16px;
    }

    .cookie-consent-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .cookie-consent-head h4 {
        font-size: 0.98rem;
    }

    .cookie-consent-text {
        font-size: 0.82rem;
    }
}

/* ============================================
   Desi / M³ Calculator (kulakçık + modal)
   ============================================ */
.calc-side-tabs {
    position: fixed;
    right: 0;
    top: 32%;
    transform: translateY(-50%);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    max-width: 72px;
}

.calc-handle {
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 16px 10px;
    transition: var(--transition);
    min-width: 58px;
    box-sizing: border-box;
}

.desi-handle {
    background: linear-gradient(165deg, #0bbbef 0%, #0284c7 100%);
    border-radius: 14px 0 0 14px;
    box-shadow: -6px 4px 22px rgba(11, 187, 239, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.m3-handle {
    background: linear-gradient(165deg, #f97316 0%, #ea580c 100%);
    border-radius: 14px 0 0 14px;
    box-shadow: -6px 4px 22px rgba(249, 115, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calc-handle:hover {
    transform: translateX(-4px);
}

.calc-handle:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: -2px;
}

.calc-handle-content {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.calc-handle-content i {
    font-size: 1.05rem;
}

.calc-handle-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.3px;
    text-transform: none;
    line-height: 1.25;
    white-space: nowrap;
}

body.desi-modal-open {
    overflow: hidden;
}

.desi-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.desi-modal.is-open {
    display: flex;
}

.desi-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    animation: desiFade 0.25s ease;
}

.desi-modal-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 460px;
    width: 100%;
    padding: 32px 30px 26px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    animation: desiPop 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

@keyframes desiFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes desiPop {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.desi-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 14, 39, 0.06);
    color: var(--primary);
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.desi-modal-close:hover {
    background: rgba(10, 14, 39, 0.12);
    transform: rotate(90deg);
}

.desi-modal-header {
    text-align: center;
    margin-bottom: 22px;
}

.desi-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-2);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(11, 187, 239, 0.35);
}

.desi-modal-card h3 {
    margin: 0 0 6px;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.desi-modal-subtitle {
    margin: 0;
    color: rgba(10, 14, 39, 0.55);
    font-size: 0.92rem;
}

.desi-form-group {
    margin-bottom: 14px;
}

.desi-form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.desi-form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(29, 35, 98, 0.14);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--primary);
    background: var(--white);
    transition: var(--transition);
    font-family: inherit;
    -moz-appearance: textfield;
}

.desi-form-group input::-webkit-outer-spin-button,
.desi-form-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.desi-form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(11, 187, 239, 0.15);
}

.desi-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.desi-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.desi-btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(29, 35, 98, 0.3);
}

.desi-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 35, 98, 0.42);
}

.desi-btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid rgba(29, 35, 98, 0.18);
}

.desi-btn-ghost:hover {
    background: rgba(29, 35, 98, 0.06);
}

.desi-result {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(11, 187, 239, 0.08) 0%, rgba(11, 187, 239, 0.08) 100%);
    border: 1px solid rgba(11, 187, 239, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.desi-result-label {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

.desi-result-value {
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--gradient-text);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.desi-result-value.is-pulse {
    animation: desiPulse 0.5s ease;
}

@keyframes desiPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.desi-modal-note {
    margin: 16px 0 0;
    font-size: 0.78rem;
    color: rgba(10, 14, 39, 0.5);
    text-align: center;
}

@media (max-width: 480px) {
    .calc-side-tabs {
        top: 40%;
        max-width: 56px;
        gap: 8px;
    }

    .calc-handle {
        padding: 12px 7px;
        min-width: 48px;
    }

    .calc-handle-text {
        font-size: 0.56rem;
        letter-spacing: 0;
    }

    .desi-modal-card {
        padding: 28px 22px 22px;
    }

    .desi-modal-card h3 {
        font-size: 1.2rem;
    }

    .desi-result-value {
        font-size: 1.4rem;
    }
}

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
    animation: wpPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .wp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes wpPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   Particles
   ============================================ */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

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

    .services-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid--home {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .ecommerce-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ecom-visual-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats-row {
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .about-experience-badge {
        width: 90px;
        height: 90px;
        top: -15px;
        right: -10px;
    }
    
    .exp-number {
        font-size: 1.6rem;
    }
    
    .ecom-visual-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .ecom-box {
        padding: 10px 16px;
    }
    
    .ecom-box span {
        font-size: 0.8rem;
    }
    
    .contact-form,
    .contact-card {
        padding: 24px;
    }
}

/* ============================================
   Subpage Styles
   ============================================ */

/* Page Hero Banner */
.page-hero {
    background: var(--dark);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(11, 187, 239, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(11, 187, 239, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.page-hero-tag span {
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.breadcrumb i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: var(--accent-light);
    font-weight: 600;
}

/* Subpage Navigation - Scrolled by default */
.subpage #navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.subpage #navbar .nav-logo img {
    filter: none;
    height: 40px;
}

.subpage #navbar .nav-link {
    color: var(--text);
}

.subpage #navbar .nav-link:hover,
.subpage #navbar .nav-link.active {
    color: var(--primary);
    background: rgba(29, 35, 98, 0.06);
}

.subpage #navbar .hamburger span {
    background: var(--dark);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(29, 35, 98, 0.06);
}

.nav-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    background: none !important;
}

.dropdown-menu a:hover {
    background: var(--light-bg) !important;
    color: var(--primary) !important;
    padding-left: 24px;
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--accent);
    font-size: 0.85rem;
}

/* Alt menü (açılır menü içinde açılır menü) */
.dropdown-item-wrap {
    position: relative;
}

.dropdown-item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    background: none !important;
    width: 100%;
}

.dropdown-item-link .dropdown-item-text {
    flex: 1;
}

.dropdown-item-link .dropdown-chevron {
    width: auto !important;
    margin-left: auto;
    font-size: 0.65rem !important;
    color: var(--text-muted) !important;
    transition: var(--transition);
}

.dropdown-item-wrap:hover > .dropdown-item-link {
    background: var(--light-bg) !important;
    color: var(--primary) !important;
    padding-left: 24px;
}

.dropdown-item-wrap:hover > .dropdown-item-link .dropdown-chevron {
    color: var(--accent) !important;
    transform: translateX(2px);
}

.dropdown-submenu {
    top: 0;
    left: calc(100% + 4px);
    transform: translateX(8px) translateY(0) !important;
    margin-left: 0;
    min-width: 220px;
}

.dropdown-item-wrap:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0) !important;
}

.dropdown-menu a.active,
.dropdown-item-link.active {
    color: var(--primary) !important;
    background: rgba(11, 187, 239, 0.08) !important;
    font-weight: 600;
}

/* İç içe alt menülerde hover vurgusu */
.dropdown-submenu .dropdown-item-wrap:hover > .dropdown-item-link {
    padding-left: 24px;
}

/* Mobil: iç içe alt menü girintisi */
.mobile-sub-menu .mobile-sub-menu {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    margin-left: 8px;
}

.mobile-sub-menu .mobile-sub-menu a {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Content Sections for Subpages */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--light-bg);
}

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 350px;
    background: var(--gradient-1);
}

.content-visual .visual-pattern {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.content-visual .visual-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.15);
}

.content-visual .floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

.content-visual .floating-card i {
    color: var(--primary);
    font-size: 1.3rem;
}

.content-visual .floating-card strong {
    font-size: 0.9rem;
    color: var(--dark);
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-text .highlight-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-text .highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text);
}

.content-text .highlight-list li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Service Detail Card Grid */
.detail-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.detail-card {
    background: var(--white);
    border: 1px solid rgba(29, 35, 98, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    text-align: center;
}

.detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.detail-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
}

.detail-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Steps for Subpages */
.process-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border: 1px solid rgba(29, 35, 98, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-card-image {
    height: 200px;
    background: var(--gradient-1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.blog-card-image .blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-body .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-body .read-more:hover {
    gap: 10px;
    color: var(--accent);
}

/* Blog Detail Page */
.blog-detail {
    padding: 80px 0;
}

.blog-detail-container {
    max-width: 820px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 40px;
}

.blog-detail-header .blog-tag {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-detail-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--primary);
}

.blog-detail-image {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    overflow: hidden;
}

.blog-detail-image i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.25);
}

.blog-detail-body {
    line-height: 1.9;
    color: var(--text);
}

.blog-detail-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin: 40px 0 16px;
}

.blog-detail-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 12px;
}

.blog-detail-body p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 20px;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 16px 0 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-detail-body li {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    list-style: disc;
}

.blog-detail-body ol li {
    list-style: decimal;
}

.blog-detail-body blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 28px 0;
    background: var(--light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
}

.blog-detail-body strong {
    color: var(--dark);
    font-weight: 700;
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(29, 35, 98, 0.08);
}

.blog-detail-tags span.label {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.blog-detail-tags a {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.blog-detail-tags a:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(29, 35, 98, 0.08);
}

.blog-detail-share span.label {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.blog-detail-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.blog-detail-share a:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.blog-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: var(--light-bg);
}

.blog-nav a:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-nav a.disabled {
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 768px) {
    .blog-detail-image {
        height: 240px;
    }
    .blog-nav {
        flex-direction: column;
    }
}

/* Service Links Grid */
.service-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid rgba(29, 35, 98, 0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-link-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-3);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

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

.service-link-card .slc-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-link-card:hover .slc-icon {
    background: var(--gradient-1);
    color: var(--white);
}

.service-link-card .slc-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
}

.service-link-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-link-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link-card .slc-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link-card:hover .slc-link {
    gap: 10px;
    color: var(--accent);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-1);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-2);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.timeline-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.timeline-item .timeline-date {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    padding: 40px 28px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.value-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Responsive for Subpages */
@media (max-width: 1024px) {
    .detail-cards,
    .service-links-grid,
    .blog-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step::after { display: none; }
}

@media (max-width: 768px) {
    .page-hero { padding: 130px 0 60px; }
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    .detail-cards,
    .service-links-grid,
    .blog-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .content-visual { min-height: 280px; }
    .nav-dropdown .dropdown-menu { display: none; }
}

/* Selection Color */
::selection {
    background: rgba(11, 187, 239, 0.2);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============================================
   Subpage Light-Background Overrides
   ============================================ */

.subpage .section:not(.section-dark):not(.section-stats) .section-subtitle {
    color: var(--text-light);
}

.subpage .section:not(.section-dark):not(.section-stats) .service-card {
    background: var(--white);
    border: 1px solid rgba(29, 35, 98, 0.08);
    box-shadow: var(--shadow-sm);
}

.subpage .section:not(.section-dark):not(.section-stats) .service-card:hover {
    background: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.subpage .section:not(.section-dark):not(.section-stats) .service-card.featured {
    background: rgba(11, 187, 239, 0.04);
    border-color: rgba(11, 187, 239, 0.15);
}

.subpage .section:not(.section-dark):not(.section-stats) .service-card h3 {
    color: var(--dark);
}

.subpage .section:not(.section-dark):not(.section-stats) .service-card p {
    color: var(--text-light);
}

.subpage .section:not(.section-dark):not(.section-stats) .service-features span {
    color: var(--text-light);
    background: var(--light-bg);
}

.subpage .section:not(.section-dark):not(.section-stats) .service-link {
    color: var(--primary);
}

.subpage .section:not(.section-dark):not(.section-stats) .service-link:hover {
    color: var(--accent);
}

.subpage .section:not(.section-dark):not(.section-stats) .testimonial-card {
    background: var(--white);
    border: 1px solid rgba(29, 35, 98, 0.08);
    box-shadow: var(--shadow-sm);
}

.subpage .section:not(.section-dark):not(.section-stats) .testimonial-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.subpage .section:not(.section-dark):not(.section-stats) .testimonial-card > p {
    color: var(--text);
}

.subpage .section:not(.section-dark):not(.section-stats) .testimonial-author strong {
    color: var(--dark);
}

.subpage .section:not(.section-dark):not(.section-stats) .testimonial-author span {
    color: var(--text-muted);
}

.subpage .section:not(.section-dark):not(.section-stats) .author-avatar {
    background: var(--light-bg);
    color: var(--primary);
}

.subpage .section:not(.section-dark):not(.section-stats) .swiper-pagination-bullet {
    background: rgba(29, 35, 98, 0.2) !important;
}

.subpage .section:not(.section-dark):not(.section-stats) .swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* ============================================
   Plain Text Page (PageTypeId = 1)
   ============================================ */
.plain-page-section {
    padding: 80px 0 100px;
    background: var(--light-bg);
}

.plain-page-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(29, 35, 98, 0.06);
    padding: 48px 56px;
}

.plain-page-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(29, 35, 98, 0.08);
    width: 100%;
}

.plain-page-meta i {
    color: var(--accent);
}

.plain-page-content {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.9;
}

.plain-page-content > *:first-child {
    margin-top: 0;
}

.plain-page-content > *:last-child {
    margin-bottom: 0;
}

.plain-page-content h2,
.plain-page-content h3,
.plain-page-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.35;
    margin: 2rem 0 1rem;
}

.plain-page-content h2 {
    font-size: 1.65rem;
}

.plain-page-content h3 {
    font-size: 1.35rem;
}

.plain-page-content h4 {
    font-size: 1.15rem;
}

.plain-page-content p {
    margin-bottom: 1.1rem;
    color: var(--text-light);
}

.plain-page-content ul,
.plain-page-content ol {
    margin: 0 0 1.25rem 1.25rem;
    color: var(--text-light);
}

.plain-page-content li {
    margin-bottom: 0.55rem;
}

.plain-page-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.plain-page-content a:hover {
    color: var(--accent);
}

.plain-page-content strong {
    color: var(--dark);
    font-weight: 700;
}

.plain-page-content blockquote {
    margin: 1.5rem 0;
    padding: 16px 20px;
    border-left: 4px solid var(--accent);
    background: rgba(11, 187, 239, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text);
}

.plain-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.plain-page-content th,
.plain-page-content td {
    border: 1px solid rgba(29, 35, 98, 0.1);
    padding: 12px 14px;
    text-align: left;
}

.plain-page-content th {
    background: var(--light-bg);
    color: var(--dark);
    font-weight: 700;
}

.plain-page-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.plain-page-empty i {
    font-size: 2.5rem;
    opacity: 0.35;
    margin-bottom: 16px;
    display: block;
}

@media (max-width: 768px) {
    .plain-page-card {
        padding: 28px 22px;
    }

    .plain-page-content h2 {
        font-size: 1.4rem;
    }
}

/* ============================================
   Site Search
   ============================================ */
body.site-search-open {
    overflow: hidden;
}

.site-search-panel {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.site-search-panel.is-open {
    display: flex;
}

.site-search-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.72);
    backdrop-filter: blur(4px);
}

.site-search-panel-card {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    box-shadow: var(--shadow-xl);
}

.site-search-panel-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(29, 35, 98, 0.06);
    color: var(--primary);
    cursor: pointer;
}

.site-search-panel-card h2 {
    font-size: 1.45rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.site-search-panel-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.site-search-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-search-input-wrap {
    position: relative;
}

.site-search-input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.site-search-input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid rgba(29, 35, 98, 0.12);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.site-search-input-wrap input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(11, 187, 239, 0.15);
}

.search-hint,
.search-result-count {
    color: var(--text-muted);
    margin-top: 24px;
}

.search-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
}

.search-empty i {
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.45;
}

.search-results {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.search-result-item {
    display: block;
    padding: 20px 22px;
    border: 1px solid rgba(29, 35, 98, 0.08);
    border-radius: var(--radius-md);
    background: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.search-result-item:hover {
    border-color: rgba(11, 187, 239, 0.35);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.search-result-type {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.search-result-item h3 {
    color: var(--dark);
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.search-result-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-consent {
    margin: 8px 0 18px;
}

.contact-form-feedback {
    margin-top: 14px;
}

.mobile-search-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .nav-actions .nav-cta {
        display: none;
    }
}
