/* ==========================================
   BRAND IDENTITY & VARIABLES
   ========================================== */
:root {
  /* Core Palette */
  --primary: #0f4c5c;
  --primary-light: #8bc4b9;
  --primary-dark: #08323d;
  --secondary: #1b6b7a;

  /* Text Colors */
  --text-primary: #2f3e46;
  --text-secondary: #4a5d66;
  --text-dark: #1a2429;
  --text-light: #f2f7f6;

  /* Surface Colors */
  --bg-page: #f2f7f6;
  --bg-section: #ffffff;
  --bg-secondary-section: #eaf2f1;
  --bg-footer: #1a2429;
  --bg-card: #ffffff;

  /* Header & Hero (used in internal CSS) */
  --bg-header: rgba(242, 247, 246, 0.95);
  --bg-hero-gradient-start: #f2f7f6;
  --bg-hero-gradient-end: #d8ecea;

  /* Interaction & Accents */
  --border: rgba(47, 62, 70, 0.1);
  --radius: 4px;
  --container: 1200px;
  --header-height: 80px;
}

/* ==========================================
   BRAND TYPOGRAPHY GUIDELINES
   ========================================== */
body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ==========================================
   SHARED UTILITY CLASSES
   ========================================== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.8rem;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary-section);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 3px solid var(--primary);
  margin-bottom: 1.5rem;
}

.logo-accent {
  color: var(--primary-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   PREMIUM FAQ SECTION
   ========================================== */
.section-faq-premium {
  padding: 120px 0;
}

.faq-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6rem;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 2rem;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

/* ==========================================
   LEGAL BRAND FOOTER
   ========================================== */
.footer {
  background: var(--bg-footer);
  color: rgba(242, 247, 246, 0.8);
  padding-top: 5rem;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-brand-col .logo {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-description {
  font-size: 0.95rem;
  color: rgba(242, 247, 246, 0.6);
  margin-bottom: 2rem;
}

.footer-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: block;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary-light);
}

.footer-links a {
  color: rgba(242, 247, 246, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.6rem 0;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  gap: 15px;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--primary-light);
  margin-top: 5px;
}

.contact-info a {
  color: rgba(242, 247, 246, 0.8);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 247, 246, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(242, 247, 246, 0.4);
}

.footer-bottom a {
  color: rgba(242, 247, 246, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
  .faq-split,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
