﻿/* ========== PREMIUM ABOUT SECTION (BENTO GRID) ========== */
.about-premium {
    padding: 8rem 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.about-premium-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(142, 35, 24, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(60px);
    pointer-events: none;
}

.about-premium .container {
    position: relative;
    z-index: 1;
}

.about-premium-header {
    text-align: center;
    margin-bottom: 4rem;
}

.premium-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #d0d2e1 50%, #8e2318 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid System */
.about-premium-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.bento-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.bento-box:hover {
    border-color: rgba(142, 35, 24, 0.3);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(20, 21, 26, 0.9) 0%, rgba(142, 35, 24, 0.1) 100%);
    display: flex;
    flex-direction: column;
}

.bento-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(142, 35, 24, 0.3);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.bento-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

.bento-logo-wrapper {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
}

.bento-logo {
    height: 60px;
    object-fit: contain;
    opacity: 0.8;
}

.bento-feature {
    display: flex;
    flex-direction: column;
}

.bento-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(142, 35, 24, 0.15);
    border: 1px solid rgba(142, 35, 24, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(142, 35, 24, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-box:hover .bento-feature-icon {
    background: #8e2318;
    transform: scale(1.1);
}

.bento-feature h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.bento-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.blur-box {
    background: rgba(255, 255, 255, 0.02);
}

.blur-box-red {
    background: rgba(142, 35, 24, 0.05);
}

@media (max-width: 1024px) {
    .about-premium-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-main {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-premium-bento {
        grid-template-columns: 1fr;
    }

    .bento-main {
        grid-column: span 1;
        grid-row: span 1;
    }

    .premium-title {
        font-size: 2rem;
    }
}

/* ========== GOOGLE MAPS SECTION ========== */
.map-section {
    padding: 5rem 0;
}

.map-contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: stretch;
    min-height: 420px;
}

.map-embed-wrapper {
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(142, 35, 24, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.map-info-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(142, 35, 24, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.map-info-card:hover {
    background: rgba(142, 35, 24, 0.08);
    border-color: rgba(142, 35, 24, 0.4);
    transform: translateX(4px);
}

.map-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #8e2318, #c0392b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(142, 35, 24, 0.35);
}

.map-info-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.map-info-card p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.map-directions-btn {
    margin-top: auto;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    border-color: #8e2318 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #8e2318, #c0392b) !important;
    box-shadow: 0 4px 16px rgba(142, 35, 24, 0.35);
    transition: all 0.3s ease;
}

.map-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(142, 35, 24, 0.5);
}

@media (max-width: 900px) {
    .map-contact-grid {
        grid-template-columns: 1fr;
    }

    .map-embed-wrapper,
    .map-embed-wrapper iframe {
        min-height: 300px;
    }
}

/* reCAPTCHA gizle */
.rc-anchor-normal-footer {
    display: none !important;
}

.grecaptcha-badge {
    visibility: hidden;
}

html {
    font-size: 15px;
    /* Poppins için base font küçültme (varsayılan 16px) */
}

:root {
    --primary-color: #8e2318;
    --secondary-color: #d0d2e1;
    --accent-color: #8e2318;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;

    --text-primary: #f8fafc;
    --text-secondary: #d0d2e1;
    --text-muted: #94a3b8;
    --text-light: #f1f5f9;

    --bg-primary: #0a0b10;
    --bg-secondary: #14151a;
    /* Slightly lighter/different for contrast if needed */
    --bg-tertiary: #1e2029;

    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Button Variables */
    --btn-padding-x: 2rem;
    --btn-padding-y: 1rem;
    --btn-font-size: 0.95rem;
    --btn-font-weight: 500;
    --btn-border-width: 2px;
    --btn-border-radius: var(--radius-md);

    /* Button Outline Primary (Blue) */
    --btn-outline-primary-color: var(--primary-color);
    --btn-outline-primary-border: var(--primary-color);
    --btn-outline-primary-hover-bg: rgba(59, 130, 246, 0.1);
    --btn-outline-primary-hover-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);

    /* Button Outline White */
    --btn-outline-white-color: #ffffff;
    --btn-outline-white-border: #ffffff;
    --btn-outline-white-hover-bg: rgba(255, 255, 255, 0.1);
    --btn-outline-white-hover-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

/* Custom Scrollbar for WebKit Browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    border-radius: 6px;
    border: 3px solid var(--bg-secondary);
    /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
}

body {
    font-family: 'Poppins', 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Form elements - inherit font */
button,
input,
select,
textarea {
    font-family: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--bg-primary);
    /* Solid dark background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}



.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0;
}

.desktop-cta {
    justify-self: end;
}

.mobile-cta {
    display: none !important;
}


.logo {
    justify-self: start;
    height: 80px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary-color);
}

/* Header Button Specifics */
.nav .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Buttons - Base */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-radius: var(--btn-border-radius);
    font-family: inherit;
    font-weight: var(--btn-font-weight);
    font-size: var(--btn-font-size);
    text-decoration: none;
    border: var(--btn-border-width) solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    background: transparent;
    box-shadow: none;
}

.btn i {
    margin-right: 0;
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    gap: 0.4rem;
}

.btn-xs {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    gap: 0.3rem;
}

/* Button Outline Primary (Blue) */
.btn-primary,
.btn-outline-primary {
    color: var(--btn-outline-primary-color) !important;
    border-color: var(--btn-outline-primary-border);
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background: var(--btn-outline-primary-hover-bg);
    box-shadow: var(--btn-outline-primary-hover-shadow);
    transform: translateY(-2px);
}

/* Button Outline White */
.btn-outline-white {
    color: var(--btn-outline-white-color) !important;
    border-color: var(--btn-outline-white-border);
}

.btn-outline-white:hover {
    background: var(--btn-outline-white-hover-bg);
    box-shadow: var(--btn-outline-white-hover-shadow);
    transform: translateY(-2px);
}

/* Button Secondary */
.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* CTA Section Specific Styles */
.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-main-btn {
    margin-bottom: 2rem;
}

.cta-trust-badges {
    justify-content: center;
    margin-top: 2rem;
}

.cta-phone-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-phone-label {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cta-phone-link {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Support Widget Button */
.support-submit-btn {
    width: 100%;
    justify-content: center;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: unset;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 22, 46, 0.7);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* New Centered Hero Layout */
.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    min-height: 80vh;
}

.hero-heading-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.3;
    margin: 0 auto 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Rotating Text Animation */
.rotating-text-wrapper {
    display: inline-block;
    height: 1.4em;
    overflow: hidden;
    position: relative;
    vertical-align: bottom;
}

.rotating-text {
    display: block;
    animation: rotateText 8s ease-in-out infinite;
}

.rotating-text span {
    display: block;
    height: 1.4em;
    line-height: 1.4em;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes rotateText {

    0%,
    13% {
        transform: translateY(-83.333%);
    }

    16.66%,
    30% {
        transform: translateY(-66.666%);
    }

    33.33%,
    46% {
        transform: translateY(-50%);
    }

    50%,
    63% {
        transform: translateY(-33.333%);
    }

    66.66%,
    80% {
        transform: translateY(-16.666%);
    }

    83.33%,
    100% {
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin: 1.5rem auto 2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}

.hero-simple-text {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-align: center;
}

/* Scroll Down Button */
.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down-btn:hover {
    color: var(--primary-color);
    transform: translateX(-50%) translateY(5px);
}

.scroll-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 28px;
    height: 28px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-12px);
    }

    60% {
        transform: translateY(-6px);
    }
}

/* Old styles - keep for backwards compatibility */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center !important;
    width: 100%;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center !important;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-align: center !important;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual::before {
    content: '🚀';
    font-size: 10rem;
    opacity: 0.1;
    position: absolute;
}

/* Trust Bar */
.trust-bar {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Section Styles */
section {
    padding: 5rem 0;
    scroll-margin-top: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    /* Reduced from 4rem */
}

.section-header h2 {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.section-header h2::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 14px;
    background: linear-gradient(90deg, transparent 0%, rgba(142, 35, 24, 0.7) 50%, transparent 100%);
    background-size: 100% 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header h2::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 14px;
    background: linear-gradient(90deg, transparent 0%, rgba(142, 35, 24, 0.7) 50%, transparent 100%);
    background-size: 100% 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Problem Solution Section */


.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 100%;
    /* Widened from 1100px */
    margin: 0 auto;
}

.ps-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ps-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid;
}

.ps-card.problem {
    border-left-color: var(--error-color);
}

.ps-card.solution {
    border-left-color: var(--success-color);
}

.ps-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========== ANIMATED SVG BLOB BACKGROUND ========== */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            transparent 10%,
            rgba(0, 0, 0, 0.3) 20%,
            rgba(0, 0, 0, 0.7) 30%,
            black 40%,
            black 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            transparent 10%,
            rgba(0, 0, 0, 0.3) 20%,
            rgba(0, 0, 0, 0.7) 30%,
            black 40%,
            black 100%);
}

.blob-svg {
    position: absolute;
    opacity: 0.08;
}

.blob-svg.blob-1 {
    width: 450px;
    height: 450px;
    top: -10%;
    left: -8%;
    animation: blobMove1 25s ease-in-out infinite;
}

.blob-svg.blob-2 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: -5%;
    animation: blobMove2 30s ease-in-out infinite;
}

/* Mobilde sadece 1 blob */
@media (max-width: 768px) {
    .blob-svg.blob-2 {
        display: none;
    }

    .blob-svg.blob-1 {
        width: 350px;
        height: 350px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@keyframes blobMove1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    15% {
        transform: translate(60px, -40px) rotate(6deg) scale(1.15);
    }

    30% {
        transform: translate(100px, 30px) rotate(-4deg) scale(0.85);
    }

    45% {
        transform: translate(30px, 80px) rotate(8deg) scale(1.2);
    }

    60% {
        transform: translate(-50px, 50px) rotate(-6deg) scale(0.8);
    }

    75% {
        transform: translate(-80px, -20px) rotate(5deg) scale(1.1);
    }

    90% {
        transform: translate(-30px, -60px) rotate(-8deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes blobMove2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    12% {
        transform: translate(-70px, 40px) rotate(-8deg) scale(1.2);
    }

    25% {
        transform: translate(-40px, 100px) rotate(6deg) scale(0.8);
    }

    37% {
        transform: translate(50px, 60px) rotate(-5deg) scale(1.15);
    }

    50% {
        transform: translate(80px, -15px) rotate(10deg) scale(0.85);
    }

    62% {
        transform: translate(50px, -70px) rotate(-6deg) scale(1.25);
    }

    75% {
        transform: translate(-20px, -50px) rotate(4deg) scale(0.75);
    }

    87% {
        transform: translate(-60px, -20px) rotate(-10deg) scale(1.1);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}


/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    -webkit-text-stroke: 1.5px white;
    -webkit-text-fill-color: transparent;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-tech {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.feature-benefit {
    color: var(--success-color);
    font-weight: 600;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--success-color);
    margin-top: 1rem;
}

/* Use Cases Section */


.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    /* Reduced from 3rem */
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    max-width: 100%;
    overflow: hidden;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.use-case-card {
    background: #05162e;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Modern Use Case Layout */
.use-case-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.use-case-card h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.use-case-item {
    margin-bottom: 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    height: 100%;
    transition: transform 0.2s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
    word-break: break-word;
}

.use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

.use-case-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.use-case-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    opacity: 0.95;
}

.stat-desc {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #05162e;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Process Section */
.process {
    background: var(--bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

.process-step {
    background: #05162e;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-size: 1.375rem;
    margin: 1.5rem 0 1rem 0;
}

.process-step p {
    font-size: 1rem;
}

/* FAQ Section */


.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #05162e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.faq-question:hover {
    background: #0a2240;
    border-color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 180px 0 120px 0;
    margin-top: 0;
    min-height: 600px;
    z-index: 1;
}

/* ========== DÜNYA KÜRESİ ========== */

/* Ana küre gövdesi */
.cta-section::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    width: 120vw;
    height: 1200px;
    border-radius: 50%;
    background:
        /* Yüzey ışık bantları - sol üst */
        radial-gradient(ellipse 60% 40% at 30% 20%,
            rgba(142, 35, 24, 0.12) 0%,
            rgba(142, 35, 24, 0.06) 40%,
            transparent 70%),
        /* Yüzey ışık bantları - sağ */
        radial-gradient(ellipse 50% 35% at 70% 25%,
            rgba(208, 210, 225, 0.08) 0%,
            transparent 60%),
        /* Yüzey ışık bantları - merkez */
        radial-gradient(ellipse 80% 50% at 50% 15%,
            rgba(142, 35, 24, 0.1) 0%,
            rgba(208, 210, 225, 0.05) 50%,
            transparent 80%),
        /* Ana küre dolgusu - üstten aşağı gradient */
        linear-gradient(180deg,
            rgba(142, 35, 24, 0.35) 0%,
            rgba(130, 40, 30, 0.3) 5%,
            rgba(100, 30, 25, 0.25) 15%,
            rgba(70, 20, 20, 0.2) 30%,
            rgba(40, 15, 15, 0.15) 50%,
            rgba(20, 5, 5, 0.1) 70%,
            var(--bg-primary) 90%),
        /* Solid base - blob'ları kapatmak için */
        var(--bg-primary);
    pointer-events: none;
    z-index: 2;
    transform: translateX(-50%) translateY(0%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* Parlak horizon çizgisi - elektrik mavisi rim */
.cta-section::after {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
    width: 120vw;
    height: 1200px;
    border-radius: 50%;
    /* Sadece üst kenarda parlak çizgi */
    background: transparent;
    box-shadow:
        /* İç parlak rim - üst kenardan içeri */
        inset 0 2px 0 0 rgba(142, 35, 24, 0.9),
        inset 0 4px 2px 0 rgba(142, 35, 24, 0.6),
        inset 0 8px 6px 0 rgba(142, 35, 24, 0.4),
        inset 0 15px 15px 0 rgba(142, 35, 24, 0.2),
        inset 0 30px 30px 0 rgba(142, 35, 24, 0.1),
        /* Dış glow - yukarı doğru yayılım */
        0 -2px 10px 0 rgba(142, 35, 24, 0.5),
        0 -5px 25px 0 rgba(142, 35, 24, 0.3),
        0 -10px 50px 0 rgba(142, 35, 24, 0.2),
        0 -20px 80px 0 rgba(142, 35, 24, 0.1);
    pointer-events: none;
    z-index: 3;
}

/* Atmosferik glow - horizon üstünde yumuşak parıltı */
.cta-section .container {
    position: relative;
    z-index: 10;
}

/* Dünya efekti responsive */
@media (max-width: 768px) {
    .cta-section::before {
        width: 180vw;
        height: 800px;
        clip-path: inset(0 0 50% 0);
    }

    .cta-section::after {
        width: 180vw;
        height: 800px;
        clip-path: inset(-100px -100px 50% -100px);
    }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content .caption {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.color-gradient-blue {
    background: linear-gradient(135deg, #8e2318 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-form {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    margin: 0 auto 2rem;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.trust-badge::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
    z-index: 10000;
    position: relative;
}

/* Responsive */
@media (max-width: 968px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        gap: 0;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    /* Remove separator for language toggle on mobile */
    .lang-toggle-btn {
        border-left: none !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-top: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 300px;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-menu-btn {
        display: block;
    }

    .header {
        position: fixed !important;
        backdrop-filter: none;
        box-shadow: var(--shadow-sm);
        z-index: 9999 !important;
        isolation: isolate;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 9998;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav .btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Special case for scroll-down-btn to preserve horizontal centering */
.scroll-down-btn.animate-on-scroll {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
}

.scroll-down-btn.animate-on-scroll.animated {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Micro Interactions */
.micro-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1rem;
}

.micro-cta:hover {
    gap: 0.75rem;
}

.micro-cta::after {
    content: '→';
    transition: var(--transition);
}

/* Dynamic Support Widget (WhatsApp + Form) */
.whatsapp-support-container {
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    bottom: 30px;
    bottom: calc(30px + env(safe-area-inset-bottom));
    font-size: 14px;
    left: 30px;
    position: fixed;
    z-index: 9999;
}

.whatsapp-dialog {
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    font-size: 13px;
    width: 300px;
    display: none;
    margin-bottom: 12px;
    max-height: 80vh;
    max-height: 80dvh;
    overflow-y: auto;
    scrollbar-width: none;
    border: 1px solid var(--border-color);
}

.whatsapp-dialog.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-dialog .close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 8px;
    top: 8px;
    transition: var(--transition);
    z-index: 10;
}

.whatsapp-dialog .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.support-dialog-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px 12px 0 0;
    color: white;
    padding: 14px 14px 12px 14px;
}

.support-dialog-header h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}

.support-dialog-header p {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.9;
    color: white;
}

.support-tabs {
    display: flex;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.support-tab {
    flex: 1;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
    position: relative;
}

.support-tab:hover {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
}

.support-tab.active {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

.support-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* WhatsApp tab - yeşil */
.support-tab[data-tab="whatsapp"]:hover {
    color: #25d366;
    background: rgba(37, 211, 102, 0.05);
}

.support-tab[data-tab="whatsapp"].active {
    color: #25d366;
}

.support-tab[data-tab="whatsapp"].active::after {
    background: #25d366;
}

.support-tab-content {
    display: none;
    padding: 14px;
    background: var(--bg-secondary);
    border-radius: 0 0 12px 12px;
}

.support-tab-content.active {
    display: block;
}

.support-form .form-group-compact {
    margin-bottom: 10px;
}

.support-form .form-group-compact label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    font-size: 11px;
    color: var(--text-primary);
}

.support-form .form-group-compact input,
.support-form .form-group-compact textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    transition: var(--transition);
}

.support-form .form-group-compact input:focus,
.support-form .form-group-compact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.08);
}

.support-form .form-group-compact textarea {
    resize: vertical;
}

/* Support Form Message Styles */
.support-form-message {
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
    animation: slideDown 0.3s ease-out;
}

.support-form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.support-form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.support-form-message i {
    margin-right: 6px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-trust-badges {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.trust-badge-compact {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.trust-badge-compact::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 5px;
    font-size: 10px;
}

.whatsapp-message {
    background: var(--bg-secondary);
    padding: 10px 12px;
    font-weight: 500;
    font-size: 13px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.whatsapp-input {
    display: flex;
    gap: 6px;
    align-items: center;
}

.whatsapp-input form {
    width: 100%;
    display: flex;
    gap: 6px;
}

.whatsapp-input input {
    flex: 1;
    background-color: #ffffff;
    color: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 400;
    padding: 8px 10px;
    font-size: 13px;
    transition: var(--transition);
}

.whatsapp-input input:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.08);
}

.whatsapp-input input::placeholder {
    color: #94a3b8;
    /* text-muted */
    opacity: 1;
}

.whatsapp-send-btn {
    background: #25d366;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
    flex-shrink: 0;
    border: none;
}

.whatsapp-send-btn:hover {
    background: #20ba5a;
    transform: scale(1.02);
}

.whatsapp-send-btn i {
    font-size: 14px;
}

.whatsapp-support-btn {
    align-items: center;
    background: transparent;
    border-radius: var(--btn-border-radius);
    color: var(--btn-outline-white-color);
    cursor: pointer;
    display: flex;
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    gap: 10px;
    max-width: fit-content;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    box-shadow: none;
    transition: var(--transition);
    border: var(--btn-border-width) solid var(--btn-outline-white-border);
}

.whatsapp-support-btn:hover {
    transform: translateY(-2px);
    background: var(--btn-outline-white-hover-bg);
    box-shadow: var(--btn-outline-white-hover-shadow);
    color: var(--btn-outline-white-color);
}

.whatsapp-support-btn i {
    font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-dialog {
        max-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
        max-height: calc(100vh - 100px);
        max-height: calc(100dvh - 100px);
    }
}

@media (max-width: 640px) {
    .whatsapp-support-container {
        left: 15px;
        bottom: 15px;
        bottom: calc(15px + env(safe-area-inset-bottom));
        right: 15px;
    }

    .whatsapp-support-btn span {
        display: none;
    }

    .whatsapp-dialog {
        max-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
    }

    .support-dialog-header h3 {
        font-size: 16px;
    }

    .support-dialog-header p {
        font-size: 12px;
    }
}

/* Language Toggle Button */
.lang-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-toggle-btn:hover {
    background: transparent;
    /* Border color change removed */
}

.lang-flag {
    font-size: 1.25rem;
    line-height: 1;
    display: block;
    width: 24px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.lang-toggle-btn:hover .lang-flag {
    transform: scale(1.1);
}

/* Moved from Index.cshtml & Inline Styles Cleanup */

/* Modern Video Hero */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--bg-primary);
    overflow: hidden;
}


.content-layer {
    position: relative;
    width: 100%;
    height: 100%;
}


.content-layer .hero {
    padding-top: 8rem;
    background: transparent;
}

.content-layer *,
.content-layer .nav a {
    color: white;
    transition: color 0.3s ease;
}

/* Scrolled Header State */
/* Scrolled Header State */
.content-layer .header.scrolled .nav a,
.content-layer .header.scrolled .mobile-menu-btn {
    color: white !important;
}

.content-layer .header.scrolled .nav .btn-primary {
    color: white !important;
}

.content-layer .header.scrolled select {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.content-layer .hero h1 {
    background: linear-gradient(135deg, #ffffff 30%, #8e2318 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.content-layer .hero p {
    color: #ffffff;
    font-weight: 600;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.content-layer .btn-primary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white !important;
}

.content-layer .btn-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.content-layer .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white !important;
}

.content-layer .trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
}

.content-layer .trust-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-layer .trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.content-layer .trust-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d0d2e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-layer .trust-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
}

.content-layer .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.content-layer .hero-text {
    width: 100%;
}

.content-layer .hero-cta {
    justify-content: center;
}

@media (max-width: 768px) {
    .content-layer .hero {
        padding-top: 8rem;
    }
}

/* Inline Style Replacements */
.header-logo {
    height: 50px;
}

.footer-logo {
    height: 80px;
    display: block;
    margin-bottom: 1.5rem;
}

.text-white {
    color: white !important;
}

.flex-center-y {
    display: flex;
    align-items: center;
}

.inline-flex-center-y {
    display: inline-flex;
    align-items: center;
}

.result-card-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    /* Ensure stacking context if needed */
}

.mt-2 {
    margin-top: 2rem !important;
}

/* Adjusted based on usage */

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-action-btn {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
}

.icon-spacer-right {
    margin-right: 10px;
}

.badges-wrapper {
    justify-content: center;
    margin-top: 2rem;
}

.direct-call-wrapper {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.direct-call-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.phone-link-lg {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dialog-submit-btn {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.whatsapp-helper-text {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 0;
}

.footer-location {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.mt-1 {
    margin-top: 1rem;
}

/* -----------------------------------------------------------------------------
   Modern Process Section Styles
   ----------------------------------------------------------------------------- */
.process-modern {
    padding: 8rem 0;
    color: white;
    position: relative;
    overflow: visible;
    min-height: auto;
}

/* Layout Container */
.process-layout {
    display: flex;
    gap: 4rem;
    position: relative;
    height: auto;
    min-height: 500px;
    cursor: default;
}

/* Sidebar Navigation (Sticky) */
.process-sidebar {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    height: fit-content;
    width: 300px;
    flex-shrink: 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.process-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-nav-item {
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.4;
    position: relative;
}

.process-nav-item:hover {
    opacity: 0.7;
}

/* Active State Design */
.process-nav-item.active {
    opacity: 1;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--primary-color) 60%, transparent),
            color-mix(in srgb, var(--bg-primary) 60%, transparent));
    box-shadow: 0 0 15px rgba(142, 35, 24, 0.2);
}

/* Active Line Indicator */
.process-nav-item.active::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
}

.nav-icon {
    font-size: 1.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.process-nav-item.active .nav-icon {
    filter: none;
}

.nav-text {
    display: flex;
    flex-direction: column;
}

.nav-step {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Content Area - Scrollable Container */
.process-content-wrapper {
    flex-grow: 1;
    overflow-y: visible;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 1rem;
}

/* Custom Scrollbar */
.process-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.process-content-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.process-content-wrapper::-webkit-scrollbar-thumb {
    background: rgba(142, 35, 24, 0.3);
    border-radius: 4px;
}

.process-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(142, 35, 24, 0.5);
}

.process-panel {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding: 3rem 2rem;
}

.process-panel:last-child {
    margin-bottom: 0;
}

/* Large Background Number */
.panel-bg-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.process-panel h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    z-index: 1;
    position: relative;
}

.process-panel .panel-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #d0d2e1;
    margin-bottom: 1.5rem;
    font-weight: 500;
    z-index: 1;
    position: relative;
}

.process-panel .panel-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    z-index: 1;
    position: relative;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .process-modern {
        padding: 4rem 0;
    }

    .process-layout {
        flex-direction: column;
        gap: 2rem;
        height: auto;
    }

    .process-sidebar {
        position: relative;
        width: 100%;
        top: 0;
        transform: none;
        border-left: none;
        padding-left: 0;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .process-nav {
        flex-direction: row;
        gap: 1rem;
        width: max-content;
    }

    .process-nav-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-width: 120px;
    }

    .process-nav-item.active::before {
        display: none;
    }

    .process-nav-item.active {
        border-color: var(--primary-color);
        background: rgba(59, 130, 246, 0.2);
    }

    .process-content-wrapper {
        height: auto;
        min-height: auto;
    }

    .panel-bg-number {
        font-size: 6rem;
    }

    .process-panel {
        padding: 2rem 1rem;
    }

    .process-panel h3 {
        font-size: 2rem;
    }

    .process-panel .panel-quote {
        font-size: 1.1rem;
    }

    .process-panel .panel-desc {
        font-size: 1rem;
    }
}

/* =========================================
   Modern Services Section (Split Layout)
   ========================================= */
.services-section {
    position: relative;
    padding: 6rem 0;
    overflow: visible;
}

/* 2-Column Layout */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50% - 50% split */
    gap: 4rem;
    align-items: start;
}

/* Left Column: Sticky Branding */
.services-brand-col {
    position: sticky;
    top: 120px;
    padding: 2.5rem 1.5rem 3rem;
    /* Reduced padding from 4rem 2rem 6rem */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Slogan Style */
.services-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0;
    color: #fff;
    line-height: 1.3;
    opacity: 0.9;
}

/* Stats Grid Style (Background Watermark) */
.services-stats-grid {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 0;
    /* Behind content */
    opacity: 0.1;
    /* Watermark effect */
    pointer-events: none;
    border: none;
    padding: 0;
    margin: 0;
}

.service-stat-item {
    text-align: center;
}

.service-stat-number {
    display: block;
    font-size: 100px;
    /* Huge numbers */
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.service-stat-label {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Ensure Button is Above */
.services-cta-wrapper {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.services-logo {
    width: 280px;
    height: auto;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card-body {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.services-logo:hover {
    transform: scale(1.1);
}

.services-brand-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.services-brand-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Right Column: List of Services */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-modern {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Active/Scroll Effect (No Hover) */
.service-card-modern.active-card {
    transform: translateY(-8px) scale(1.01);
    background: rgba(26, 28, 36, 0.9);
    border-color: rgba(142, 35, 24, 0.8);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(142, 35, 24, 0.25);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-icon-box {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-card-modern.active-card .service-icon-box {
    transform: rotate(5deg) scale(1.1);
    border-color: var(--accent-color);
    color: #fff;
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.service-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}

/* Badges */
.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.tech-badge {
    background: rgba(142, 35, 24, 0.18);
    /* Slightly more visible red bg */
    color: #ffffff;
    /* Pure white for better contrast */
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(142, 35, 24, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
}

.service-card-modern.active-card .tech-badge {
    background: rgba(142, 35, 24, 0.3);
    border-color: rgba(142, 35, 24, 0.7);
    color: #fff;
}

.tech-badge:hover {
    transform: translateY(-2px);
    background: rgba(142, 35, 24, 0.3) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 5px 15px rgba(142, 35, 24, 0.2);
}

.tech-badge-more {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-secondary) !important;
    font-weight: 500;
}

.service-card-modern.active-card .tech-badge-more {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.tech-badge-more:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-brand-col {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .services-logo {
        width: 180px;
    }

    .service-stat-number.counter {
        font-size: 60px;
    }
}

@media (max-width: 600px) {
    .service-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .tabs {
        flex-wrap: wrap;
        flex-direction: column;
        overflow-x: visible;
        justify-content: center;
        gap: 0.75rem;
        padding: 0;
    }

    .tab-btn {
        width: 100%;
        flex: unset;
        min-width: unset;
    }
}