/* ===== VARIABLES ===== */
:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #ff1a1a;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --white: #ffffff;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  touch-action: pan-x pan-y;
}
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.3);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s;
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 2rem 4rem;
  background:
    linear-gradient(135deg, rgba(204,0,0,0.15) 0%, rgba(10,10,10,0) 50%, rgba(204,0,0,0.08) 100%),
    var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(204,0,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(204,0,0,0.08) 0%, transparent 60%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== SALON SLİDER ===== */
.salon-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  line-height: 0;
}

.salon-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.salon-slide {
  min-width: 100%;
}

.salon-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

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

.slider-prev { left: 1.2rem; }
.slider-next { right: 1.2rem; }

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .salon-slide img { height: 240px; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.85rem; }
}

/* ===== GALERİ ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}

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

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(204,0,0,0);
  transition: background 0.3s;
}

.gallery-item:hover::after { background: rgba(204,0,0,0.12); }

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

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:first-child {
    grid-column: 1 / -1;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge { margin-bottom: 1.5rem; }

.hero-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
}

.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.hero-slider-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 5;
}

.hero-slider-btn:hover { background: var(--red); border-color: var(--red); }
.hero-slider-btn.prev { left: 0.8rem; }
.hero-slider-btn.next { right: 0.8rem; }

.hero-slider-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.hero-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.hero-slider-dot.active { background: var(--red); transform: scale(1.3); }

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-badge { display: inline-block; }
  .hero-slider { height: 300px; }
}

@media (max-width: 480px) {
  .hero-slider { height: 240px; }
}

.hero-badge {
  display: inline-block;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.4);
  color: var(--red-light);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.hero h1 span { color: var(--red); }

.hero-slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gray-light);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204,0,0,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

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

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

/* ===== SECTION BASE ===== */
section { padding: 5rem 2rem; }

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

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

.section-tag {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header h2 span { color: var(--red); }

.section-header p {
  color: var(--gray);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1rem auto 0;
}

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

.card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.card:hover {
  border-color: rgba(204,0,0,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(204,0,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ===== HOURS SECTION ===== */
.hours-section { background: var(--dark); }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.hours-table {
  background: var(--dark2);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.hours-table table { width: 100%; border-collapse: collapse; }

.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  color: var(--gray-light);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--white);
  font-weight: 500;
}

.hours-table tr.closed td { color: var(--gray) !important; }
.hours-table tr.closed td:last-child { color: var(--red) !important; }

.hours-table tr.today { background: rgba(204,0,0,0.08); }

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-card i {
  color: var(--red);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.info-card p { color: var(--white); font-size: 0.95rem; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(0,0,0,0.2) 0%, transparent 60%);
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-band .btn-whatsapp {
  background: var(--white);
  color: var(--red);
}

.cta-band .btn-whatsapp:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--gray); font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-contact li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===== PAGE HERO (iç sayfalar) ===== */
.page-hero {
  padding: 130px 2rem 60px;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(204,0,0,0.1), transparent),
    var(--black);
  border-bottom: 1px solid rgba(204,0,0,0.2);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-hero h1 span { color: var(--red); }

.page-hero p { color: var(--gray); margin-top: 0.75rem; font-size: 1.05rem; }

/* ===== HİZMETLER DETAY ===== */
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 2.5rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(204,0,0,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card .card-icon { width: 64px; height: 64px; font-size: 1.8rem; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-card p { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.8; }

.feature-list { margin-bottom: 2rem; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-light);
  font-size: 0.95rem;
  padding: 0.4rem 0;
}

.feature-list li i { color: var(--red); font-size: 0.8rem; }

/* ===== İLETİŞİM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-wrapper {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 2rem;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

.form-group textarea { resize: vertical; min-height: 120px; }

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

.contact-info-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.3s;
}

.contact-info-card:hover { border-color: rgba(204,0,0,0.3); }

.contact-info-card .icon {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-info-card p, .contact-info-card a {
  color: var(--white);
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: 1rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 250px;
  display: block;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(204,0,0,0.2);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex !important; }
  .nav-logo img { height: 38px; }

  .hero {
    min-height: 100svh;
    padding: 90px 1.2rem 3rem;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .footer-brand { grid-column: 1 / -1; }

  section { padding: 3rem 1.2rem; }

  .page-hero { padding: 110px 1.2rem 40px; }

  .cta-band { padding: 3rem 1.2rem; }

  .whatsapp-float {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .service-card { padding: 1.8rem; }

  .contact-form-wrapper { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .btn { padding: 0.85rem 1.5rem; font-size: 0.95rem; }
  .section-header h2 { font-size: 1.8rem; }
  .hours-table td { padding: 0.75rem 1rem; font-size: 0.9rem; }
  .info-card { padding: 1.2rem; }
  .navbar { padding: 0 1.2rem; }
}
