/* ==============================
   MARIACHI EL 7 MACHOS — STYLES
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary:    #0F3D2E;
  --primary-light: #1A5C44;
  --secondary:  #1F6F5C;
  --accent:     #8C1C13;
  --accent-light: #B02318;
  --background: #F5F2EC;
  --surface:    #FFFFFF;
  --dark:       #1A1A1A;
  --text:       #2B2B2B;
  --text-muted: #6B6B6B;
  --border:     rgba(15,61,46,0.10);
  --shadow-sm:  0 2px 12px rgba(15,61,46,0.06);
  --shadow-md:  0 8px 32px rgba(15,61,46,0.10);
  --shadow-lg:  0 20px 60px rgba(15,61,46,0.14);
  --radius:     14px;
  --radius-lg:  24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--background); color: var(--text); overflow-x: hidden; }

h1,h2,h3,h4,h5,h6 { font-family: 'Cinzel', serif; }

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

.scale-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.scale-up.visible { opacity: 1; transform: scale(1); }

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

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

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

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(15,61,46,0.07); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px; background: var(--primary); border-radius: 2px;
}

.nav-cta {
  background: var(--primary); color: #fff !important; border-radius: 10px;
  padding: 10px 20px !important; font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(15,61,46,0.25);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { background: var(--primary-light) !important; transform: scale(1.03) !important; box-shadow: 0 6px 24px rgba(15,61,46,0.35) !important; }

/* Mobile Menu */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border-radius: 8px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: absolute; top: 72px; left: 0; width: 100%;
  background: rgba(245,242,236,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 12px 16px; border-radius: 10px; font-weight: 500;
  color: var(--text); text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(15,61,46,0.08); color: var(--primary); }
.mobile-menu .mob-cta {
  margin-top: 8px; background: var(--primary); color: #fff !important;
  text-align: center; border-radius: 10px; font-weight: 700;
}
.mobile-menu .mob-cta:hover { background: var(--primary-light) !important; }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; border-radius: 12px;
  padding: 14px 28px; font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 20px rgba(15,61,46,0.28);
}
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 8px 28px rgba(15,61,46,0.38); }

.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 20px rgba(140,28,19,0.28);
}
.btn-accent:hover { background: var(--accent-light); box-shadow: 0 8px 28px rgba(140,28,19,0.38); }

.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; border-radius: 10px; }
.btn-lg { padding: 18px 36px; font-size: 1.125rem; border-radius: 14px; }

.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.30);
}
.btn-wa:hover { background: #20b558; box-shadow: 0 8px 28px rgba(37,211,102,0.42); }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: 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-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.85) 0%, rgba(10,10,10,0.50) 50%, rgba(15,61,46,0.20) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 860px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px; padding: 8px 20px; margin-bottom: 28px;
  animation: slideDown 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #25D366; }
.hero-title {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  color: #fff; line-height: 1.08; letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: slideUp 1s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 300;
  color: rgba(255,255,255,0.80); line-height: 1.7;
  max-width: 580px; margin: 0 auto 40px;
  animation: slideUp 1s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  animation: slideUp 1s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}

/* ==============================
   TRUST BAR
   ============================== */
.trust-bar { background: var(--primary); padding: 0; }
.trust-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.10);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-icon { font-size: 1.75rem; margin-bottom: 10px; }
.trust-label { font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.trust-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ==============================
   SECTIONS / LAYOUT
   ============================== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--primary); line-height: 1.15;
}
.section-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--text-muted);
  max-width: 560px; margin: 16px auto 0; line-height: 1.75;
}

/* ==============================
   SERVICE TYPE CARDS (HOME)
   ============================== */
.service-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.service-type-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  cursor: pointer; text-decoration: none;
  display: block;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-type-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-lg); }
.service-type-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.service-type-card:hover img { transform: scale(1.08); }
.service-type-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.80) 0%, rgba(10,10,10,0.20) 60%, transparent 100%);
  transition: opacity var(--transition);
}
.service-type-card:hover .card-overlay { opacity: 0.85; }
.service-type-card .card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; }
.service-type-card .card-label { font-family: 'Cinzel', serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.service-type-card .card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.70); font-weight: 400; }
.service-type-card .card-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 99px;
}

/* ==============================
   ABOUT SECTION
   ============================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap .bg-shape {
  position: absolute; inset: 20px -20px -20px 20px;
  background: rgba(31,111,92,0.12); border-radius: var(--radius-lg);
}
.about-img-wrap img.main-img {
  position: relative; z-index: 1;
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-wrap .seal-wrap {
  position: absolute; bottom: -24px; right: -24px; z-index: 2;
  width: 130px; height: 130px;
  background: var(--surface); border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--background);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.about-img-wrap .seal-wrap img { width: 100%; height: 100%; object-fit: contain; }
.about-content { padding: 12px 0; }
.about-dividers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.about-divider { border-left: 3px solid var(--accent); padding-left: 16px; }
.about-divider h4 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--primary); font-weight: 700; }
.about-divider p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ==============================
   PRICING (SERVICES) CARDS
   ============================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--surface);
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

/* Color variants per group */
.pricing-card.variant-green { border-top: 5px solid var(--primary); }
.pricing-card.variant-red   { border-top: 5px solid var(--accent); }
.pricing-card.variant-teal  { border-top: 5px solid var(--secondary); }

.pricing-card.featured {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
  border-top: none; color: #fff;
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(15,61,46,0.35);
}
.pricing-card.featured:hover { transform: translateY(-20px); }

.pricing-badge {
  position: absolute; top: 0; right: 28px;
  background: var(--accent); color: #fff;
  font-size: 0.70rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(140,28,19,0.3);
}

.pricing-img {
  height: 180px; overflow: hidden; position: relative;
  flex-shrink: 0;
}
.pricing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pricing-card:hover .pricing-img img { transform: scale(1.06); }
.pricing-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.35));
}
.featured .pricing-img-overlay {
  background: linear-gradient(to bottom, transparent 40%, rgba(15,61,46,0.60));
}

.pricing-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.pricing-tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.featured .pricing-tier { color: rgba(255,255,255,0.65); }

.pricing-title { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.featured .pricing-title { color: #fff; }

.pricing-duration { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); margin-bottom: 20px; }
.featured .pricing-duration { color: rgba(255,255,255,0.60); }

.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.pricing-currency { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.pricing-amount { font-family: 'Cinzel', serif; font-size: 2.6rem; font-weight: 900; line-height: 1; color: var(--primary); }
.featured .pricing-currency, .featured .pricing-amount { color: #fff; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 24px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.pricing-features li::before { content: '✓'; font-weight: 800; color: var(--secondary); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.featured .pricing-features li { color: rgba(255,255,255,0.80); }
.featured .pricing-features li::before { color: rgba(255,255,255,0.80); }

.pricing-cta { display: block; text-align: center; font-weight: 700; padding: 13px 20px; border-radius: 10px; text-decoration: none; font-size: 0.9rem; transition: all var(--transition); }
.pricing-card.variant-green .pricing-cta { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(15,61,46,0.25); }
.pricing-card.variant-green .pricing-cta:hover { background: var(--primary-light); box-shadow: 0 6px 20px rgba(15,61,46,0.35); transform: scale(1.02); }
.pricing-card.variant-red .pricing-cta { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(140,28,19,0.25); }
.pricing-card.variant-red .pricing-cta:hover { background: var(--accent-light); box-shadow: 0 6px 20px rgba(140,28,19,0.35); transform: scale(1.02); }
.pricing-card.variant-teal .pricing-cta { background: var(--secondary); color: #fff; box-shadow: 0 4px 14px rgba(31,111,92,0.25); }
.pricing-card.variant-teal .pricing-cta:hover { background: var(--primary); box-shadow: 0 6px 20px rgba(31,111,92,0.35); transform: scale(1.02); }
.pricing-card.featured .pricing-cta { background: var(--accent); color: #fff; box-shadow: 0 4px 18px rgba(140,28,19,0.40); }
.pricing-card.featured .pricing-cta:hover { background: var(--accent-light); transform: scale(1.04); }

/* ==============================
   GALLERY
   ============================== */
.gallery-section { background: var(--dark); }
.gallery-header { text-align: center; padding-top: 80px; padding-bottom: 48px; }
.gallery-header .section-title { color: #fff; }
.gallery-header .section-sub { color: rgba(255,255,255,0.55); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 60px;
  gap: 12px;
  padding: 0 24px 80px;
  max-width: 1280px; margin: 0 auto;
}

.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.g-item:hover { transform: scale(1.025); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.g-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-item .g-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(15,61,46,0.60);
  opacity: 0; transition: opacity var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-item .g-icon { font-size: 2rem; color: #fff; }

/* Span shortcuts */
.g-col-1  { grid-column: span 1; }
.g-col-2  { grid-column: span 2; }
.g-col-3  { grid-column: span 3; }
.g-col-4  { grid-column: span 4; }
.g-col-5  { grid-column: span 5; }
.g-col-6  { grid-column: span 6; }
.g-col-7  { grid-column: span 7; }
.g-col-8  { grid-column: span 8; }
.g-col-9  { grid-column: span 9; }
.g-col-10 { grid-column: span 10; }
.g-col-11 { grid-column: span 11; }
.g-col-12 { grid-column: span 12; }

.g-row-1  { grid-row: span 1; }
.g-row-2  { grid-row: span 2; }
.g-row-3  { grid-row: span 3; }
.g-row-4  { grid-row: span 4; }
.g-row-5  { grid-row: span 5; }
.g-row-6  { grid-row: span 6; }
.g-row-7  { grid-row: span 7; }
.g-row-8  { grid-row: span 8; }
.g-row-9  { grid-row: span 9; }
.g-row-10 { grid-row: span 10; }
.g-row-11 { grid-row: span 11; }
.g-row-12 { grid-row: span 12; }
.g-row-13 { grid-row: span 13; }
.g-row-14 { grid-row: span 14; }
.g-row-15 { grid-row: span 15; }
.g-row-16 { grid-row: span 16; }
.g-row-17 { grid-row: span 17; }
.g-row-18 { grid-row: span 18; }
.g-row-19 { grid-row: span 19; }
.g-row-20 { grid-row: span 20; }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section { background: var(--primary); position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/WhatsApp\ Image\ 2025-11-03\ at\ 11.36.22\ AM.jpeg') center/cover;
  opacity: 0.07;
}
.cta-content { position: relative; z-index: 1; text-align: center; padding: 96px 24px; max-width: 760px; margin: 0 auto; }
.cta-section .section-title { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,0.70); }
.cta-section .cta-logo { height: 64px; width: auto; margin-bottom: 32px; filter: brightness(0) invert(1); }

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--dark); padding: 60px 24px 32px; text-align: center; }
.footer-logo { height: 44px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline { color: rgba(255,255,255,0.40); font-size: 0.85rem; margin-bottom: 8px; }
.footer-copy { color: rgba(255,255,255,0.20); font-size: 0.78rem; margin-top: 32px; }

/* ==============================
   LIGHTBOX
   ============================== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lb-close {
  position: absolute; top: 24px; right: 28px; font-size: 2.2rem;
  color: rgba(255,255,255,0.7); cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: #fff; }

/* ==============================
   FAQ
   ============================== */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-question {
  font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--primary);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none; text-align: left; padding: 0;
}
.faq-arrow { transition: transform 0.3s; font-size: 1.25rem; color: var(--accent); font-family: sans-serif; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 200px; padding-top: 12px; }

/* ==============================
   KEYFRAMES
   ============================== */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }  
  to   { opacity: 1; transform: translateY(0); }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 560px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.10); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.10); border-right: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-type-grid { grid-template-columns: repeat(2, 1fr); }
  .g-col-4 { grid-column: span 6; }
  .g-col-5, .g-col-7 { grid-column: span 6; }
  .g-col-8 { grid-column: span 12; }
  .g-col-12 { grid-column: span 12; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 340px; }
  .about-img-wrap .seal-wrap { width: 100px; height: 100px; bottom: -16px; right: -12px; }
}

/* ==============================
   WHATSAPP FLOAT
   ============================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 8px 24px 8px 12px;
  border-radius: 99px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: floatPulse 3s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background: #20b558;
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
}

.whatsapp-float .wa-icon {
  width: 34px;
  height: 34px;
  fill: #fff;
  flex-shrink: 0;
}

.whatsapp-float .wa-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@keyframes floatPulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 10px;
  }
  .whatsapp-float .wa-text {
    display: none;
  }
  .whatsapp-float .wa-icon {
    width: 36px;
    height: 36px;
  }
}

