@charset "UTF-8";
/* ============================================
   ŞAHIN TEMİZLİK - Ana Stil Dosyası
   Tasarım: Profesyonel Temizlik Firması
   Bootstrap 5.3 ile Uyumlu
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Değişkenler (Design Tokens) --- */
:root {
  /* Renkler */
  --primary: #1a3a6b;
  --primary-dark: #0f2548;
  --primary-light: #2554a0;
  --secondary: #2980b9;
  --accent: #00b4d8;
  --accent-light: #48cae4;
  --dark: #0d1b2a;
  --dark-light: #1b2838;
  --light-bg: #f0f4f8;
  --lighter-bg: #f8fafc;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --whatsapp: #25d366;
  
  /* Gradyanlar */
  --gradient-primary: linear-gradient(135deg, #1a3a6b 0%, #2980b9 100%);
  --gradient-hero: linear-gradient(135deg, #0d1b2a 0%, #1a3a6b 50%, #2980b9 100%);
  --gradient-accent: linear-gradient(135deg, #00b4d8 0%, #2980b9 100%);
  --gradient-dark: linear-gradient(180deg, #0d1b2a 0%, #1b2838 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Tipografi */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Gölgeler */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px rgba(0,180,216,0.3);
  --shadow-card: 0 5px 25px rgba(26,58,107,0.08);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
}

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

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

/* --- Üst Bar (Top Bar) --- */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar a {
  color: rgba(255,255,255,0.85);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar i {
  color: var(--accent);
  margin-right: 6px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar .social-icons a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  font-size: 0.75rem;
  transition: var(--transition);
}

.top-bar .social-icons a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Navbar --- */
.navbar {
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  position: relative;
}

.navbar-brand {
  padding: 8px 0;
}

.navbar-brand img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
  height: 55px;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 25px 16px !important;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .dropdown-toggle.nav-link::before {
  display: none;
}

.navbar-nav .nav-link.dropdown-toggle::after {
  display: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px 0;
  margin-top: 0;
  min-width: 250px;
  animation: fadeInDown 0.3s ease;
}

.navbar .dropdown-item {
  font-weight: 500;
  padding: 10px 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.navbar .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 25px;
}

.navbar .dropdown-item i {
  width: 20px;
  color: var(--accent);
  margin-right: 8px;
}

.btn-navbar-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  border: none;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26,58,107,0.3);
}

.btn-navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,107,0.4);
}

.btn-navbar-cta i {
  margin-right: 6px;
  animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(0deg); }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

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

.hero-title {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin-bottom: 35px;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 45px;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.hero-feature-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 3;
  animation: fadeInRight 1s ease;
}

.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  bottom: 30px;
  left: -30px;
}

.hero-floating-card.card-2 {
  top: 30px;
  right: -20px;
  animation-delay: 1.5s;
}

.hero-floating-card .icon-box {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.hero-floating-card h6 {
  font-size: 0.8rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.hero-floating-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Butonlar --- */
.btn-primary-custom {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-xl);
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26,58,107,0.35);
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 30px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-accent:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* --- Section Ortak Stiller --- */
.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,58,107,0.06);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.section-badge i {
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
}

.section-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Hizmet Kartları --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.service-card .service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-card:hover .service-link {
  color: var(--accent);
  gap: 10px;
}

/* --- Neden Biz --- */
.why-us-section {
  background: var(--light-bg);
}

.why-card {
  text-align: center;
  padding: 30px 20px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(26,58,107,0.25);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(26,58,107,0.35);
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- İstatistikler --- */
.stats-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
  text-align: center;
  padding: 30px 15px;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Hakkımızda Bölümü --- */
.about-section .about-image-wrapper {
  position: relative;
}

.about-section .about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-section .about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-section .about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
}

.about-feature i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* --- Müşteri Yorumları --- */
.testimonials-section {
  background: var(--lighter-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(0,180,216,0.1);
  border-radius: var(--radius-full);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-full);
}

.cta-section h2 {
  color: var(--white);
  font-weight: 800;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

.cta-phone a {
  color: var(--accent);
}

.cta-phone a:hover {
  color: var(--white);
}

/* --- Footer --- */
.footer {
  background: var(--gradient-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-logo {
  height: 65px;
  margin-bottom: 15px;
  filter: brightness(1.1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

/* .footer-links a::before kaldırıldı (çift ok sorunu) */

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--accent);
  width: 18px;
  text-align: center;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  margin-left: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* --- Breadcrumb --- */
.breadcrumb-section {
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.90) 0%, rgba(15, 37, 72, 0.95) 100%), url('../img/hero-bg.jpg') center/cover no-repeat;
  padding: 40px 0; /* Küçültülmüş padding */
  position: relative;
  overflow: hidden;
}

.breadcrumb-section::before {
  display: none; /* Nokta deseni kaldırıldı */
}

.breadcrumb-section::after {
  display: none; /* Kavisli kesim kaldırıldı */
}

.breadcrumb-section h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.breadcrumb-section .breadcrumb {
  position: relative;
  z-index: 1;
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-section .breadcrumb-item {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.breadcrumb-section .breadcrumb-item a {
  color: var(--accent);
}

.breadcrumb-section .breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-section .breadcrumb-item.active {
  color: rgba(255,255,255,0.9);
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* --- İletişim & Form --- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.contact-info-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}

.contact-info-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.contact-info-card a {
  color: var(--primary);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 12px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  background-color: var(--lighter-bg);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.1);
  background-color: var(--white);
}

.contact-form label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* --- Blog Kartları --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 25px;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h4 a:hover {
  color: var(--accent);
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more:hover {
  color: var(--accent);
  gap: 10px;
}

/* --- Floating Butonlar --- */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.floating-whatsapp {
  background: var(--whatsapp);
  animation: pulse-btn 2s infinite;
}

.floating-phone {
  background: var(--gradient-primary);
}

.floating-top {
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.floating-top.visible {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-btn {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Hizmet Detay --- */
.service-detail-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  margin-top: 35px;
}

.service-detail-content p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 15px;
}



.service-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-card);
}

.sidebar-widget h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-bg);
}

.sidebar-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-service-list li {
  margin-bottom: 5px;
}

.sidebar-service-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.sidebar-service-list a:hover,
.sidebar-service-list a.active {
  background: var(--gradient-primary);
  color: var(--white);
}

.sidebar-service-list a i {
  font-size: 0.75rem;
}

.sidebar-cta {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  color: var(--white);
}

.sidebar-cta h4 {
  color: var(--white);
  border-bottom: none;
  margin-bottom: 12px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.sidebar-cta .phone {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.sidebar-cta .phone a {
  color: var(--accent);
}

.sidebar-cta .phone a:hover {
  color: var(--white);
}

/* --- Hakkımızda Sayfa --- */
.vision-mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.vision-mission-card .vm-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 18px;
}

.vision-mission-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.vision-mission-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.values-card {
  text-align: center;
  padding: 25px 15px;
}

.values-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.values-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.values-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Google Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* --- Animasyonlar --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--light-bg);
  border-top-color: var(--primary);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

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

/* --- Dropdown Hover --- */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .top-bar {
    display: none;
  }
  
  .navbar-brand img {
    height: 55px;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 16px !important;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0 100px;
  }
  
  .hero-image-wrapper {
    margin-top: 40px;
  }
  
  .hero-floating-card {
    display: none;
  }
  
  .about-experience-badge {
    right: 10px;
    bottom: 10px;
    padding: 15px 18px;
  }
  
  .about-experience-badge .number {
    font-size: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .btn-navbar-cta {
    display: none;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    text-align: center;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .footer {
    padding-top: 50px;
  }
  
  .breadcrumb-section {
    padding: 30px 0;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .cta-phone {
    font-size: 1.5rem;
  }
}

/* --- Service Detail Image --- */
.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.service-detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* --- Teklif Formu Özel --- */
.quote-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-lg);
}

.quote-form-wrapper h3 {
  margin-bottom: 25px;
}

/* --- Blog sayfası --- */
.blog-card-category {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.blog-card-image {
  position: relative;
}

/* ============================================
   EK STİLLER - Sayfa Uyumluluk
   ============================================ */

/* --- Preloader Varyantları --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden,
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-inner .spinner,
#preloader .spinner-border {
  width: 50px;
  height: 50px;
  border: 4px solid var(--light-bg);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 15px;
}

.preloader-inner span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* --- Floating Button Varyantları --- */
.whatsapp-btn,
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  animation: pulse-btn 2s infinite;
}

.phone-btn,
.floating-phone {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.scroll-top-btn,
.floating-top {
  position: fixed;
  bottom: 155px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn.visible,
.floating-top.visible,
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-btn:hover,
.phone-btn:hover,
.floating-whatsapp:hover,
.floating-phone:hover {
  transform: scale(1.1);
  color: var(--white);
}

.scroll-top-btn:hover,
.floating-top:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* --- Footer Varyantları --- */
.footer-section, .footer {
  background: var(--gradient-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.footer-about p,
.footer-description {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.footer-logo-img,
.footer-section img[src*="logo"],
.footer img[src*="logo"] {
  height: 65px !important;
  width: auto !important;
  margin-bottom: 15px;
  filter: brightness(1.1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-links a i {
  color: var(--accent);
  font-size: 0.7rem;
  width: 15px;
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact li i {
  color: var(--accent);
  width: 18px;
  text-align: center;
  margin-top: 4px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social a,
.footer-bottom-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  margin-right: 8px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover,
.footer-bottom-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* --- Why Us Item Varyantları --- */
.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
}

.why-us-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-us-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  transition: var(--transition);
}

.why-us-item:hover .why-us-icon {
  background: var(--gradient-accent);
  transform: scale(1.1);
}

.why-us-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-us-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* --- Stat Icon --- */
.stat-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.stat-suffix,
.stat-prefix {
  color: var(--accent);
}

/* --- About Feature Item --- */
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 0;
}

.about-feature-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* --- Hero Image Container --- */
.hero-image-container {
  position: relative;
}

.hero-image-float-badge {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.hero-image-float-badge strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
}

.hero-image-float-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Navbar Logo --- */
.navbar-logo {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
  height: 55px;
}

/* --- CTA Section Varyantları --- */
.cta-section,
.cta-section-wrapper {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.cta-title {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-description {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-phone a {
  color: var(--accent);
}

.cta-phone a:hover {
  color: var(--white);
}

/* --- Testimonials Varyantları --- */
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Top Bar Info --- */
.top-bar-info {
  gap: 5px;
}

.top-bar-info li {
  list-style: none;
}

.top-bar-social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin-left: 5px;
  font-size: 0.75rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* --- Service Title --- */
.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* --- Section Subtitle --- */
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- About Text --- */
.about-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* --- Min VH --- */
.min-vh-75 {
  min-height: 75vh;
}

/* --- Footer Main --- */
.footer-main {
  padding-bottom: 20px;
}

/* --- Dropdown Toggle Fix --- */
.navbar-nav .dropdown-toggle::after {
  border: none;
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  vertical-align: middle;
  margin-left: 5px;
}

/* --- Mobile Responsive Additions --- */
@media (max-width: 991.98px) {
  .whatsapp-btn,
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    bottom: 15px;
    right: 15px;
  }
  
  .phone-btn,
  .floating-phone {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    bottom: 72px;
    right: 15px;
  }
  
  .scroll-top-btn,
  .floating-top {
    width: 40px;
    height: 40px;
    bottom: 128px;
    right: 15px;
  }
  
  .footer-section, .footer {
    padding-top: 50px;
  }
}

@media (max-width: 767.98px) {
  .hero-image-float-badge {
    display: none;
  }
}
