/* ==========================================================================
   Service de Heladeras Patrick - Master Stylesheet (v2.5 Extra Large Mobile & PC Header Logo)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-dark: #07111e;
  --primary-light: #e0f2fe;
  
  --accent-cyan: #38bdf8;
  --accent-wa: #25d366;
  --accent-wa-hover: #1da851;
  
  --google-yellow: #fbbc04;
  --google-green: #34a853;
  --google-red: #ea4335;
  --google-blue: #4285f4;
  
  --bg-light: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #07111e;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-white: #ffffff;
  
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 16px 36px rgba(2, 132, 199, 0.15);
  
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* --- Base Reset & Strict Mobile Container Lock --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-alt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary-dark);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.section-padding {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .section-padding {
    padding: 3rem 0;
  }
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* --- Badges & Buttons --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.badge-green {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}

.btn-whatsapp {
  background-color: var(--accent-wa);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--accent-wa-hover);
}

.btn-phone {
  background-color: #0284c7;
  color: #ffffff !important;
}

.btn-phone:hover {
  background-color: #0369a1;
}

.btn-block {
  width: 100%;
}

.btn-pulse {
  animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Header Section (Prominent Large Logo for PC and Mobile) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Prominent PC Logo Height */
.brand-logo img {
  height: 72px;
  width: auto;
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-box {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.header-phone-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.header-phone-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* On Mobile: Centered & Extra Large Mobile Logo */
@media (max-width: 768px) {
  .header-inner {
    justify-content: center;
    text-align: center;
    padding: 0.85rem 0;
  }
  .brand-logo {
    justify-content: center;
    gap: 1rem;
  }
  .brand-logo img {
    height: 64px; /* Extra Large Mobile Logo as requested! */
  }
  .brand-name {
    font-size: 1.25rem;
  }
  .brand-tag {
    font-size: 0.775rem;
    display: block;
  }
  .header-phone-box { display: none; }
  .header-cta-group { display: none !important; }
}

/* --- Hero Section & Custom Patrick Logo Title --- */
.hero-section {
  background: linear-gradient(135deg, #07111e 0%, #0c233d 100%);
  color: #ffffff;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-title-box {
  margin-top: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-title-top {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.15;
  display: block;
  letter-spacing: -0.01em;
}

.hero-title-brand-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.patrick-logo-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.patrick-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.hero-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0284c7;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

.hero-phone-pill svg {
  color: #ffffff;
}

.hero-phone-pill .phone-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: #ffffff;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.hero-feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
}

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

.hero-media-wrapper {
  position: relative;
  width: 100%;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background-color: #ffffff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-media-card img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  bottom: -15px;
  left: 10px;
  background: #ffffff;
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-color);
  z-index: 10;
  max-width: calc(100% - 20px);
}

.hero-floating-badge .stars {
  color: var(--google-yellow);
  font-size: 0.95rem;
}

.hero-floating-badge .badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.hero-floating-badge .badge-sub {
  font-size: 0.725rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-title-top {
    font-size: 2.1rem;
  }
  .patrick-logo-img {
    height: 32px;
  }
  .hero-phone-pill {
    font-size: 1.15rem;
    padding: 0.45rem 0.9rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-media-card img {
    max-height: 320px;
  }
  .hero-floating-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title-top {
    font-size: 1.85rem;
  }
  .hero-title-brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-phone-pill {
    width: 100%;
    justify-content: center;
  }
}

/* --- Social Proof & Reviews Section --- */
.reviews-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  width: 100%;
}

.reviews-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.reviews-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.google-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-alt);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  margin-bottom: 0.75rem;
}

.google-logo-svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

.google-score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary-dark);
}

.stars-icon {
  color: var(--google-yellow);
  letter-spacing: 1px;
}

.marquee-container {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 1.5rem;
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-anim 40s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 320px;
  max-width: 80vw;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.reviewer-location {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.review-rating {
  color: var(--google-yellow);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.5;
  font-style: italic;
}

.google-verified-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.725rem;
  color: var(--google-green);
  font-weight: 600;
  margin-top: 0.85rem;
}

/* --- Specialties & Image Gallery --- */
.specialties-section {
  background-color: var(--bg-alt);
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
}

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

.gallery-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease;
  width: 100%;
}

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

.gallery-img-box {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(7, 17, 30, 0.85);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 700;
  z-index: 5;
}

.gallery-card-content {
  padding: 1.15rem;
}

.gallery-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.gallery-card-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Common Failures */
.failures-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  width: 100%;
}

.failures-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.failures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.failure-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.failure-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.failure-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.failure-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- WhatsApp Inquiry Form Section --- */
.contact-section {
  background: linear-gradient(135deg, #07111e 0%, #0c233d 100%);
  color: #ffffff;
  width: 100%;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.contact-info-col h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info-col p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-benefit-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: var(--accent-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text-box h4 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.benefit-text-box p {
  color: #94a3b8;
  font-size: 0.8rem;
}

.form-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.form-card-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.form-card-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.form-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wa-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-alt);
  color: var(--text-main);
  box-sizing: border-box;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
}

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

.form-footer-note {
  font-size: 0.725rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

@media (max-width: 992px) {
  .contact-grid { 
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .form-card {
    padding: 1.25rem 1rem;
  }
}

/* --- Coverage Zones --- */
.zones-section {
  background-color: var(--bg-light);
  width: 100%;
}

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

.zone-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  width: 100%;
}

.zone-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--primary-light);
}

.zone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zone-card-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.zone-tag {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.775rem;
  color: var(--text-main);
  font-weight: 500;
}

.exclusion-banner {
  background: #fff1f2;
  border: 1.5px dashed #f43f5e;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 800px;
  margin: 0 auto;
}

.exclusion-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffe4e6;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exclusion-content h4 {
  color: #9f1239;
  font-size: 0.925rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.exclusion-content p {
  color: #be123c;
  font-size: 0.825rem;
}

/* --- FAQ Section --- */
.faq-section {
  background-color: var(--bg-alt);
  width: 100%;
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}

.faq-item.faq-open {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 0.85rem;
}

.faq-question svg {
  transition: transform 0.25s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.faq-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.faq-open .faq-answer {
  max-height: 400px;
  padding: 0 1.25rem 1.1rem 1.25rem;
}

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

/* --- Footer --- */
.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.footer-about p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.775rem;
  color: #64748b;
}

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

/* --- Mobile Sticky CTA Bar --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(7, 17, 30, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-sticky-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.6rem;
}

.mobile-sticky-bar .btn {
  padding: 0.6rem 0.5rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .mobile-sticky-bar { display: block; }
  body { padding-bottom: 60px; }
}
