/* ========================================
   TalleresACG - Estilos Globales
   Colores: Negro + Naranja corporativo
   ======================================== */

/* Reset & Variables */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #FF6B00;
  --orange-dark: #E05E00;
  --orange-light: #FF8A33;
  --black: #1A1A1A;
  --black-soft: #2D2D2D;
  --dark-gray: #3A3A3A;
  --gray: #6B6B6B;
  --light-gray: #E8E8E8;
  --lightest: #F5F5F5;
  --white: #FFFFFF;
  --success: #28a745;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--white);
  color: var(--black-soft);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--orange);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background-color: var(--white);
  padding: 4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--white);
}

.logo-slogan {
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--orange);
  border-radius: 2px;
}

.cta-link {
  background-color: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 0.6rem 1.5rem !important;
}

.cta-link:hover {
  background-color: var(--orange-dark) !important;
  transform: translateY(-2px);
}

.cta-link.active::after {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-logo-image {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 18px;
  background-color: var(--white);
  padding: 8px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-highlight {
  color: var(--orange);
  display: block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-icon {
  font-size: 1.5rem;
}

/* ========================================
   PAGE HEADER (Subpages)
   ======================================== */
.page-header {
  position: relative;
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--black);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-accent {
  background-color: var(--lightest);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-dark .section-tag {
  background-color: rgba(255, 107, 0, 0.2);
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ========================================
   SERVICES GRID (Home)
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--light-gray);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-icon svg,
.service-detail-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  margin: 0 auto;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ========================================
   WHY US
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-item {
  padding: 2rem;
  border-left: 4px solid var(--orange);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: var(--transition);
}

.why-item:hover {
  background-color: rgba(255, 107, 0, 0.1);
}

.why-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.why-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.why-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-section .btn-primary {
  background-color: var(--black);
  border-color: var(--black);
}

.cta-section .btn-primary:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ========================================
   QUICK INFO
   ======================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  text-align: center;
  padding: 2rem;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--orange);
}

.info-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.info-card a {
  color: inherit;
}

.info-card a:hover {
  color: var(--orange);
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
  background-color: var(--lightest);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faq-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.faq-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.faq-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ========================================
   SERVICE DETAILS (Services page)
   ======================================== */
.service-detail {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  flex-direction: row-reverse;
}

.service-detail-icon {
  font-size: 5rem;
  flex: 0 0 200px;
  min-width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--dark-gray));
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.service-detail-content {
  flex: 1;
  min-width: 0;
}

.service-detail.reverse .service-detail-content {
  flex: 0 1 500px;
}

.service-detail-content h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.service-detail-content > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--black-soft);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Brands */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.brand-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-item:hover {
  border-color: var(--orange);
  color: var(--orange);
  background-color: rgba(255, 107, 0, 0.1);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text .section-tag {
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--black), var(--dark-gray));
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.branded-card {
  padding: 2rem;
  text-align: center;
}

.about-logo-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background-color: var(--white);
  border-radius: 24px;
  padding: 14px;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.4rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  display: inline;
}

.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  display: inline;
}

.stat-label {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Commitment */
.commitment {
  text-align: center;
}

.commitment h2 {
  margin-bottom: 2rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  background-color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}

.commitment-item .check {
  color: var(--orange);
  font-size: 1.2rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black-soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background-color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--orange);
}

.checkbox-group a {
  color: var(--orange);
  text-decoration: underline;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-message.is-error {
  background-color: rgba(220, 53, 69, 0.08);
  color: #a61d2d;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.form-message.is-warning {
  background-color: rgba(255, 193, 7, 0.12);
  color: #7a5200;
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.contact-extra-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-methods,
.footer-contact-methods {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem;
  margin-top: 0.75rem;
  align-items: flex-start;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(255, 107, 0, 0.12);
  color: var(--black-soft);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  min-width: 220px;
  width: fit-content;
}

.contact-method:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 107, 0, 0.18);
  color: var(--orange-dark);
}

.contact-method-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  flex: 0 0 22px;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

.contact-method-icon-image {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex: 0 0 22px;
  object-fit: contain;
  display: block;
  overflow: hidden;
}

.contact-method-static {
  cursor: default;
}

.contact-method-static:hover {
  transform: none;
  color: var(--black-soft);
}

.schedule-detail p,
.footer-hours p {
  margin-bottom: 0.35rem;
  line-height: 1.55;
}

.schedule-detail p:last-child,
.footer-hours p:last-child {
  margin-bottom: 0;
}

.schedule-detail strong,
.footer-hours strong {
  color: var(--black);
}

/* Sidebar */
.info-sidebar-card {
  background-color: var(--lightest);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.info-sidebar-card.dark {
  background-color: var(--black);
  color: var(--white);
}

.info-sidebar-card.dark h3 {
  color: var(--orange);
}

.info-sidebar-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.info-sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

.cita-includes {
  list-style: none;
}

.cita-includes li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--black-soft);
}

/* Map */
.map-section {
  width: 100%;
}

.map-embed-wrapper {
  position: relative;
  min-height: 420px;
}

.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.map-overlay-card {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 32px));
  background-color: rgba(26, 26, 26, 0.92);
  color: rgba(255, 255, 255, 0.82);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.map-overlay-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.map-overlay-card p {
  margin-bottom: 1rem;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--lightest);
  border-radius: var(--radius-lg);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--success);
  margin-bottom: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.logo-image-footer {
  width: 44px;
  height: 44px;
}

.footer-logo .logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--orange);
  border-radius: 2px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer a {
  color: inherit;
}

.footer a:hover {
  color: var(--orange);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.footer .footer-contact-methods {
  margin-top: 0.9rem;
}

.footer .contact-method {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer .contact-method:hover {
  background-color: rgba(255, 107, 0, 0.2);
  color: var(--white);
}

.footer .contact-method-static:hover {
  color: var(--white);
}

.footer-hours {
  margin-top: 0.9rem;
}

.footer-hours strong {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background-color: var(--black);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 3px solid var(--orange);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem;
  }

  /* Hero */
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Service details */
  .service-detail,
  .service-detail.reverse {
    flex-direction: column;
  }

  .service-detail-icon {
    min-width: unset;
    width: 100%;
    height: 150px;
  }

  /* About */
  .about-intro {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .map-overlay-card {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  /* Page header */
  .page-header h1 {
    font-size: 2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-logo-badge {
    width: 96px;
    height: 96px;
  }

  .hero-logo-image {
    width: 70px;
    height: 70px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
