/* ============================================================
   TALLERES RAMOS – Main Stylesheet
   Clean, professional, trustworthy automotive design
   ============================================================ */

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

:root {
  /* Color palette */
  --primary: #E85D04;
  --primary-dark: #C94B00;
  --primary-light: #FF7A35;
  --secondary: #1B2A4A;
  --secondary-deep: #0D1B32;
  --secondary-mid: #243454;
  --accent: #F4A54E;
  --white: #FFFFFF;
  --off-white: #F8F9FE;
  --light-gray: #EEF0F7;
  --gray: #8A93A8;
  --text-dark: #0D1B32;
  --text-body: #3A4460;
  --text-muted: #6B7595;
  --border: rgba(0,0,0,0.08);
  --card-shadow: 0 4px 24px rgba(13, 27, 50, 0.08);
  --card-shadow-hover: 0 12px 40px rgba(13, 27, 50, 0.15);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 96px;
  --container-max: 1200px;

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border radius */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-pad) 0;
}

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.1);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(232, 93, 4, 0.2);
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: var(--accent);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.section-desc.light { color: rgba(255,255,255,0.7); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.45);
}

.btn-primary.large {
  font-size: 17px;
  padding: 16px 36px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: var(--secondary);
  color: var(--white);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(13, 27, 50, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 24px;
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

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

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-left: 8px;
}

.nav-cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

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

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 50, 0.92) 0%,
    rgba(13, 27, 50, 0.75) 50%,
    rgba(232, 93, 4, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 120px 24px 80px;
  margin: 0 auto 0 max(24px, calc(50% - 600px));
  animation: fadeUp 0.9s ease both;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-star {
  color: var(--accent);
  font-size: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

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

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-icon {
  font-size: 18px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s ease infinite;
}

.scroll-arrow {
  font-size: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- DARK SECTION ---- */
.dark-section {
  background: var(--secondary-deep);
}

/* ---- ABOUT ---- */
.about {
  background: var(--off-white);
}

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

.about-content .section-tag {
  margin-bottom: 24px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-text strong {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
}

.feature-text span {
  color: var(--text-muted);
  font-size: 14px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.about-card.accent {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.about-card.accent h3,
.about-card.accent p {
  color: var(--white);
}

.about-card.accent p {
  opacity: 0.85;
}

.about-card-icon {
  font-size: 28px;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}

.service-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232, 93, 4, 0.5);
  transform: translateY(-4px);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(232, 93, 4, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

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

.service-icon {
  font-size: 28px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.services-cta {
  text-align: center;
}

/* ---- REVIEWS ---- */
.reviews {
  background: var(--off-white);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.rating-stars {
  color: #FFB800;
  font-size: 24px;
  letter-spacing: 2px;
}

.rating-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
}

.rating-total {
  font-size: 15px;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.review-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(232, 93, 4, 0.15);
}

.review-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 93, 4, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.review-stars {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  quotes: "\201C" "\201D";
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-info strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.reviewer-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- BOOKING ---- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.booking-desc {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.booking-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.5;
}

.bfeat-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.phone-link-inline {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hours-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.hours-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.hours-time {
  color: var(--white);
  font-weight: 600;
}

/* ---- BOOKING FORM ---- */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 13px 16px;
  transition: all var(--transition);
  outline: none;
  resize: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7595' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #E53E3E;
  font-weight: 500;
}

.field-error.visible {
  display: block;
}

.btn-submit {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  padding: 18px 32px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.35);
  width: 100%;
}

.btn-submit:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.45);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ---- BOOKING SUCCESS ---- */
.booking-success {
  text-align: center;
  padding: 20px 0;
  animation: fadeUp 0.5s ease both;
}

.success-icon {
  font-size: 56px;
  margin-bottom: 20px;
  animation: successBounce 0.6s ease both;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.booking-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.booking-success p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.success-summary {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 14px !important;
  color: var(--text-muted) !important;
  margin-bottom: 24px !important;
}

.booking-success .btn-primary {
  margin: 0 auto 16px;
  justify-content: center;
}

.booking-success .btn-outline {
  color: var(--text-muted);
  border-color: var(--light-gray);
}

.booking-success .btn-outline:hover {
  background: var(--light-gray);
  color: var(--text-dark);
}

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

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hours-table {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hours-row-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.hours-row-full:last-child { border-bottom: none; }

.hours-row-full.open {
  background: var(--white);
}

.hours-row-full.closed {
  background: var(--off-white);
  opacity: 0.7;
}

.hday {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
  min-width: 120px;
}

.htime-blocks {
  display: flex;
  gap: 12px;
}

.htime-block {
  background: rgba(232, 93, 4, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.hclosed {
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
}

.hours-contact-card {
  background: var(--secondary);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.hcc-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.hours-contact-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.hours-contact-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hours-contact-card .btn-primary {
  width: 100%;
  justify-content: center;
}

.hcc-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 28px 0;
}

.hcc-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

/* ---- LOCATION ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.location-detail p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.65;
}

.phone-link {
  color: var(--accent) !important;
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}

.phone-link:hover { opacity: 0.8; }

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.map-container iframe {
  display: block;
  filter: grayscale(20%);
}

/* ---- CONTACT ---- */
.contact {
  background: var(--off-white);
}

.contact-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 40px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(13, 27, 50, 0.2);
  margin-bottom: 32px;
}

.phone-button:hover {
  background: var(--secondary-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(13, 27, 50, 0.3);
}

.phone-button-icon {
  font-size: 32px;
  animation: ring 2s ease infinite;
}

@keyframes ring {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-12deg); }
  94% { transform: rotate(12deg); }
  96% { transform: rotate(-8deg); }
  98% { transform: rotate(8deg); }
}

.phone-button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phone-button-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.phone-button-number {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-alt p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--secondary-deep);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-stars {
  color: #FFB800;
  font-size: 16px;
}

.footer-rating > span:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-phone {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-phone:hover { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

/* ---- FAB CALL BUTTON ---- */
.fab-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(232, 93, 4, 0.5);
  transition: all var(--transition);
  z-index: 999;
  animation: fabPulse 3s ease infinite;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(232, 93, 4, 0.5); }
  50% { box-shadow: 0 6px 36px rgba(232, 93, 4, 0.8), 0 0 0 8px rgba(232, 93, 4, 0.1); }
}

.fab-call:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  animation: none;
}

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

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { flex-direction: row; flex-wrap: wrap; }
  .about-card { flex: 1 1 200px; }

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

  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-info .hours-card { display: none; }

  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .review-card.featured { transform: none; }

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

  .location-grid { grid-template-columns: 1fr; gap: 40px; }

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

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,27,50,0.98); backdrop-filter: blur(16px); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 8px; display: block; }
  .nav-cta-btn { margin-left: 0; justify-content: center; text-align: center; }
  .hamburger { display: flex; }

  .hero-content { margin: 0 auto; padding: 100px 24px 80px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px; }

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

  .hours-contact-card { padding: 32px 24px; }

  .phone-button { width: 100%; flex-direction: column; gap: 8px; align-items: center; padding: 24px; }
  .phone-button-text { align-items: center; }
  .phone-button-number { font-size: 24px; }

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

  .htime-blocks { flex-direction: column; gap: 6px; }

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

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .section-title { font-size: 26px; }
  .fab-call { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 22px; }
}
