/* ========================================
   SIIRT FİZYOTERAPİ - ANA STİL DOSYASI
   ======================================== */

/* === CSS RESET & NORMALIZE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* === CSS CUSTOM PROPERTIES === */
:root {
  --primary: #0D9488;
  --primary-dark: #0a7a6e;
  --primary-light: #ccfbf1;
  --secondary: #16A34A;
  --secondary-dark: #15803d;
  --dark: #0F4C3A;
  --light: #F0FDF4;
  --accent: #14B8A6;
  --white: #FFFFFF;

  --text-dark: #1a1a2e;
  --text-medium: #4a5568;
  --text-light: #718096;

  --bg-light: #F8FAFC;
  --bg-section: #F0FDF4;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5.5rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: all 0.3s ease;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: var(--space-3xl) 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-divider {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 0.75rem;
}

.section-divider span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--primary);
}

.section-divider span:nth-child(1) { width: 40px; }
.section-divider span:nth-child(2) { width: 12px; background: var(--secondary); }
.section-divider span:nth-child(3) { width: 6px; background: var(--accent); }

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.45);
}

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

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* === TOP BAR === */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 0.55rem 0;
  font-size: 0.82rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-left i {
  color: var(--accent);
  font-size: 0.85rem;
}

.top-bar-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-center a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s;
}

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

.top-bar-center i {
  color: var(--accent);
  font-size: 0.85rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-social a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}

.top-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon i {
  color: var(--white);
  font-size: 1.3rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.nav-logo-tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  z-index: 100;
  padding: 0.5rem 0;
  animation: dropdownFade 0.2s ease;
}

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

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-medium);
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  color: var(--primary);
  background: var(--primary-light);
  padding-left: 1.5rem;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(13, 148, 136, 0.3);
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
  background: var(--bg-light);
  padding: 5rem 0 4rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(13,148,136,0.2);
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
}

.hero-feature i {
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-floating-cards {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-float-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  min-width: 180px;
}

.hero-float-card:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.float-card-icon.green { background: #dcfce7; color: #16a34a; }
.float-card-icon.teal { background: var(--primary-light); color: var(--primary); }
.float-card-icon.blue { background: #dbeafe; color: #2563eb; }

.float-card-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.float-card-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
}

/* === HİZMETLER === */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,148,136,0.25);
}

.service-card-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.08));
}

.service-card-body {
  padding: 1.25rem;
}

.service-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.service-card-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

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

.service-link:hover {
  color: var(--primary-dark);
  gap: 0.5rem;
}

.services-more {
  text-align: center;
  margin-top: 2.5rem;
}

.services-all-list {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.services-all-list.visible {
  display: grid;
}

.service-mini-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.service-mini-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.service-mini-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-mini-icon i {
  color: var(--primary);
  font-size: 1rem;
}

.service-mini-card:hover .service-mini-icon {
  background: var(--primary);
}

.service-mini-card:hover .service-mini-icon i {
  color: var(--white);
}

.service-mini-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

/* === HAKKIMIZDA === */
.about {
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-img-stats {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  text-align: center;
  min-width: 130px;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.about-content .section-header {
  text-align: left;
}

.about-content .section-divider {
  justify-content: flex-start;
}

.about-text {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.about-check i {
  color: var(--secondary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* === EKİBİMİZ === */
.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13,148,136,0.2);
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--primary-light);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.2);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-card-name {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.team-card-title {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
}

.team-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.team-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.team-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

/* === RANDEVU FORMU === */
.appointment {
  background: var(--bg-section);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
}

.appointment-info .section-header {
  text-align: left;
}

.appointment-info .section-divider {
  justify-content: flex-start;
}

.appointment-benefits {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.benefit-icon i {
  color: var(--primary);
  font-size: 1rem;
}

.benefit-text h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.benefit-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white) !important;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  margin-top: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-cta:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta i { font-size: 1.3rem; }

.appointment-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid #e2e8f0;
}

.form-title {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-title i { color: var(--primary); }

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 0.4rem;
}

.form-group label .required { color: #ef4444; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-control.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.valid {
  border-color: var(--secondary);
}

.form-error-msg {
  display: none;
  font-size: 0.76rem;
  color: #ef4444;
  margin-top: 0.3rem;
}

.form-error-msg.show { display: block; }

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

select.form-control { cursor: pointer; }

.form-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.show { display: block; }

.success-icon {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* === TESTİMONİALS === */
.testimonials {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials .section-label { color: var(--accent); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-desc { color: rgba(255,255,255,0.6); }
.testimonials .section-divider span { background: var(--accent); }
.testimonials .section-divider span:nth-child(2) { background: rgba(255,255,255,0.3); }
.testimonials .section-divider span:nth-child(3) { background: rgba(255,255,255,0.15); }

.carousel-wrapper { position: relative; overflow: hidden; }

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-inner {
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  left: 1.75rem;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.author-tag {
  font-size: 0.76rem;
  color: var(--accent);
  margin-top: 0.1rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 22px;
}

/* === GALERİ === */
.gallery {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.72), rgba(22, 163, 74, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 90vw;
}

.lightbox-content img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}

.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

/* === FİYATLAR === */
.pricing {
  background: var(--white);
}

.pricing-note {
  text-align: center;
  background: var(--primary-light);
  border: 1px solid rgba(13,148,136,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--dark);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-note i { color: var(--primary); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid #e2e8f0;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.18);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.pricing-icon i { font-size: 1.5rem; color: var(--primary); }

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0.5rem 0 0.2rem;
}

.pricing-price small {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-medium);
  padding: 0.3rem 0;
  border-bottom: 1px dashed #f1f5f9;
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--secondary); flex-shrink: 0; }

.pricing-footer-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-footer-note i { color: var(--primary); }

/* === İLETİŞİM === */
.contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 2rem;
}

.contact-col-title {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(13, 148, 136, 0.25);
}

.contact-icon i { color: var(--white); font-size: 1rem; }

.contact-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.contact-detail a,
.contact-detail p {
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s;
}

.contact-detail a:hover { color: var(--primary); }

.contact-map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.map-link:hover {
  background: var(--primary);
  color: var(--white);
}

.google-review-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.google-review-box h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.google-logo {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.google-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.google-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #4285F4;
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.google-btn:hover {
  background: #357ae8;
  transform: translateY(-2px);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
}

.footer-main {
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon i { color: var(--white); font-size: 1.2rem; }

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  display: block;
  font-weight: 400;
}

.footer-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '›';
  font-weight: bold;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-copy a {
  color: var(--accent);
  transition: color 0.3s;
}

.footer-copy a:hover { color: var(--white); }

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  text-decoration: none;
}

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

/* === FLOATING BUTTONS === */
.floating-whatsapp {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 900;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
  border-right: 0;
}

.floating-whatsapp a:hover .wa-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* === SCROLL REVEAL === */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal="fade-up"] { transform: translateY(36px); }
[data-reveal="fade-left"] { transform: translateX(-36px); }
[data-reveal="fade-right"] { transform: translateX(36px); }
[data-reveal="zoom-in"] { transform: scale(0.92); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="350"] { transition-delay: 350ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="450"] { transition-delay: 450ms; }
[data-delay="500"] { transition-delay: 500ms; }
[data-delay="600"] { transition-delay: 600ms; }
[data-delay="700"] { transition-delay: 700ms; }
[data-delay="800"] { transition-delay: 800ms; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .hero-floating-cards { right: -0.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
  :root {
    --space-3xl: 4rem;
  }

  .top-bar-left { display: none; }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 76, 58, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    padding: 2rem;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.75rem 1.25rem;
    color: var(--white) !important;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    width: 200px;
  }

  .nav-dropdown-menu { display: none !important; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero { padding: 3.5rem 0 3rem; min-height: auto; }
  .hero-img { height: 380px; }
  .hero-floating-cards { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 1rem; }
  .hero-float-card { min-width: 0; flex: 1; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-main { height: 340px; }
  .about-img-stats { right: -0.5rem; bottom: -1rem; }

  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .appointment-form-card { max-width: 520px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-all-list { grid-template-columns: repeat(3, 1fr); }

  .team-grid { max-width: 100%; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }

  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 3rem; }

  .top-bar-center { display: none; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 260px; justify-content: center; }
  .hero-features { grid-template-columns: 1fr; }

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

  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }

  .team-grid { grid-template-columns: 1fr; max-width: 340px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 576px) {
  .container { padding: 0 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .services-all-list { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: 1fr; }

  .testimonial-inner { padding: 1.75rem 1.25rem; }
  .testimonial-slide { padding: 0; }

  .pricing-grid { max-width: 100%; }

  .appointment-form-card { padding: 1.5rem 1.1rem; }

  .hero-floating-cards { display: none; }
  .hero-img { height: 280px; }

  .about-img-stats { display: none; }
}

/* === PRINT === */
@media print {
  .top-bar,
  .navbar,
  .floating-whatsapp,
  .back-to-top,
  .hamburger,
  .carousel-controls,
  .lightbox { display: none !important; }

  body { color: #000; background: #fff; }

  .hero {
    min-height: auto;
    background: none !important;
    padding: 1.5rem 0;
  }

  .testimonials { background: #f0f0f0 !important; }
  .footer { background: #eee !important; color: #000 !important; }
  .section-padding { padding: 1.5rem 0; }

  [data-reveal] { opacity: 1 !important; transform: none !important; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
