/* ==========================================================================
   OP. DR. BELGİN HARZADIN - KADIN HASTALIKLARI VE DOĞUM UZMANI
   Modern, Premium & Responsive Web Sitesi ve Admin Paneli Stilleri
   Renk Paleti: Soft Pembe (#E881A2, #FCE4EC) & Soft Mavi (#62A8D9, #E1F1FC)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Ana Renkler (Soft Rose & Serenity Blue) */
  --primary-color: #D8698C;
  --primary-light: #F7C5D5;
  --primary-soft: #FDF2F6;
  --primary-dark: #A84666;
  
  --secondary-color: #5BA3D9;
  --secondary-light: #C8E5F9;
  --secondary-soft: #EEF8FF;
  --secondary-dark: #377AB0;

  --accent-gold: #C2A676;
  
  /* Nötr Tonlar */
  --bg-main: #FCFDFE;
  --bg-card: #FFFFFF;
  --text-main: #2C353F;
  --text-muted: #6B7A8C;
  --border-color: #E6EEF5;
  --shadow-sm: 0 4px 15px rgba(216, 105, 140, 0.06);
  --shadow-md: 0 10px 30px rgba(91, 163, 217, 0.12);
  --shadow-lg: 0 20px 50px rgba(44, 53, 63, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.6);
  
  /* Dönüşümler */
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-main);
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   SAYAÇ & BUTON STİLLERİ
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 105, 140, 0.35);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: #FFFFFF;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(91, 163, 217, 0.35);
}

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

.btn-outline:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #2E7D32;
  color: #FFFFFF;
  border: none;
}

.btn-whatsapp:hover {
  background: #1B5E20;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(216, 105, 140, 0.15);
}

.logo-text h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--primary-dark);
}

.logo-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  background: none;
  border: none;
}

/* ==========================================================================
   HERO BÖLÜMÜ
   ========================================================================== */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, var(--primary-soft) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, var(--secondary-soft) 0%, transparent 50%);
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #FFFFFF;
  border: 1px solid var(--primary-light);
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-content h1 span {
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--secondary-dark);
  font-weight: 700;
}

.stat-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-visual {
  position: relative;
}

/* ==========================================================================
   ANASAYFA HERO KOLAJ ÇALIŞMASI (PHOTO COLLAGE)
   ========================================================================== */
.hero-collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 270px 270px;
  gap: 18px;
  position: relative;
  padding: 10px 0 20px 0;
  z-index: 2;
  width: 100%;
}

.collage-item {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 4px solid #FFFFFF;
  background: var(--bg-card);
}

.collage-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  z-index: 5;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.collage-item:hover img {
  transform: scale(1.08);
}

/* Basamaklı (staggered) estetik görünüm için çift sütunları hafif aşağı kaydırıyoruz */
.collage-item:nth-child(even) {
  transform: translateY(16px);
}

.collage-item:nth-child(even):hover {
  transform: translateY(10px) scale(1.02);
}

/* ==========================================================================
   GENEL BÖLÜM YAPISI
   ========================================================================== */
section {
  padding: 100px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .sub-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   HAKKINDA (ABOUT)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-soft), var(--secondary-soft));
  padding: 20px;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #FFFFFF;
  padding: 18px 26px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 15px;
}

.experience-badge h3 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin: 0;
}

.experience-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.value-box {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  transition: var(--transition);
}

.value-box:hover {
  border-color: var(--secondary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.value-box i {
  color: var(--secondary-color);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.value-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ==========================================================================
   HİZMETLER (SERVICES)
   ========================================================================== */
.services-section {
  background-color: var(--primary-soft);
  max-width: 100%;
  padding: 100px 24px;
}

.services-container {
  max-width: 1240px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 32px 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--secondary-soft);
  color: var(--secondary-dark);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0;
  line-height: 1.35;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  flex-grow: 1;
}

/* ==========================================================================
   SIKÇA SORULAN SORULAR (FAQ) - AKORDİYON
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  padding-right: 16px;
  margin: 0;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary-color);
  color: #FFFFFF;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-body-content {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px dashed var(--border-color);
  padding-top: 18px;
}

/* ==========================================================================
   İLETİŞİM, HARİTA & INSTAGRAM BÖLÜMÜ
   ========================================================================== */
.contact-section {
  background: radial-gradient(circle at 80% 50%, var(--secondary-soft) 0%, transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.contact-info-item {
  background: var(--bg-card);
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-4px);
  border-color: var(--secondary-light);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

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

/* İnteraktif Harita Kartı */
.contact-map-card {
  background: var(--bg-card);
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-color);
}

.map-iframe-container {
  flex-grow: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  min-height: 360px;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--bg-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(216, 105, 140, 0.12);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--text-main);
  color: #FFFFFF;
  padding: 60px 24px 30px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-col p {
  color: #B0BEC5;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #B0BEC5;
  font-size: 0.92rem;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #90A4AE;
}

.discreet-admin-link {
  color: #546E7A;
  transition: var(--transition);
}

.discreet-admin-link:hover {
  color: var(--primary-light);
}

/* ==========================================================================
   ADMIN PANELİ ÖZEL STİLLERİ (`admin.html`)
   ========================================================================== */
.admin-body {
  background-color: #F4F7F9;
  min-height: 100vh;
}

.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at top right, var(--primary-soft), var(--secondary-soft));
}

.admin-login-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 440px;
  padding: 44px 36px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
}

.admin-login-card h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.admin-login-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.admin-navbar {
  background: #1E242B;
  color: #FFFFFF;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.admin-navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-navbar-brand span {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary-light);
}

.admin-badge {
  background: #D8698C;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.admin-container {
  max-width: 1240px;
  margin: 36px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

.admin-sidebar {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: fit-content;
}

.admin-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.admin-tab-btn i {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.admin-tab-btn:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.admin-tab-btn.active {
  background: var(--primary-color);
  color: #FFFFFF;
}

.admin-tab-btn.active i {
  color: #FFFFFF;
}

.admin-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.admin-tab-pane {
  display: none;
}

.admin-tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.admin-list-item:hover {
  border-color: var(--secondary-light);
  background: var(--secondary-soft);
}

.admin-list-text h5 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.admin-list-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.admin-list-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.82rem;
  border-radius: 8px;
}

/* ==========================================================================
   MEDYA SORGULARI (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1150px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
}
@media (max-width: 992px) {
  .hero-container, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 220px);
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .admin-container {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
    gap: 10px;
    padding: 10px 0 20px 0;
  }

  .collage-item:nth-child(even) {
    transform: translateY(10px);
  }
  
  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }

  .logo-text span {
    font-size: 0.75rem;
  }

  .navbar .whatsapp-cta-btn {
    padding: 10px !important;
    border-radius: 50% !important;
  }
  
  .navbar .whatsapp-text {
    display: none;
  }
}
