/* =============================================
   Toki Ucuzluk Pazarı — Ana Stil Dosyası
   Renk: Kırmızı, Beyaz, Açık Gri, Antrasit
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --red-light: #EF5350;
  --red-soft: rgba(211, 47, 47, 0.08);
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-500: #9E9E9E;
  --gray-700: #616161;
  --anthracite: #2C2C2C;
  --anthracite-dark: #1A1A1A;
  --text: #333333;
  --text-muted: #666666;
  --font: 'DM Sans', system-ui, sans-serif;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--gray-100); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--anthracite);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
}

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

.section-header .section-desc { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.35);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn-dark {
  background: var(--anthracite);
  color: var(--white);
  border-color: var(--anthracite);
}

.btn-dark:hover {
  background: var(--anthracite-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

/* ---- LOADER ---- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--anthracite);
}

.loader-logo span { color: var(--red); }

.loader-bar {
  width: 180px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 3px;
  animation: loaderFill 1.2s ease forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

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

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.header-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled .header-bg {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 4%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--anthracite);
}

.logo-main span { color: var(--red); }

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-desktop {
  display: flex;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--red);
  background: var(--red-soft);
}

.header-cta {
  display: none;
  padding: 0.55rem 1.25rem;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.header-cta:hover {
  background: var(--red-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--anthracite);
  border-radius: 2px;
  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); }

/* Mobile Nav */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-mobile-overlay.open { opacity: 1; visibility: visible; }

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

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

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.nav-mobile-close {
  font-size: 1.75rem;
  color: var(--anthracite);
  line-height: 1;
}

.nav-mobile-links {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.nav-mobile-links a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid transparent;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  color: var(--red);
  background: var(--red-soft);
  border-left-color: var(--red);
}

.nav-mobile-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.nav-mobile-footer .btn { width: 100%; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--anthracite-dark) 0%, var(--anthracite) 50%, #3d3d3d 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(211, 47, 47, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(211, 47, 47, 0.15) 0%, transparent 40%);
}

/* Görsel eklenecek: assets/images/hero.jpg */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
  opacity: 0.25;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(211, 47, 47, 0.2);
  border: 1px solid rgba(211, 47, 47, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffcdd2;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero-title .highlight { color: var(--red-light); }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--anthracite-dark), var(--anthracite));
  overflow: hidden;
}

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

.page-hero-content { position: relative; z-index: 2; }

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red-light); }

.page-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 550px;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(211, 47, 47, 0.2);
}

.category-card-img {
  position: relative;
  height: 180px;
  background: var(--gray-100);
  overflow: hidden;
}

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

.category-card:hover .category-card-img img { transform: scale(1.06); }

.category-card-img .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.category-card-body { padding: 1.5rem; }

.category-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.5rem;
}

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

.category-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
}

.category-card-link:hover { color: var(--red-dark); }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--red-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.5rem;
}

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

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(211, 47, 47, 0.15);
}

.review-stars {
  color: #FFB300;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--anthracite);
}

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

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 2rem;
}

.rating-badge .score {
  font-size: 1.5rem;
  color: var(--red);
}

/* ---- CONTACT PREVIEW ---- */
.contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--anthracite);
  font-weight: 500;
}

.contact-map-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact-map-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-stat {
  padding: 1.25rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
}

.about-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- SERVICE CARDS ---- */
.service-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--red-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.35rem;
}

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

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ---- CONTACT PAGE ---- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-card:hover { background: var(--red-soft); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-card p, .contact-card a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--anthracite);
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.map-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-top: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.map-full iframe { width: 100%; height: 100%; border: 0; }

/* ---- CTA ---- */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 20px 20px;
}

.cta-content {
  position: relative;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-section .btn-outline {
  border-color: var(--white);
}

.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--anthracite-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo-main { color: var(--white); }
.footer .logo-sub { color: rgba(255, 255, 255, 0.5); }

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col a:hover { color: var(--red-light); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- FLOAT BUTTONS ---- */
.float-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.float-btn:hover {
  transform: scale(1.1);
}

.whatsapp-float { background: #25D366; }
.phone-float { background: var(--red); }

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- RESPONSIVE ---- */
@media (min-width: 901px) {
  .header-cta { display: inline-flex; }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .contact-preview,
  .about-grid,
  .contact-page-grid { grid-template-columns: 1fr; }

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

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }

  .hero-actions .btn { width: 100%; }

  .hero-stats { gap: 1.25rem; }

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

  .float-buttons {
    bottom: 1rem;
    right: 1rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .about-stats { grid-template-columns: 1fr; }
}
