/* =========================================
   BELLA STUDIO — GÜZELLIK SALONU CSS
   Şık, beyaz, sade ve profesyonel tasarım
   ========================================= */

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

:root {
  --white:       #ffffff;
  --off-white:   #faf8f6;
  --cream:       #f4efe9;
  --gold:        #c9a96e;
  --gold-light:  #e8d5b4;
  --dark:        #1a1614;
  --dark-mid:    #2e2925;
  --text:        #3d3530;
  --text-light:  #7a6f68;
  --border:      #eae4de;
  --shadow-sm:   0 2px 16px rgba(0,0,0,.06);
  --shadow-md:   0 8px 40px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-lg:   24px;
  --transition:  all .35s cubic-bezier(.4,0,.2,1);
  --nav-h:       80px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

em { font-family: 'Cormorant Garamond', serif; font-style: italic; }

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

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

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--white); text-decoration: none;
  transition: var(--transition);
}
.navbar.scrolled .logo { color: var(--dark); }
.logo-icon { color: var(--gold); font-size: 1.1rem; }
.logo-text { color: var(--dark); }
.logo-text em { font-style: italic; color: var(--gold); }
/* Scrolled olmadan navbar'da İrem metni siyah kalır */
.navbar:not(.scrolled) .logo .logo-text { color: #000; }
.navbar.scrolled .logo .logo-text { color: var(--dark); }

.nav-links {
  display: flex; gap: 36px; margin-left: auto;
}
.nav-close { display: none; }
.nav-links a {
  font-size: .8rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--dark); }

.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px; font-size: .78rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--dark); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   MOBİL MENÜ
   ============================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9000;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity .35s ease;
  cursor: pointer;
}
.mobile-menu.open .mobile-backdrop {
  opacity: 1;
}
.mobile-nav {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--white);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 24px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.mobile-menu.open .mobile-nav {
  transform: translateX(0);
}
.mobile-close {
  align-self: flex-end;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: var(--transition);
}
.mobile-close:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); padding-left: 6px; }

/* ============================
   HERO SLIDER
   ============================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden;
}
.slider { width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 1s ease;
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(60,60,60,.68) 0%, rgba(90,90,90,.40) 100%);
}
.light-overlay { background: linear-gradient(135deg, rgba(80,80,80,.52) 0%, rgba(110,110,110,.30) 100%); }
.dark-grad { background: rgba(70,70,70,.45); }

.slide-content {
  position: relative; z-index: 2; padding: 0 60px;
  max-width: 700px; margin-left: 60px;
  animation: slideIn .9s ease forwards;
}
.dark-content h1, .dark-content .slide-desc {
  color: var(--white);
}
.dark-content .slide-tag {
  color: var(--gold);
}

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

.slide-tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); padding: 6px 16px;
  border-radius: 50px; margin-bottom: 24px;
}
.slide-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.slide-content h1 em { font-weight: 500; color: var(--gold-light); }
.slide-desc {
  font-size: .95rem; color: rgba(255,255,255,.78);
  max-width: 440px; margin-bottom: 36px; line-height: 1.8;
}

.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; padding: 14px 32px;
  background: var(--gold); color: var(--white);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 50px; transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.3); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block; padding: 14px 32px;
  border: 2px solid rgba(255,255,255,.5); color: var(--white);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 50px; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.dark-outline { border-color: var(--dark); color: var(--dark); }
.dark-outline:hover { background: var(--dark); color: var(--white); }

/* Slider Arrows */
.slider-btn {
  position: absolute; top: 50%; z-index: 20;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); color: var(--white);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; pointer-events: auto;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); }
.prev { left: 32px; }
.next { right: 32px; }

/* Slider Dots */
.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 10px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  background: var(--dark); padding: 40px 24px;
}
.stats-container {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 48px;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600; color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-top: 6px;
}
.stat-divider {
  width: 1px; height: 50px; background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ============================
   SECTION SHARED
   ============================ */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-header h2, .about-content h2, .contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--dark); line-height: 1.2;
}
.section-divider {
  width: 48px; height: 2px; background: var(--gold);
  margin: 20px auto 0;
}
.section-divider.left { margin: 20px 0 0; }

/* ============================
   HİZMETLER
   ============================ */
.services { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 40px 32px; border-radius: var(--radius-lg);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform .4s ease; transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); border-radius: 14px;
  color: var(--gold);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500; color: var(--dark);
  margin-bottom: 12px;
}
.service-card p { font-size: .87rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.service-link {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.service-link:hover { gap: 14px; }

/* ============================
   HAKKIMIZDA
   ============================ */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-card.main { height: 560px; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--white);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,169,110,.4);
  border: 4px solid var(--white);
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; line-height: 1;
}
.badge-text { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; text-align: center; line-height: 1.4; }

.about-content { padding-right: 20px; }
.about-text { font-size: .9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.about-features {
  margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px;
}
.about-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: .87rem; color: var(--text);
}
.feat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ============================
   GALERİ
   ============================ */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,10,8,.70) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}

/* ============================
   YORUMLAR
   ============================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 36px 32px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: .88rem; color: var(--text-light); line-height: 1.8; flex: 1; font-style: italic; }
.testimonial-author {
  display: flex; align-items: center; gap: 14px; margin-top: 8px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .88rem; color: var(--dark); }
.testimonial-author span { font-size: .75rem; color: var(--text-light); }

/* ============================
   İLETİŞİM
   ============================ */
.contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.contact-items { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: .9rem; color: var(--dark); line-height: 1.6; }

.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.social-btn.whatsapp:hover { background: #25d366; border-color: #25d366; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500; color: var(--dark);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Montserrat', sans-serif;
  font-size: .88rem; color: var(--dark); background: var(--white);
  transition: var(--transition); outline: none; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.12); }
.form-group select { appearance: none; cursor: pointer; }

.form-success {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: var(--radius); color: #2e7d32; font-size: .88rem;
  text-align: center;
}

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand > p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 260px; }
.footer-links h4, .footer-contact h4 {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  font-size: .87rem; color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { font-size: .87rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-bottom {
  text-align: center; padding: 24px;
  color: rgba(255,255,255,.28); font-size: .78rem; letter-spacing: .08em;
}

/* ============================
   FLOATING BUTTONS
   ============================ */
.floating-btns {
  position: fixed; bottom: 32px; right: 28px;
  z-index: 900; display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: var(--transition);
}
.float-btn svg { width: 22px; height: 22px; }
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-btn.wa { background: #25d366; color: var(--white); }
.float-btn.phone { background: var(--gold); color: var(--white); }
.float-btn.insta {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: var(--white);
}

/* ============================
   RESPONSIVE — TABLET (≤1024px)
   ============================ */
@media (max-width: 1024px) {

  /* Nav → hamburger menüye geç */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Hero slide content */
  .slide-content { padding: 0 32px; margin-left: 24px; max-width: 90%; }

  /* About badge — negatif taşmayı engelle */
  .about-badge { right: 0; bottom: -16px; }

  /* Layout fixes */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-image-wrap { max-width: 520px; margin: 0 auto; }
  .about-content { padding-right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stat-item { padding: 16px 28px; }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
}

/* ============================
   RESPONSIVE — MOBILE (≤768px)
   ============================ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  section { padding: 72px 0; }

  /* Hero */
  .slide-content { padding: 0 20px; margin-left: 0; max-width: 100%; }
  .slide-content h1 { font-size: 2.4rem; }
  .slide-desc { max-width: 100%; }
  .slider-btn { width: 40px; height: 40px; font-size: .9rem; }
  .prev { left: 12px; } .next { right: 12px; }

  /* Stats */
  .stats-container { gap: 0; flex-wrap: wrap; justify-content: center; }
  .stat-item { padding: 16px 20px; }
  .stat-divider { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* About */
  .about-img-card.main { height: 340px; }
  .about-badge { right: 8px; bottom: -8px; width: 90px; height: 90px; }
  .badge-num { font-size: 1.7rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 170px);
  }
  .gallery-item.large { grid-column: span 2; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Floats */
  .floating-btns { bottom: 20px; right: 16px; }
  .float-btn { width: 46px; height: 46px; }
}

/* ============================
   RESPONSIVE — SMALL PHONE (≤480px)
   ============================ */
@media (max-width: 480px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .slide-content h1 { font-size: 2rem; }
  .slide-desc { font-size: .85rem; }
  .slide-tag { font-size: .65rem; padding: 5px 12px; }
  .slide-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline { text-align: center; padding: 12px 20px; font-size: .75rem; }

  /* Gallery — tek kolon */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }

  /* Stats */
  .stat-number { font-size: 2.2rem; }
  .stat-item { padding: 14px 16px; }

  /* Contact */
  .contact-form-wrap { padding: 20px 14px; }

  /* Footer */
  .footer-inner { gap: 24px; }
  .footer-brand > p { max-width: 100%; }

  /* About */
  .about-img-card.main { height: 280px; }
}
