/* ==========================================================================
   ÖZGÜR HAVUZCULUK - MODERN CSS DESIGN SYSTEM
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    /* HSL Colors */
    --color-primary: 199, 89%, 48%;       /* #0ea5e9 - Bright Turquoise */
    --color-primary-dark: 201, 96%, 32%;  /* #0369a1 - Deep Ocean Blue */
    --color-accent: 38, 92%, 50%;         /* #f59e0b - Sunset Amber/Gold */
    --color-bg-dark: 222, 47%, 11%;       /* #0f172a - Slate Dark Background */
    --color-bg-card: 217, 33%, 17%;       /* #1e293b - Slate Card Background */
    --color-bg-input: 223, 47%, 7%;       /* #030712 - Input Background */
    --color-text-white: 0, 0%, 100%;
    --color-text-main: 214, 32%, 91%;     /* #e2e8f0 - Light Slate Text */
    --color-text-muted: 215, 16%, 57%;    /* #94a3b8 - Muted Slate Text */
    --color-success: 142, 71%, 45%;       /* #22c55e - Emerald Green */

    /* Typography */
    --font-family: 'Outfit', sans-serif;
    
    /* Layout Sizes */
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --container-width: 1200px;
    
    /* Transitions & Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-shadow: 0 0 20px rgba(14, 165, 233, 0.25);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

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

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

body {
    font-family: var(--font-family);
    background-color: hsl(var(--color-bg-dark));
    color: hsl(var(--color-text-main));
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: hsl(var(--color-bg-dark));
}
::-webkit-scrollbar-thumb {
    background: hsl(var(--color-primary-dark));
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--color-primary));
}

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

.w-full {
    width: 100% !important;
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    color: hsl(var(--color-text-white));
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: hsl(var(--color-text-muted));
}

/* Icon style */
.icon, .icon-right, .icon-left {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.icon-right {
    margin-left: 8px;
}
.icon-left {
    margin-right: 8px;
}

/* Buttons Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: hsl(var(--color-primary));
    color: hsl(var(--color-text-white));
    box-shadow: var(--glow-shadow);
}
.btn-primary:hover {
    background-color: hsl(var(--color-primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.4);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    border-color: hsl(var(--color-primary));
    color: hsl(var(--color-text-white));
}
.btn-outline:hover {
    background-color: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-phone {
    background-color: hsl(var(--color-accent));
    color: hsl(var(--color-text-white));
}
.btn-phone:hover {
    background-color: hsl(var(--color-accent), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

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

/* Header & Navigation */
.main-header {
    height: var(--header-height);
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

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

.logo-link {
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: hsl(var(--color-text-white));
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    color: hsl(var(--color-primary));
    letter-spacing: 3px;
    margin-top: 2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: hsl(var(--color-text-muted));
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
    color: hsl(var(--color-text-white));
    background-color: rgba(255, 255, 255, 0.03);
}

.nav-item.active {
    color: hsl(var(--color-primary));
    font-weight: 600;
}

.wizard-badge {
    position: relative;
}
.wizard-badge::after {
    content: 'Yeni';
    position: absolute;
    top: -4px;
    right: 2px;
    background-color: hsl(var(--color-accent));
    color: hsl(var(--color-text-white));
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    text-transform: uppercase;
}

.btn-phone-header {
    background-color: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.2);
    color: hsl(var(--color-primary));
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    gap: 8px;
}
.btn-phone-header:hover {
    background-color: hsl(var(--color-primary));
    color: hsl(var(--color-text-white));
    border-color: transparent;
}

/* Mobile Toggle Hamburger Button */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle-btn .bar {
    width: 100%;
    height: 3px;
    background-color: hsl(var(--color-text-white));
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* Mobile Menu Active Hamburger State */
.mobile-toggle-btn.open .bar-top {
    transform: translateY(9px) rotate(45deg);
}
.mobile-toggle-btn.open .bar-mid {
    opacity: 0;
}
.mobile-toggle-btn.open .bar-bot {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--color-bg-dark));
    z-index: 999;
    padding-top: calc(var(--header-height) + 20px);
    transform: translateX(100%);
    transition: var(--transition-normal);
    opacity: 0;
    pointer-events: none;
}

.mobile-nav-overlay.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 16px;
}

.mobile-nav-item {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(var(--color-text-white));
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.02);
    border-left: 4px solid transparent;
    transition: var(--transition-fast);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    border-left-color: hsl(var(--color-primary));
    background-color: rgba(14, 165, 233, 0.05);
}

.mobile-nav-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.mobile-nav-footer p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    max-width: 800px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: hsl(var(--color-primary));
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: hsl(var(--color-accent));
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px hsl(var(--color-accent));
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Wave Divider Bottom */
.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(134% + 1.3px);
    height: 80px;
}

/* Stats Bar */
.stats-bar {
    background-color: #0c111d;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: hsl(var(--color-primary));
    background: linear-gradient(135deg, hsl(var(--color-primary)), #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 500;
    font-size: 1rem;
    color: hsl(var(--color-text-white));
}

/* Sections Global Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: hsl(var(--color-primary));
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
}

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

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
}

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

.service-card {
    background-color: hsl(var(--color-bg-card));
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--color-primary)), hsl(var(--color-primary-dark)));
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.15);
    box-shadow: var(--card-shadow), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    background-color: rgba(14, 165, 233, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--color-primary));
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background-color: hsl(var(--color-primary));
    color: hsl(var(--color-text-white));
    transform: scale(1.1);
}

.service-icon {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    margin-top: auto;
}

.service-list li {
    font-size: 0.85rem;
    color: hsl(var(--color-text-muted));
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--color-primary));
    font-weight: bold;
}

/* Wizard / Interactive Section */
.wizard-section {
    padding: 100px 0;
    background-color: #0b111e;
    position: relative;
}

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

.wizard-info {
    max-width: 500px;
}

.wizard-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.wizard-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.wizard-steps-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-indicator {
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    color: hsl(var(--color-text-muted));
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.step-indicator.active {
    color: hsl(var(--color-text-white));
    border-color: rgba(14, 165, 233, 0.3);
    background-color: rgba(14, 165, 233, 0.05);
    padding-left: 28px;
    position: relative;
}

.step-indicator.active::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: hsl(var(--color-primary));
}

.wizard-card {
    background-color: hsl(var(--color-bg-card));
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--card-shadow);
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.wizard-step.active {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.step-heading {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* Step 1 Options Grid */
.wizard-grid-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.option-card {
    cursor: pointer;
    position: relative;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition-normal);
}

.option-icon {
    font-size: 1.8rem;
}

.option-title {
    font-weight: 600;
    color: hsl(var(--color-text-white));
    font-size: 0.95rem;
}

.option-subtitle {
    font-size: 0.75rem;
    color: hsl(var(--color-text-muted));
    line-height: 1.3;
}

/* Radio Checked State */
.option-card input[type="radio"]:checked + .option-content {
    border-color: hsl(var(--color-primary));
    background-color: rgba(14, 165, 233, 0.05);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.1);
}

/* Step 2 Inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(var(--color-text-white));
}

.option-pill-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill-label {
    cursor: pointer;
    flex: 1;
    min-width: 80px;
}

.pill-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pill-btn {
    display: block;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: hsl(var(--color-text-muted));
    transition: var(--transition-normal);
}

.pill-label input[type="radio"]:checked + .pill-btn {
    border-color: hsl(var(--color-primary));
    background-color: hsl(var(--color-primary));
    color: hsl(var(--color-text-white));
}

.form-select, .form-input {
    background-color: hsl(var(--color-bg-input));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: hsl(var(--color-text-white));
    font-family: var(--font-family);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form-select:focus, .form-input:focus {
    outline: none;
    border-color: hsl(var(--color-primary));
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}

.wizard-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

/* Step 3 Summary Styling */
.summary-box {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-md);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.summary-box p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: hsl(var(--color-text-white));
    display: flex;
    justify-content: space-between;
}

.summary-box p span {
    color: hsl(var(--color-primary));
    font-weight: 600;
}

.summary-message-preview {
    margin-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.preview-title {
    font-size: 0.8rem;
    font-weight: bold;
    color: hsl(var(--color-text-muted));
    margin-bottom: 8px;
    text-transform: uppercase;
}

.preview-text {
    background-color: rgba(14, 165, 233, 0.05);
    border-left: 3px solid hsl(var(--color-primary));
    padding: 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-style: italic;
    color: hsl(var(--color-text-main));
    line-height: 1.5;
}

.wizard-note {
    font-size: 0.8rem;
    line-height: 1.4;
    color: hsl(var(--color-text-muted));
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.why-card {
    background-color: hsl(var(--color-bg-card));
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-md);
    padding: 32px;
    position: relative;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.1);
}

.why-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: hsl(var(--color-primary));
    margin-bottom: 16px;
    background-color: rgba(14, 165, 233, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #0b111e;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 105, 161, 0.1) 0%, rgba(15, 23, 42, 0.9) 90%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition-normal);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: hsl(var(--color-primary));
    margin-top: 4px;
    transform: translateY(10px);
    transition: var(--transition-normal);
    transition-delay: 0.05s;
}

/* Gallery Item Hover */
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial-card {
    background-color: hsl(var(--color-bg-card));
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
}

.stars {
    color: hsl(var(--color-accent));
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: hsl(var(--color-text-main));
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.client-name {
    font-weight: 600;
    color: hsl(var(--color-text-white));
    font-size: 0.95rem;
}

.client-title {
    font-size: 0.8rem;
    color: hsl(var(--color-text-muted));
}

/* Contact Section & Forms */
.contact-section {
    padding: 100px 0;
    background-color: #0b111e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.contact-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-top: 8px;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    text-decoration: none;
    transition: var(--transition-normal);
}

a.contact-card:hover {
    border-color: hsl(var(--color-primary));
    background-color: rgba(14, 165, 233, 0.04);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(14, 165, 233, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--color-primary));
}

a.contact-card:hover .contact-icon {
    background-color: hsl(var(--color-primary));
    color: hsl(var(--color-text-white));
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.method-title {
    font-size: 0.75rem;
    color: hsl(var(--color-text-muted));
    font-weight: 600;
    text-transform: uppercase;
}

.method-val {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(var(--color-text-white));
}

.whatsapp-card-cta {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(3, 105, 161, 0.15) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 32px;
}

.whatsapp-card-cta h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.whatsapp-card-cta p {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Form Panel */
.contact-form-panel {
    background-color: hsl(var(--color-bg-card));
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    box-shadow: var(--card-shadow);
}

.contact-form-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-intro {
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.contact-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-area {
    resize: none;
}

.form-success-message {
    display: none;
    background-color: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 12px;
    animation: fadeIn 0.4s ease-out;
}

/* Footer Section */
.main-footer {
    background-color: #080c14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 500px;
}

.footer-links h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: hsl(var(--color-text-muted));
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: hsl(var(--color-primary));
    padding-left: 4px;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    margin-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.animate-slide-up-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .wizard-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    .desktop-nav, .header-cta {
        display: none;
    }
    
    .mobile-toggle-btn {
        display: flex;
    }
    
    .hero-section {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .wizard-card {
        padding: 24px;
        min-height: auto;
    }
    
    .wizard-grid-options {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form-panel {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .hero-ctas {
        flex-direction: column;
    }
    .hero-ctas .btn {
        width: 100%;
    }
}

/* ==========================================================================
   YENİ EKLENEN STİLLER (PACKAGES & FLOATING ACTION BAR)
   ========================================================================== */

/* Paketler Bölümü */
.packages-section {
    padding: var(--spacing-4xl) 0;
    background-color: #0f172a; /* Dark background matching screenshot */
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    align-items: center;
}

.package-card.dark-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card.dark-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.package-card.featured {
    border-color: #0ea5e9 !important;
    background: linear-gradient(180deg, #1e293b 0%, rgba(14, 165, 233, 0.08) 100%);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.package-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.package-badge-top {
    text-align: center;
    background: #0ea5e9;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    margin: calc(var(--spacing-2xl) * -1) calc(var(--spacing-2xl) * -1) var(--spacing-lg) calc(var(--spacing-2xl) * -1);
    text-transform: uppercase;
}

.package-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.package-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.package-icon svg {
    width: 32px;
    height: 32px;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.package-price {
    font-size: 1rem;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-2xl) 0;
    flex-grow: 1;
}

.package-features.dark-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.package-features.dark-features li svg {
    width: 20px;
    height: 20px;
    color: #fff;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Sabit Yan Menü (Floating Action Bar) */
.floating-action-bar {
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.fab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.fab-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    z-index: 2;
}

.fab-text {
    position: absolute;
    right: 56px;
    background: inherit;
    color: white;
    padding: 8px 16px;
    border-radius: 20px 0 0 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: -4px 4px 12px rgba(0,0,0,0.1);
}

.fab-insta { background-color: #E1306C; }
.fab-phone { background-color: #0ea5e9; }
.fab-wa { background-color: #25D366; }

/* Masaüstü Hover Efektleri */
@media (min-width: 992px) {
    .fab-item:hover {
        border-radius: 28px;
    }
    .fab-item:hover .fab-text {
        opacity: 1;
        visibility: visible;
        transform: translateX(10px);
    }
}

/* Responsive Uyarlamalar */
@media (max-width: 992px) {
    .package-card.featured {
        transform: scale(1);
    }
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Footer 3-kolon düzeni */
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact h4 {
    color: #e2e8f0;
    margin-bottom: var(--spacing-md);
}

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

@media (max-width: 768px) {
    .floating-action-bar {
        bottom: 20px;
        right: 16px;
        gap: 16px;
    }
    .fab-item {
        width: 48px;
        height: 48px;
    }
    .fab-item svg {
        width: 20px;
        height: 20px;
    }
    .fab-text {
        display: none; /* Mobilde yazıları gizle, sadece ikon kalsın */
    }
}
