/* ==========================================
   HBL GARAGE - CSS Tasarım Sistemi
   ========================================== */

/* Değişkenler ve Temel Sıfırlama */
:root {
    --bg-darker: #0c0c0e;
    --bg-dark: #121214;
    --bg-card: #1c1c21;
    --bg-card-hover: #25252b;
    --accent: #0088FF; /* Canlı Mavi */
    --accent-hover: #0066CC;
    --accent-glow: rgba(0, 136, 255, 0.2);
    --text-light: #ffffff;
    --text-gray: #a0a0a5;
    --text-dark: #1a1a1a;
    --border-color: #2c2c35;
    
    --google-color: #4285F4;
    --yandex-color: #FC3F1D;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #128C7E;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Vurgu & Yardımcı Sınıflar */
.highlight {
    color: var(--accent);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-yellow { color: var(--accent); }
.text-red { color: var(--yandex-color); }
.text-center { text-align: center; }

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 255, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--whatsapp-color);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-secondary:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--accent);
    padding: 8px 18px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.svg-phone-icon {
    transition: transform 0.3s ease;
}

.btn-phone:hover {
    background-color: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

.btn-phone:hover .svg-phone-icon {
    animation: phoneShake 0.4s ease-in-out infinite alternate;
}

@keyframes phoneShake {
    0% { transform: rotate(-12deg) scale(1.05); }
    100% { transform: rotate(12deg) scale(1.05); }
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Header & Navigasyon */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(12, 12, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.15);
    transition: var(--transition-smooth);
}

.brand-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.3);
}

.btn-phone-rect {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--accent);
    width: 68px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-phone-rect:hover {
    background-color: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.4);
}

.svg-phone-icon-special {
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-phone-rect:hover .svg-phone-icon-special {
    animation: phoneShake 0.4s ease-in-out infinite alternate;
}

.phone-pulse-ring-rect {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 68px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--accent);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    animation: pulseRingRect 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulseRingRect {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.15, 1.25);
        opacity: 0;
    }
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-gray);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    /* JS, video süresine göre yüksekliği günceller (scroll = video ilerlemesi) */
    height: 300vh;
    background-color: var(--bg-dark);
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 160px 0 100px 0;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* büyütüp sola-yukarı kaydırarak sağ-alttaki Gemini logosunu kadraj dışına atar */
    transform: translate(-52%, -54%) scale(1.22);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.5) 0%, rgba(0, 136, 255, 0.05) 50%, var(--bg-dark) 100%);
    z-index: 1;
}

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

.js-enabled .hero-scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 5;
}

.trust-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.trust-badge {
    background-color: rgba(28, 28, 33, 0.7);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    max-width: 580px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-feat-item i {
    color: var(--accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn-large {
    padding: 12px 28px;
    font-size: 0.9rem;
}

/* Neden HBL Section */
.features-section {
    padding: 60px 0;
    position: relative;
    z-index: 5;
    margin-top: -50px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 30px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 136, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Section Title */
.section-title {
    margin-bottom: 60px;
}

.sub-title {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Comparison / Before-After Section */
.comparison-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.slider-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.slider-wrapper:hover {
    border-color: rgba(0, 136, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 136, 255, 0.15);
}

.slider-title-inside {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-title-inside i {
    color: var(--accent);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: auto;
    user-select: none;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.slider-kapi {
    aspect-ratio: 612 / 387;
}

.slider-camurluk {
    aspect-ratio: 590 / 433;
}

.comparison-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.image-before {
    z-index: 1;
}

.image-after {
    z-index: 2;
    /* This will be cropped dynamically by JS */
    width: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.label-badge {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 5;
}

.label-before {
    left: 20px;
    background-color: rgba(220, 53, 69, 0.8);
    color: white;
}

.label-after {
    right: 20px;
    background-color: rgba(40, 167, 69, 0.8);
    color: white;
}

.slider-bar {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.5);
    border: 3px solid var(--text-light);
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

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

@media (min-width: 992px) {
    #services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-premium {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, #00D4FF 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 136, 255, 0.3);
    background-color: var(--bg-card-hover);
}

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

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(0, 136, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.service-card-premium:hover .service-icon {
    background-color: var(--accent);
    color: var(--text-dark);
}

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

.service-card-premium p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.slider-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.review-slider {
    position: relative;
    min-height: 250px;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    z-index: 1;
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    z-index: 2;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.review-platform {
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--bg-darker);
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.rating-value {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
}

.review-text {
    font-style: italic;
    font-size: 1.05rem;
    color: #e0e0e5;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.btn-ctrl {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-ctrl:hover {
    background-color: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 10px;
}

/* Banner / CTA Section */
.banner-section {
    background: linear-gradient(135deg, #18181f 0%, #0c0c0e 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-text h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.banner-text p {
    color: var(--text-gray);
}

/* Contact & Info Section */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-block {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(0, 136, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.info-content p {
    color: var(--text-gray);
}

.info-content .desc {
    font-size: 0.85rem;
    margin-top: 4px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 6px;
}

.map-link:hover {
    color: var(--text-light);
}

.phone-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.phone-link:hover {
    color: var(--accent);
}

.social-channels h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--text-dark);
}

.social-icon.inst:hover { background-color: #E1306C; }
.social-icon.fb:hover { background-color: #1877F2; }

/* Custom Contact Form */
.contact-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

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

.form-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-darker);
}

/* Map Container */
.map-embed-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    margin-top: 50px;
}

.map-embed-container iframe {
    filter: invert(90%) hue-rotate(180deg) grayscale(45%); /* Fits dark theme beautifully */
}

/* Footer Styling */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-container-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 6px;
    opacity: 0.8;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.1);
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.25);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) rotate(5deg);
}

.floating-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-floating:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   Responsive Tasarım Breakpoints
   ========================================== */

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-dark);
        border-top: 1px solid var(--border-color);
        transition: 0.4s ease;
        padding: 50px 30px;
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hamburger to X transition */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    

}

@media (max-width: 768px) {
    .hero-sticky {
        padding: 120px 0 80px 0;
    }
    
    .hero-content {
        padding: 30px 20px;
        border-radius: 16px;
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2.0rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    

    
    .banner-container {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-btn-wrapper {
        width: 100%;
    }
    
    .banner-btn-wrapper .btn {
        width: 100%;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .whatsapp-floating .floating-tooltip {
        display: none; /* Hide on mobile to avoid layout overlap */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .trust-badge-container {
        flex-direction: column;
        gap: 8px;
    }
    

    
    .label-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}
