
/* =====================================
   HEADER – LOGOLU MODERN TASARIM
   ===================================== */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Üst bar */
.header-top {
    background: #f4f8ff;
    border-bottom: 1px solid #e3ecff;
}

.header-top-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 10px 15px;
}

/* Telefon */
.header-phone img {
    width: 150px;
    transition: all 0.3s ease;
}

.header-phone img:hover {
    transform: scale(1.1);
}

/* Logo */
.header-logo {
    text-align: center;
}

.header-logo img {
    max-height: 80px;
    width: auto;
}

/* Sosyal */
.header-social img {
    width: 35px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.header-social img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Navbar */
.site-navbar {
    background: #ffffff;
    padding: 8px 0;
}

/* Menü */
.site-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    padding: 8px 14px;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav .nav-link:hover {
    color: #2f80ed;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #2f80ed;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Responsive */
@media (max-width: 768px) {
    .header-top-inner {
        grid-template-columns: auto auto auto;
    }

    .header-logo img {
        max-height: 40px;
    }

    .header-phone img {
        width: 34px;
    }
}


/* =====================================
   HERO SLIDER
   ===================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    margin-top: 120px; /* sabit header boşluğu */
}

/* Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: all 1s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.25)
    );
}

/* İçerik */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;      /* yatay */
    justify-content: center;  /* dikey */
    text-align: center;
    padding: 30px;
    color: #fff;
}

/* Başlık (artık h1 değil) */
div.hero-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    color: #fff;
}

/* Açıklama */
.hero-content p {
    font-size: 18px;
    margin-bottom: 22px;
    opacity: 0.95;
}

/* Buton */
.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffca00;
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #f5b800;
    transform: translateY(-2px);
}

/* Nokta kontrol */
.hero-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #ffca00;
    transform: scale(1.2);
}

/* Mobil */
@media (max-width: 768px) {
    .hero-slider {
        height: 420px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }
}



/* =====================================
   HERO KUTU TASARIM
   ===================================== */

.hero-box-area {
    max-width: 1100px;
    margin: 50px auto 70px;
    padding: 0 16px;
}

.hero-box {
    background: #ffffff;
    border: 2px solid #2f80ed;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(47, 128, 237, 0.12);
}

/* Başlıklar */
.hero-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

/* Slogan */
.hero-slogan {
    font-size: 15px;
    color: #374151;
    margin: 18px 0 26px;
}

/* Telefon */
.hero-phone {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 30px;
    background: #eaf2ff;
    transition: all 0.3s ease;
}

.hero-phone:hover {
    background: #2f80ed;
    color: #ffffff;
}

/* =======================
   RESPONSIVE
   ======================= */

@media (max-width: 576px) {
    .hero-box {
        padding: 32px 20px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-phone {
        font-size: 16px;
    }
}



/* =====================================
   NE YAPIYORUZ? – MODERN TASARIM
   ===================================== */

.whatwedo-modern-area {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 16px;
}

/* Üst Alan */
.whatwedo-header {
    text-align: center;
    margin-bottom: 50px;
}

.whatwedo-header h3 {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.whatwedo-header p {
    font-size: 15px;
    color: #4b5563;
}

/* Grid */
.whatwedo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Kart */
.whatwedo-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.whatwedo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(0,0,0,0.14);
}

/* Kart Başlık */
.whatwedo-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
}

/* Liste */
.whatwedo-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatwedo-card ul li {
    font-size: 14.5px;
    color: #374151;
    padding: 8px 0;
}

.whatwedo-card ul li::before {
    content: "✔";
    color: #ffca00;
    margin-right: 8px;
}

/* Metin */
.whatwedo-card p {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Not */
.whatwedo-note {
    background: #f9fafb;
    border-left: 4px solid #ffca00;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}

/* =======================
   RESPONSIVE
   ======================= */

@media (max-width: 992px) {
    .whatwedo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .whatwedo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .whatwedo-header h3 {
        font-size: 22px;
    }
}



/* =====================================
   FEATURE – HİZMETLER MODERN TASARIM
   ===================================== */

.feature-modern-area {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 16px;
}

/* Üst Başlık */
.feature-modern-header {
    text-align: center;
    margin-bottom: 50px;
}

.feature-modern-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
}

.feature-modern-header p {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    padding: 16px;
    border-top: 2px solid #ffca00;
    border-bottom: 2px solid #ffca00;
    display: inline-block;
}

.feature-modern-header a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

/* Grid */
.feature-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Kart */
.feature-modern-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    text-align: center;
}

.feature-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(0,0,0,0.15);
}

/* Görsel */
.feature-modern-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

/* Kart Başlık */
.feature-modern-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
}

/* Liste */
.feature-modern-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-modern-card ul li {
    font-size: 14.5px;
    color: #374151;
    padding: 8px 0;
    position: relative;
}

.feature-modern-card ul li::before {
    content: "★";
    color: #ffca00;
    margin-right: 8px;
}

/* =======================
   RESPONSIVE
   ======================= */

@media (max-width: 992px) {
    .feature-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-modern-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-modern-header h3 {
        font-size: 22px;
    }
}




/* =====================================
   FOCUS – MODERN HIZLI ERİŞİM
   ===================================== */

.focus-modern-area {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 16px;
    text-align: center;
}

/* Üst Buton */
.focus-modern-header {
    margin-bottom: 50px;
}

.focus-main-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #ffca00;
    color: #000;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.focus-main-btn:hover {
    background: #f5b800;
    transform: translateY(-2px);
}

/* Grid */
.focus-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Kart */
.focus-modern-card {
    background: #ffffff;
    padding: 32px 26px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.focus-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(0,0,0,0.15);
}

/* İkon */
.focus-modern-card img {
    width: 70px;
    margin-bottom: 18px;
}

/* Başlık */
.focus-modern-card div {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

/* Açıklama */
.focus-modern-card p {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Kart Butonu */
.focus-card-btn {
    margin-top: auto;
    padding: 10px 20px;
    background: #ffca00;
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.focus-card-btn:hover {
    background: #f5b800;
    transform: translateY(-2px);
}

/* =======================
   RESPONSIVE
   ======================= */

@media (max-width: 992px) {
    .focus-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .focus-modern-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}




/* =====================================
   BAKICI HİZMETLERİ – MODERN & SADE
   ===================================== */

.bakici-modern-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1250px;
    margin: 70px auto;
    padding: 0 16px;
}

/* Kart Yapısı */
.bakici-modern-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* Hover Efekti */
.bakici-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.15);
}

/* Görseller */
.bakici-modern-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 20px;
    object-fit: cover;
}

/* Başlık */
.bakici-modern-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
}

/* Paragraflar */
.bakici-modern-card p {
    font-size: 14.6px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 14px;
}

/* Bilgi Paragrafları */
.bakici-modern-card .bakici-info {
    background: #f9fafb;
    border-left: 4px solid #ffca00;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}

/* Telefon Butonu */
.bakici-call-btn {
    margin-top: auto;
    margin-top: 20px;
    padding: 12px 18px;
    text-align: center;
    background: #ffca00;
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bakici-call-btn:hover {
    background: #f5b800;
    color: #000;
    transform: translateY(-2px);
}

/* =======================
   RESPONSIVE AYARLAR
   ======================= */

@media (max-width: 992px) {
    .bakici-modern-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bakici-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bakici-modern-card {
        padding: 22px;
    }
}


/* =======================
   HABERLER
   ======================= */

    .news-wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 60px 0;
  margin-top: 60px;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.news-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 45px;
  position: relative;
}

.news-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #f5a312;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Kart */
.news-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all .35s ease;
}

.news-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

/* Başlık */
.news-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

/* Metin */
.news-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

/* Oku */
.news-read-more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: .3s;
}

.news-card:hover .news-read-more {
  color: #f5a312;
}

/* Responsive */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= SEO CONTENT ================= */
.seo-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-content h3 {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 600;
}

.seo-content h4 {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 600;
}

.seo-content p, 
.seo-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.seo-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
}

#seo-toggle {
    display: none;
}

#seo-toggle:checked + .seo-more {
    max-height: 2000px;
}

.seo-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
}

.seo-btn:hover {
    background: #084298;
}



/* ================= ANAHTAR KELİME ================= */
.keyword-wrapper {
  padding: 50px 0;
  margin-top: 60px;
}

.keyword-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.keyword-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  position: relative;
}

.keyword-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f5a312;
  display: block;
  margin: 12px auto 0;
  border-radius: 5px;
}

/* Tag Alanı */
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Tag */
.keyword-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #f3f3f3;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid #e1e1e1;
}

.keyword-tag:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-2px);
}

/* Mobil */
@media (max-width: 576px) {
  .keyword-tag {
    font-size: 13px;
    padding: 7px 14px;
  }
}


    /* =====================================
   CONTACT – MODERN TASARIM
   ===================================== */

.contact-area {
    background: #f8fafc;
    padding: 70px 16px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

/* Başlık */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.contact-header p {
    font-size: 15px;
    color: #4b5563;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Kart */
.contact-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.contact-card textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-card button {
    width: 100%;
    padding: 13px;
    background: #ffca00;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-card button:hover {
    background: #f5b800;
}

/* Harita */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 18px;
    border: none;
}

/* Alt Bilgiler */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-info-box {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    font-size: 14px;
    color: #1f2937;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.contact-info-box a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}



    .site-footer {
  padding: 50px 0 30px;
  margin-top: 60px;
  font-size: 14px;
  color: #000;
}

.footer-divider {
  width: 100%;
  height: 4px;
  background: #1a2770;
  margin-bottom: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Üst Alan */
.footer-top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 35px;
}

.footer-logo img {
  max-width: 140px;
  height: auto;
}

/* Metin */
.footer-text p {
  margin: 0;
  line-height: 1.7;
  color: #111;
}

/* Alt Alan */
.footer-bottom {
  border-top: 1px solid #e6e6e6;
  padding-top: 20px;
  text-align: center;
}

.footer-copy {
  margin-bottom: 8px;
  font-size: 13px;
}

.footer-design a {
  font-size: 13px;
  color: #000;
  text-decoration: none;
  transition: .3s;
}

.footer-design a:hover {
  color: #f5a312;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    margin-bottom: 10px;
  }
}



/* =====================================
   OVAL FLOATING CALL BUTTON
   ===================================== */

.floating-call-oval {
    position: fixed;
    bottom: 26px;
    left: 26px;
    height: 64px;
    padding: 0 26px 0 18px;
    background: #2f80ed;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    z-index: 9999;
    box-shadow: 0 14px 35px rgba(47, 128, 237, 0.45);
    animation: callShake 3.5s infinite;
    overflow: hidden;
}

/* Telefon ikonu */
.call-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
}

/* Numara */
.call-text {
    white-space: nowrap;
    letter-spacing: 0.4px;
}

/* Hover */
.floating-call-oval:hover {
    background: #1e6fd9;
    transform: scale(1.05);
}

/* Dalga efekti */
.call-pulse {
    position: absolute;
    left: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(47, 128, 237, 0.35);
    animation: pulse 2.6s infinite;
    z-index: -1;
}

.call-pulse.delay {
    animation-delay: 1.3s;
}

/* =======================
   ANİMASYONLAR
   ======================= */

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.9);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes callShake {
    0% { transform: rotate(0); }
    2% { transform: rotate(4deg); }
    4% { transform: rotate(-4deg); }
    6% { transform: rotate(3deg); }
    8% { transform: rotate(-3deg); }
    10% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* =======================
   MOBİL
   ======================= */

@media (max-width: 576px) {
    .floating-call-oval {
        height: 56px;
        font-size: 14px;
        padding: 0 20px 0 14px;
        bottom: 18px;
        left: 18px;
    }

    .call-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}
