/* EUROTEC Sicilya V3 — aydınlık kurumsal tema */
:root {
    --color-primary: #3c6057;
    --color-primary-dark: #2d4a43;
    --color-secondary: #4a6e4b;
    --color-text: #2d3748;
    --color-text-muted: #64748b;
    --color-bg: #ffffff;
    --color-bg-muted: #f8f9fa;
    --color-border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --header-h: 72px;
}

html {
    scroll-behavior: smooth;
    /* Ürünlerimiz sidebar sticky için: html'de clip bazı motorlarda yapışmayı kesintiye uğratıyor; yatay taşmayı body'de kesiyoruz */
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    /* overflow-x:hidden breaks position:sticky descendants in Chrome/Safari; clip clips without that side effect */
    overflow-x: clip;
    padding-top: var(--header-h);
}

/* Üst şerit */
.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.2s ease, background 0.2s ease;
    min-height: var(--header-h);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
    background: #fff;
}

.site-header .navbar-brand img {
    height: 40px;
    width: auto;
}

.site-header .nav-link {
    color: var(--color-text) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.375rem;
    transition: color 0.15s ease, background 0.15s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: var(--color-primary) !important;
    background: var(--color-bg-muted);
}

.site-header .nav-link.active {
    color: var(--color-primary) !important;
    background: rgba(60, 96, 87, 0.08);
}

.site-header .navbar-toggler {
    border-color: var(--color-border);
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(60, 96, 87, 0.2);
}

/* Butonlar */
.btn-primary-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-secondary);
    --bs-btn-border-color: var(--color-secondary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-active-bg: var(--color-primary-dark);
    --bs-btn-active-border-color: var(--color-primary-dark);
    font-weight: 600;
}

.btn-outline-brand {
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
}

.btn-outline-brand:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Kart yüzeyi */
.surface-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.surface-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.surface-card .card-img-top,
.surface-card img.product-thumb {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid var(--color-border);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.surface-card img.product-thumb--detail {
    height: clamp(280px, 34vw, 480px);
    width: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem;
}

.surface-card:hover .product-thumb--detail {
    transform: none;
}

/* Bölüm arka planları */
.section-muted {
    background: var(--color-bg-muted);
}

.section-border-y {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Ana sayfa hero — video arka plan + gradient */
.hero-home {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--color-primary-dark);
}

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

.hero-home__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        rgba(45, 74, 67, 0.75) 0%,
        rgba(60, 96, 87, 0.55) 42%,
        rgba(60, 96, 87, 0.2) 100%
    );
}

@media (prefers-reduced-motion: reduce) {
    .hero-home__media {
        display: none;
    }

    .hero-home::before {
        background: linear-gradient(
                120deg,
                rgba(45, 74, 67, 0.75) 0%,
                rgba(60, 96, 87, 0.55) 42%,
                rgba(60, 96, 87, 0.2) 100%
            ),
            url("../images/hero/smart-farming-1.webp") center / cover no-repeat;
    }
}

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

.hero-home h1 {
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-home .lead {
    color: rgba(255, 255, 255, 0.92);
    max-width: 40rem;
}

.hero-home.hero-home--animate-init [data-hero-reveal] {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(6px);
}

.hero-home.hero-home--animate-init.hero-home--animate-in [data-hero-reveal] {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition:
        opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.75s ease;
    transition-delay: var(--hero-delay, 0ms);
}

/* İkon kutusu */
.icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
}

/* Küçük hero (alt sayfalar) */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
}

.page-hero h1 {
    color: #fff;
}

.page-hero .text-lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 36rem;
}

.page-hero--urunlerimiz {
    --page-hero-photo: url("../images/hero/hero1-480w.webp");
    background:
        linear-gradient(120deg, rgba(45, 74, 67, 0.84) 0%, rgba(60, 96, 87, 0.62) 45%, rgba(60, 96, 87, 0.3) 100%),
        var(--page-hero-photo) center / cover no-repeat;
}

@media (min-width: 576px) {
    .page-hero--urunlerimiz {
        --page-hero-photo: url("../images/hero/hero1-960w.webp");
    }
}

@media (min-width: 992px) {
    .page-hero--urunlerimiz {
        --page-hero-photo: url("../images/hero/hero1.webp");
    }
}

.page-hero--ekatalog {
    --page-hero-photo: url("../images/hero/hero2-480w.webp");
    background:
        linear-gradient(120deg, rgba(45, 74, 67, 0.82) 0%, rgba(60, 96, 87, 0.58) 45%, rgba(60, 96, 87, 0.28) 100%),
        var(--page-hero-photo) center / cover no-repeat;
}

@media (min-width: 576px) {
    .page-hero--ekatalog {
        --page-hero-photo: url("../images/hero/hero2-960w.webp");
    }
}

@media (min-width: 992px) {
    .page-hero--ekatalog {
        --page-hero-photo: url("../images/hero/hero2.webp");
    }
}

.page-hero--tesciller {
    background:
        linear-gradient(120deg, rgba(45, 74, 67, 0.84) 0%, rgba(60, 96, 87, 0.6) 45%, rgba(60, 96, 87, 0.3) 100%),
        url("../images/hero/tesciller-hero.webp") center 42% / cover no-repeat;
}

/* Hakkımızda hero + metin kartı */
.about-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 4.5rem 0 4rem;
    background:
        linear-gradient(120deg, rgba(45, 74, 67, 0.9) 0%, rgba(60, 96, 87, 0.72) 45%, rgba(60, 96, 87, 0.38) 100%),
        url("../images/hero/fertilizer-lab-1.webp") center / cover no-repeat;
}

.about-hero h1 {
    color: #fff;
    letter-spacing: -0.02em;
}

.about-story-card {
    border: 1px solid var(--color-border);
    line-height: 1.75;
}

.about-story-card p {
    font-size: 1.05rem;
}

/* Hakkımızda — Ar-Ge bölümü üretim videosu (yatay kırpım, sessiz) */
.about-arge-video {
    position: relative;
    /* Önceki 21:9 şeridine göre aynı genişlikte ~2× dikey görünüm (yaklaşık 7:6) */
    aspect-ratio: 7 / 6;
    max-height: 560px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-arge-video__media {
    position: absolute;
    inset: -10% -2%;
    width: calc(100% + 4%);
    height: calc(108% + 20%);
    object-fit: cover;
    object-position: center 42%;
}

.about-arge-video__fallback {
    display: none;
}

@media (max-width: 991.98px) {
    .about-arge-video {
        aspect-ratio: 1 / 1;
        max-height: 440px;
    }

    .about-arge-video__media {
        inset: -12% -2%;
        height: calc(112% + 24%);
        object-position: center 38%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-arge-video__media {
        display: none;
    }

    .about-arge-video__fallback {
        display: block;
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                120deg,
                rgba(45, 74, 67, 0.25) 0%,
                rgba(60, 96, 87, 0.12) 100%
            ),
            url("../images/hero/high-tech-greenhouse-1.webp") center 40% / cover no-repeat;
    }
}

/* Footer */
.site-footer {
    background: var(--color-bg-muted);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--color-text);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--color-primary);
}

.site-footer .footer-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.site-footer .footer-logo {
    max-width: 100%;
    height: auto;
}

/* Footer — tek satırda harita (lg+) */
.site-footer .footer-main-row {
    --footer-map-h: 200px;
}

.site-footer .footer-map-col {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .site-footer .footer-main-row .footer-map-col .footer-map-embed {
        flex: 1 1 auto;
        min-height: var(--footer-map-h);
        height: var(--footer-map-h);
        max-width: none;
    }
}

/* Form (minimal) */
.form-minimal .form-control,
.form-minimal .form-select {
    border: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    padding-left: 0;
    background: transparent;
}

.form-minimal .form-control:focus,
.form-minimal .form-select:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

.form-minimal textarea.form-control {
    min-height: 6rem;
}

/* Katalog iframe */
.catalog-embed-wrap {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-bg-muted);
}

/* PDF.js canvas viewer */
.pdf-viewer {
    width: 100%;
    max-height: min(85vh, 900px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #525659;
    padding: 16px 0;
    -webkit-overflow-scrolling: touch;
}

.pdf-page-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.pdf-page-wrap:last-child {
    margin-bottom: 0;
}

.pdf-page-canvas {
    display: block;
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 24px;
    color: #ddd;
    font-size: .9rem;
}

.pdf-loading__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255,255,255,.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pdf-spin .8s linear infinite;
}

@keyframes pdf-spin {
    to { transform: rotate(360deg); }
}

.pdf-error {
    padding: 48px 24px;
    text-align: center;
    color: #ddd;
}

@media (max-width: 767.98px) {
    .pdf-viewer {
        max-height: 75vh;
        padding: 8px 0;
    }
}

/* Tescil rozet kartı */
.badge-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge-card .placeholder-frame {
    width: 100%;
    max-width: 140px;
    aspect-ratio: 4 / 3;
    border: 2px dashed var(--color-border);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.badge-card .badge-preview {
    width: 100%;
    max-width: 140px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

/* Ürünlerimiz kartları — görsel tam görünüm */
.urun-grid .image-wrapper {
    background: var(--color-bg-muted);
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.urun-grid .surface-card img.product-thumb {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border-bottom: 0;
    padding: 0;
}

.urun-grid .surface-card .p-4 {
    padding: 1.1rem !important;
}

.urun-grid .surface-card:hover .product-thumb {
    transform: none;
}

/* Ürünlerimiz — sol sütunda uzun içerik; sağ sütun viewport'ta yapışır (klasik flex + sticky kolon kalıbı) */
.urunlerimiz-products-row {
    align-items: flex-start;
}

@media (min-width: 992px) {
    .urunlerimiz-products-sidebar {
        position: sticky;
        position: -webkit-sticky;
        align-self: flex-start;
        top: calc(var(--header-h) + 1rem);
        height: fit-content;
        /* allow Bootstrap column sizing (col-lg-3) to control width */
        z-index: 10;
        /* uzun accordion listesi aşağı doğru sığdırılmaz ise panel içinden kaydırılabilir */
        max-height: calc(100dvh - var(--header-h) - 2rem);
    }
    
    .kategori-nav {
        overflow-y: auto;
    }
}

.kategori-nav__sticky {
    position: relative;
}

.kategori-nav__item {
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.kategori-nav__toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.8rem;
    border: 0;
    background: #fff;
    color: var(--color-text);
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.kategori-nav__toggle:hover,
.kategori-nav__toggle:focus-visible {
    background: var(--color-bg-muted);
    color: var(--color-primary);
}

.kategori-nav__item.is-active .kategori-nav__toggle {
    background: rgba(60, 96, 87, 0.15);
    color: var(--color-primary);
    font-weight: 600;
    border-left: 3px solid var(--color-primary);
    padding-left: calc(0.8rem - 3px);
}

.kategori-nav__panel {
    border-top: 1px solid var(--color-border);
    background: #fff;
    padding: 0.5rem 0.65rem 0.65rem;
}

.kategori-nav__product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kategori-nav__product-link {
    display: block;
    padding: 0.35rem 0.4rem;
    border-radius: 0.45rem;
    font-size: 0.86rem;
    color: var(--color-text-muted);
    text-decoration: none;
    line-height: 1.35;
}

.kategori-nav__product-link:hover,
.kategori-nav__product-link:focus-visible {
    background: var(--color-bg-muted);
    color: var(--color-primary);
}

.kategori-chip-bar {
    position: sticky;
    top: var(--header-h);
    z-index: 5;
    background: var(--color-bg);
    scrollbar-width: none;
}

.kategori-chip {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    background: #fff;
}

.kategori-chip.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.kategori-block {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* Tesciller sayfası yatay kaydırma */
.tescil-slider {
    position: relative;
    padding: 0 2.75rem;
}

.tescil-slider-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-left: 0;
    margin-right: 0;
    scroll-snap-type: x proximity;
}

.tescil-slider-track > [class*="col-"] {
    flex: 0 0 280px;
    max-width: 280px;
    scroll-snap-align: start;
}

.tescil-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    z-index: 2;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.tescil-slider-btn:hover,
.tescil-slider-btn:focus-visible {
    background: var(--color-primary);
    color: #fff;
}

.tescil-slider-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
}

.tescil-slider-btn--prev {
    left: 0;
}

.tescil-slider-btn--next {
    right: 0;
}

@media (max-width: 767.98px) {
    .tescil-slider {
        padding: 0;
    }

    .tescil-slider-btn {
        display: none;
    }
}

/* Tescil PDF pop-up */
.pdf-preview-modal .modal-content {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pdf-preview-frame {
    width: 100%;
    height: min(78vh, 860px);
    border: 0;
    display: block;
}

@media (max-width: 767.98px) {
    .pdf-preview-frame {
        height: 72vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-home.hero-home--animate-init [data-hero-reveal],
    .hero-home.hero-home--animate-init.hero-home--animate-in [data-hero-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* Galeri — eşit 4:3 hücre, görseller cover ile hizalı */
.gallery-tile {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    background: var(--color-bg-muted);
}

.gallery-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.gallery-tile:hover img {
    transform: scale(1.04);
}

.gallery-tile img.gallery-focus-bottom {
    object-position: center bottom;
}

/* Harita — iletişim sayfası (tam genişlik, mobil uyumlu yükseklik) */
.map-embed-shell {
    position: relative;
    width: 100%;
    height: clamp(220px, 52vw, 420px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    background: var(--color-bg-muted);
}

.map-embed-shell iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer — gömülü harita */
.footer-map-embed {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-bg-muted);
    box-shadow: var(--shadow-sm);
    height: clamp(176px, 48vw, 240px);
}

.footer-map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer .footer-map-embed,
.site-footer .footer-map-embed iframe {
    pointer-events: auto;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .footer-map-embed {
        max-width: 640px;
    }
}

/* Yardımcı */
.text-brand {
    color: var(--color-primary) !important;
}

.link-brand {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
}

.link-brand:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* =========================
   PREMIUM PRODUCT CARDS
========================= */

.surface-card {
    border-radius: 16px;
    background: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .surface-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  }
  
  .product-thumb {
    width: 100%;
    transition: transform 0.5s ease;
  }
  
  .surface-card:hover .product-thumb {
    transform: scale(1.08);
  }
  
  .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-top: 10px;
    transition: transform 0.3s ease;
  }
  
  .surface-card:hover .card-cta {
    transform: translateX(6px);
  }
  
  /* subtle premium overlay */
  .surface-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0) 60%,
      rgba(0,0,0,0.03)
    );
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
  }
  
  .surface-card:hover::after {
    opacity: 1;
  }

  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp Kurumsal Yeşili */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999; /* Elementin her zaman en üstte kalmasını sağlar */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover (Üzerine Gelme) Efekti */
.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Mobil Görünüm (Responsive) Optimizasyonu */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}