/* 
   MDT Sigorta - Stil Dosyası
   Renkler: Navy (#0A192F), Sapphire (#112D4E), Blue (#00A3E0), Light (#F8FAFC)
*/

:root {
    --color-primary: #0A192F;
    --color-secondary: #112D4E;
    --color-accent: #00A3E0;
    --color-accent-hover: #0088C2;
    --color-text: #334155;
    --color-text-light: #94a3b8;
    --color-bg: #F8FAFC;
    --color-white: #ffffff;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --shad-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shad-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shad-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shad-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 163, 224, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(0, 163, 224, 0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes loaderFade {
    to { opacity: 0; visibility: hidden; }
}

/* --- Page Loader --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 163, 224, 0.2);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spinSlow 0.8s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* --- Scroll Reveal Classes --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Utilities --- */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Button Ripple Effect */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Header --- */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shad-sm);
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    height: 65px;
    box-shadow: var(--shad-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}

/* Nav Link Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a.active {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link:hover {
    color: var(--color-accent);
}

.phone-link i {
    animation: wiggle 2s ease-in-out infinite;
}

/* Hamburger Animation */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 80px;
}

/* Dark overlay with gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.75) 0%, rgba(17, 45, 78, 0.4) 50%, rgba(10, 25, 47, 0.2) 100%);
    z-index: 1;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 163, 224, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 5s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; animation-duration: 7s; width: 8px; height: 8px; }
.particle:nth-child(3) { top: 40%; left: 60%; animation-delay: 2s; animation-duration: 6s; width: 4px; height: 4px; }
.particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 3s; animation-duration: 8s; width: 10px; height: 10px; background: rgba(0, 163, 224, 0.15); }
.particle:nth-child(5) { top: 15%; left: 70%; animation-delay: 1.5s; animation-duration: 5.5s; }
.particle:nth-child(6) { top: 70%; left: 50%; animation-delay: 0.5s; animation-duration: 6.5s; width: 5px; height: 5px; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--color-white);

    background: rgba(10, 25, 47, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);

    /* Hero content entrance animation */
    animation: slideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.5s both;
}

/* Animated Gradient Highlight */
.highlight {
    background: linear-gradient(90deg, #00A3E0, #4FC3F7, #00A3E0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.9s both;
}

/* Hero buttons shine effect */
.hero-buttons .btn-primary {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn-primary:hover::before {
    left: 100%;
}

/* --- Stats Section --- */
.stats-section {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 0;
    margin-top: -1px;
    position: relative;
}

/* Top wave divider */
.stats-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--color-bg);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Services Section --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Section title underline */
.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #4FC3F7);
    border-radius: 2px;
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shad-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Service card shine on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 163, 224, 0.03), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shad-xl);
    border-top-color: var(--color-accent);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.1), rgba(0, 163, 224, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: all 0.4s ease;
}

.service-card:hover .icon-box {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 163, 224, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- How it Works --- */
.how-it-works {
    background-color: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: flex-start;
    margin-top: 50px;
    text-align: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.2);
}

.step-item:hover .step-icon {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.3);
}

.step-line {
    height: 3px;
    background: linear-gradient(90deg, #e2e8f0, var(--color-accent), #e2e8f0);
    margin-top: 30px;
    width: 100%;
    border-radius: 2px;
}

.step-item h4 {
    font-size: 1.2rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    max-width: 200px;
}

/* --- Features / Why Us --- */
.why-us {
    background-color: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    box-shadow: var(--shad-md);
    transform: translateX(5px);
}

.check-icon {
    min-width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    border-radius: 14px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.feature-item:hover .check-icon {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    transform: rotate(-5deg) scale(1.1);
}

.feature-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- Hasar Islemleri Section --- */
.hasar-section {
    background-color: var(--color-white);
    position: relative;
}

.hasar-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hasar-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.hasar-step-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--color-bg);
    padding: 28px 32px;
    border-radius: 16px;
    border-left: 5px solid var(--color-accent);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hasar-step-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shad-lg);
    border-left-color: var(--color-accent-hover);
}

.hasar-step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), #29B6F6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 163, 224, 0.3);
}

.hasar-step-card:hover .hasar-step-number {
    transform: scale(1.1) rotate(-5deg);
}

.hasar-step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.hasar-step-content p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hasar-cta-box {
    max-width: 800px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #0A192F 0%, #112D4E 50%, #0A192F 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hasar-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 350px;
    height: 350px;
    background: rgba(0, 163, 224, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hasar-cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: rgba(0, 163, 224, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.hasar-cta-icon {
    width: 75px;
    height: 75px;
    background: rgba(0, 163, 224, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--color-accent);
    animation: pulseGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.hasar-cta-box h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hasar-cta-box > p {
    color: #94a3b8;
    margin-bottom: 28px;
    font-size: 1.05rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hasar-cta-box .btn {
    position: relative;
    z-index: 1;
}

.hasar-cta-note {
    display: block;
    margin-top: 14px;
    font-size: 0.85rem;
    color: #64748b;
    position: relative;
    z-index: 1;
}

/* --- Partners --- */
.partners {
    background-color: var(--color-bg);
    padding: 60px 0;
    overflow: hidden;
}

.partners-track {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
    gap: 24px;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: var(--color-white);
    padding: 18px 28px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #e2e8f0;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shad-lg);
    border-color: var(--color-accent);
}

.partner-svg {
    height: 40px;
    width: auto;
    max-width: 100%;
    filter: grayscale(40%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-logo:hover .partner-svg {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Form Status --- */
.form-status {
    margin-top: 15px;
    padding: 0;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.4s ease;
}

.form-status.success {
    background: #ecfdf5;
    color: #059669;
    padding: 14px;
    border: 1px solid #a7f3d0;
    animation: fadeInUp 0.5s ease;
}

.form-status.error {
    background: #fef2f2;
    color: #dc2626;
    padding: 14px;
    border: 1px solid #fecaca;
    animation: fadeInUp 0.5s ease;
}

/* --- FAQ --- */
.faq {
    background-color: #f1f5f9;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shad-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shad-md);
}

.faq-question {
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
    padding-left: 28px;
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--color-accent);
    font-size: 0.9rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #fcfcfc;
}

.faq-answer p {
    padding: 20px 24px;
    color: var(--color-text);
    border-top: 1px solid #f1f5f9;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
}

/* Decorative background orb */
.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info > p {
    color: #94a3b8;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--color-accent);
    margin-top: 5px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item .no-style {
    color: inherit;
}

.contact-item .no-style:hover {
    color: var(--color-accent);
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.25);
    color: var(--color-text);
    transition: transform 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
}

.contact-form h3 {
    margin-bottom: 10px;
}

.contact-form p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 163, 224, 0.1);
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp .tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shad-md);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-whatsapp:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: var(--shad-md);
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 163, 224, 0.3);
}

/* --- Footer --- */
.footer {
    background-color: #050d1a;
    color: #64748b;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #94a3b8;
    font-size: 1.3rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(0, 163, 224, 0.1);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    transition: all 0.3s ease;
    padding: 4px 0;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1001;
    padding: 100px 30px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile menu backdrop */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--color-accent);
    padding-left: 10px;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Header & Nav */
    .nav-links,
    .header-actions .phone-link,
    .header-actions .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 30px;
        background: rgba(10, 25, 47, 0.7);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
        text-align: center;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 15px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
    }

    /* Hasar */
    .hasar-step-card {
        padding: 20px;
        gap: 16px;
    }

    .hasar-cta-box {
        padding: 30px 20px;
    }

    .hasar-cta-box h3 {
        font-size: 1.3rem;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Floating Buttons */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp .tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
    }

    /* Section padding */
    .section {
        padding: 60px 0;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
