:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(210, 24%, 16%);
  --primary: hsl(231, 48%, 20%);
  --primary-glow: hsl(231, 48%, 30%);
  --secondary: hsl(210, 16%, 30%);
  --accent: hsl(217, 91%, 60%);
  --card: hsl(0, 0%, 100%);
  --muted: hsl(210, 40%, 98%);
  --muted-foreground: hsl(210, 16%, 46%);
  --border: hsl(214, 32%, 91%);
  --destructive: hsl(0, 84%, 60%);
  --success: hsl(142, 76%, 36%);
  --danger-red-dark: #dc2626;

  --gradient-hero: linear-gradient(135deg, hsl(231, 48%, 20%), hsl(210, 16%, 30%));
  --gradient-cta: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(231, 48%, 30%));
  --shadow-soft: 0 4px 6px -1px hsl(210 16% 30% / .1);
  --shadow-medium: 0 10px 15px -3px hsl(210 16% 30% / .1);
  --shadow-strong: 0 25px 50px -12px hsl(231 48% 20% / .25);
  --shadow-glow: 0 0 30px hsl(217 91% 60% / .3);

  --font-heading: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 0.75rem;
}


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

/* =============================================
   HERO
   ============================================= */

/* HEADER HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162844 60%, #1e3a5f 100%);
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(26, 86, 219, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(245, 158, 11, 0.10) 0%, transparent 60%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  position: relative;
  animation: fadeDown 0.6s ease both;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
  animation: blink 1.5s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  position: relative;
  animation: fadeDown 0.7s 0.1s ease both;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.7;
  position: relative;
  animation: fadeDown 0.7s 0.2s ease both;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

div.contact-btn {
  cursor: pointer;
  position: relative;
  gap: 20px;
  margin: 50px auto 0;
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-btn a {
  padding: 10px 20px;
  border-radius: 10px;
  display: block;
  cursor: pointer;
  color: var(--white);
  transition: transform .3s;

  &:hover {
    transform: scale(1.05);
  }
}

.contact-btn a:nth-child(1) {
  background-color: var(--danger-red-dark);
}

.contact-btn a:nth-child(2) {
  background-color: var(--success);
}

.contact-btn a:nth-child(3) {
  background-color: #ffffff10;
  border: 1px solid #ffffff;
}


/* =============================================
   MAIN
   ============================================= */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 80px;
  display: grid;
  gap: 56px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-icon {
  font-size: 22px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.service-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card a {
  color: var(--foreground);
  font-weight: 600;
  font-size: 15px;
  display: block;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}

.service-card a:hover {
  color: var(--accent);
}

.service-card .price {
  font-size: 13px;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 500;
}

.zones-intro {
  color: var(--muted-foreground);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.75;
}

.zones-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zones-links span,
.zones-links a {
  display: inline-block;
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
}

.zones-links span:hover,
.all:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: hsl(217, 91%, 97%);
}

.zones-links a.all {
  background: hsl(217, 91%, 96%);
  border-color: hsl(217, 91%, 80%);
  color: var(--accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s, transform 0.2s;
}

.trust-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-1px);
}

.trust-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.trust-text strong {
  display: block;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.trust-text span {
  color: var(--muted-foreground);
  font-size: 13px;
}

.stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 1px;
}

.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.links-row a {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}

.links-row a:hover {
  background: hsl(217, 91%, 96%);
  text-decoration: underline;
}

.links-row .sep {
  color: var(--border);
  font-size: 16px;
  padding: 0 2px;
}


@media (max-width:650px) {

  div.contact-btn {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    width: 300px;
  }

}

/* =============================================
   FAQ
   ============================================= */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}


.section-header p {
  color: var(--gray);
  font-size: 1.5rem;
}

.faq {
  padding: 5rem 0;
  background: var(--white);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  width: min(680px, 90%);
  margin: 0 auto;
}

.faq-card {
  background: var(--off-white);
  border: 1px solid #e5e8ef;
  border-radius: var(--radius-md);
  height: 70px;
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: var(--transition);
}

.faq-card:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1rem 3.2rem 1.8rem 1.8rem;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  color: var(--dark);
}
@media (max-width:500px) {

.faq-card {
  height: 60px;
}

.faq-question {
  padding: 1rem 3.2rem 1.3rem 1.8rem;
  font-size: .78rem;
}
.faq-answer {
  font-size: .78rem;
}

}
.faq-card>i {
  position: absolute;
  right: 1.1rem;
  top: 1rem;
  font-size: 1rem;
  color: var(--gold-dark);
  cursor: default;
}

.faq-card>hr {
  border: none;
  border-top: 1px solid #e5e8ef;
  width: calc(100% - 2.6rem);
  margin: 0 1.3rem .7rem;
}

.faq-answer {
  padding: 0 1.3rem 1.1rem;
  font-size: .88rem;
  color: var(--gray);
}

.faq-answer p strong {
  color: var(--dark);
}

.less-sign {
  position: absolute;
  right: 1.1rem;
  top: 1.35rem;
  width: 16px;
  height: 2px;
  background: var(--dark);
  display: block;
}

.display {
  height: auto !important;
  background: #FFFDF5;
  border-color: rgba(245, 197, 24, .35);
}

.view {
  display: none !important;
}
