/* =====================================================
   VisaPro – CSS Pages intérieures
   ===================================================== */

/* ===========================
   PAGE HERO (banner intérieure)
   =========================== */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,31,58,.90) 0%,
    rgba(26,82,168,.72) 60%,
    rgba(11,31,58,.55) 100%
  );
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 28px 54px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 9px; }
.breadcrumb span { color: var(--gold); font-weight: 600; }
.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 52px);
  color: var(--white); line-height: 1.15;
  margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.page-hero-content p {
  font-size: 17px; color: rgba(255,255,255,.8);
  max-width: 580px; line-height: 1.78;
}
/* Barre dorée latérale décorative */
.page-hero::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 0 24px rgba(240,165,0,.5);
  z-index: 3;
}

/* ===========================
   DESTINATIONS – DÉTAIL
   =========================== */
.destinations-page { background: var(--bg); }

.dest-sections-grid {
  display: flex; flex-direction: column; gap: 28px;
}

.dest-detail-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 420px 1fr;
  border: 1.5px solid var(--border); transition: box-shadow var(--t);
}
.dest-detail-card:nth-child(even) { grid-template-columns: 1fr 420px; }
.dest-detail-card:nth-child(even) .dest-detail-img { order: 2; }
.dest-detail-card:nth-child(even) .dest-detail-body { order: 1; }
.dest-detail-card:hover { box-shadow: var(--shadow-md); }

.dest-detail-img {
  min-height: 340px;
  background-size: cover; background-position: center;
  position: relative; transition: transform .6s ease; overflow: hidden;
}
.dest-detail-card:hover .dest-detail-img { transform: scale(1.02); }

.dest-detail-body {
  padding: 42px 44px; display: flex; flex-direction: column;
  justify-content: center; gap: 4px;
}
.dest-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-pale); color: var(--blue);
  font-size: 12px; font-weight: 700; padding: 6px 16px;
  border-radius: 50px; width: fit-content; margin-bottom: 14px;
}
.dest-detail-body h2 {
  font-size: 28px; font-weight: 700; font-family: var(--serif);
  color: var(--text); margin-bottom: 14px; line-height: 1.25;
}
.dest-detail-body > p { color: var(--text-light); font-size: 15px; line-height: 1.82; margin-bottom: 22px; }

.dest-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
.dest-meta-item {
  padding: 14px; background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.dest-meta-item label { display: block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 5px; }
.dest-meta-item span  { font-size: 14px; font-weight: 600; color: var(--text); }
.dest-meta-item i     { color: var(--gold); margin-right: 5px; }

.dest-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.dest-tag {
  font-size: 12.5px; padding: 5px 13px; border-radius: 50px;
  background: var(--blue-pale); color: var(--blue);
  font-weight: 600; border: 1px solid rgba(26,82,168,.14);
}

.dest-detail-footer {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--border);
}

/* ===========================
   SERVICES – DÉTAIL
   =========================== */
.services-page { background: var(--white); }

.services-intro {
  background: var(--bg);
  padding: 80px 0;
}
.services-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }
.services-intro-img {
  height: 420px; border-radius: var(--radius-xl);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg); position: relative;
}
.services-intro-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,31,58,.15) 0%, rgba(11,31,58,.35) 100%);
  border-radius: var(--radius-xl);
}
.services-intro-text .section-tag { margin-bottom: 14px; }
.services-intro-text h2 { font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; color: var(--text); margin-bottom: 0; line-height: 1.3; }
.services-intro-text h2::after { margin: 14px 0 18px; }
.services-intro-text p { color: var(--text-light); font-size: 15.5px; line-height: 1.82; margin-bottom: 22px; }

/* Détails services (accordéon visuel) */
.service-detail-section { padding: 96px 0; }
.service-detail-section:nth-child(odd) { background: var(--bg); }

.service-detail-card {
  display: grid; grid-template-columns: 480px 1fr;
  gap: 0; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.service-detail-section:nth-child(even) .service-detail-card { grid-template-columns: 1fr 480px; }
.service-detail-section:nth-child(even) .service-detail-img { order: 2; }
.service-detail-section:nth-child(even) .service-detail-content { order: 1; }

.service-detail-img {
  min-height: 440px; background-size: cover;
  background-position: center; position: relative;
}
.service-detail-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,31,58,.45) 0%, transparent 60%);
}
.service-detail-section:nth-child(even) .service-detail-img::before {
  background: linear-gradient(270deg, rgba(11,31,58,.45) 0%, transparent 60%);
}

.service-detail-content {
  background: var(--white); padding: 52px 50px;
  display: flex; flex-direction: column; justify-content: center;
}
.service-detail-icon {
  width: 70px; height: 70px; border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-pale) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 28px; margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(26,82,168,.12);
}
.service-detail-content h2 { font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.3; font-family: var(--serif); }
.service-detail-content > p { color: var(--text-light); font-size: 15px; line-height: 1.82; margin-bottom: 22px; }

.service-checklist { margin-bottom: 28px; }
.service-checklist li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 14.5px; color: var(--text);
}
.service-checklist li:last-child { border-bottom: none; }
.service-checklist li i { color: var(--blue); flex-shrink: 0; margin-top: 3px; font-size: 14px; }

.service-price-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); padding: 14px 22px; border-radius: var(--radius);
  margin-bottom: 22px; box-shadow: var(--shadow-gold); width: fit-content;
}
.service-price-badge strong { font-size: 20px; font-weight: 800; }
.service-price-badge span   { font-size: 13px; font-weight: 600; opacity: .8; }

/* ===========================
   PRICING (tableau tarifaire)
   =========================== */
.pricing-section { background: var(--bg); padding: 96px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }

.pricing-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 44px 36px; border: 1.5px solid var(--border);
  display: flex; flex-direction: column; position: relative;
  transition: all var(--t); overflow: hidden;
}
.pricing-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.pricing-card.featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent; box-shadow: var(--shadow-lg);
}
.pricing-card-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; padding: 5px 12px; border-radius: 50px;
}

.pricing-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--blue); margin-bottom: 12px; }
.pricing-card.featured .pricing-name { color: var(--gold); }
.pricing-price { font-size: 52px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 6px; font-family: var(--serif); }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price sup  { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 10px; display: inline-block; }
.pricing-price span { font-size: 14px; font-weight: 500; color: var(--text-light); }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,.5); }
.pricing-desc { font-size: 14px; color: var(--text-light); margin-bottom: 28px; line-height: 1.65; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.1); }

.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px; padding: 9px 0;
  font-size: 14px; color: var(--text);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.8); }
.pricing-features li i { font-size: 14px; color: var(--blue); flex-shrink: 0; }
.pricing-card.featured .pricing-features li i { color: var(--gold-light); }
.pricing-features li.disabled { opacity: .35; text-decoration: line-through; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-page { background: var(--bg); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.45fr; gap: 34px;
  margin-bottom: 0;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 8px; transition: all var(--t);
}
.contact-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateX(5px); }
.contact-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.contact-card-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: var(--blue-pale); color: var(--blue);
  transition: all var(--t);
}
.contact-card:hover .contact-card-icon { background: var(--blue); color: var(--white); }
.contact-card h3 { font-size: 15px; font-weight: 700; color: var(--text); }
.contact-card p  { font-size: 14px; color: var(--text-light); line-height: 1.72; }
.contact-card a:hover { color: var(--blue); }

/* Formulaire */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 44px 40px; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); font-size: 14.5px; margin-bottom: 28px; }

.vp-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12.5px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .6px; }
.form-group label span { color: #e53e3e; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; font-size: 14.5px;
  font-family: var(--font); color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); transition: all var(--t); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(26,82,168,.08); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none; align-items: center; gap: 12px;
  padding: 16px 20px; background: #f0fff4; border: 1.5px solid #68d391;
  border-radius: var(--radius); color: #276749; font-size: 14px; font-weight: 600;
}
.form-success i { font-size: 20px; }
.form-success.show { display: flex; }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-page { background: var(--white); }

/* Héros about spécifique */
.about-hero-section { background: var(--bg); padding: 80px 0; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-hero-content .section-tag { margin-bottom: 14px; }
.about-hero-content h1 { font-size: clamp(26px,3.2vw,42px); font-weight: 700; color: var(--text); line-height: 1.25; margin-bottom: 18px; }
.about-hero-content h1::after { content: ''; display: block; width: 50px; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); border-radius: 2px; margin: 14px 0; }
.about-hero-content p { color: var(--text-light); font-size: 15.5px; line-height: 1.82; margin-bottom: 30px; }

.about-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat {
  padding: 20px; background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); text-align: center; transition: all var(--t);
}
.about-stat:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.about-stat strong { display: block; font-size: 36px; font-weight: 800; color: var(--blue); font-family: var(--serif); line-height: 1; margin-bottom: 6px; }
.about-stat span   { font-size: 13px; color: var(--text-light); font-weight: 500; }

.about-hero-img {
  position: relative; height: 460px;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-hero-img .img-main {
  width: 100%; height: 100%;
  background-size: cover; background-position: center; transition: transform .7s ease;
}
.about-hero-img:hover .img-main { transform: scale(1.02); }

/* ── Team section (premium dark, no photos) ── */
.team-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/whyus-team.jpg') center/cover no-repeat;
  background-attachment: fixed;
}
.team-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(7, 18, 38, 0.87);
  z-index: 0;
}
.team-section .container { position: relative; z-index: 1; }
.team-section .section-header .section-tag { color: var(--gold); border-color: rgba(240,165,0,.25); background: rgba(240,165,0,.08); }
.team-section .section-header h2 { color: #fff; }
.team-section .section-header p  { color: rgba(255,255,255,.5); }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.team-card {
  background: linear-gradient(155deg,#0f2542 0%,#0b1f3a 100%);
  border: 1px solid rgba(255,255,255,.07); border-radius: 16px;
  overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.team-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--blue-light) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(240,165,0,.25); box-shadow: var(--shadow-md); }
.team-card:hover::after { transform: scaleX(1); }

/* top block: big initials + role icon */
.team-initial-wrap {
  padding: 36px 28px 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.team-initial {
  font-size: 52px; font-weight: 900; line-height: 1;
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--gold) 0%, #fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-ico {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(26,82,168,.35); border: 1.5px solid rgba(240,165,0,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold);
  transition: background .35s ease, transform .35s ease;
}
.team-card:hover .team-ico { background: var(--gold); color: var(--navy); }

/* bottom block: info */
.team-card-info { padding: 22px 28px 28px; }
.team-card-info h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.team-role {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card-info p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 18px; }

.team-socials { display: flex; gap: 8px; }
.team-socials a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); font-size: 13px;
  display: flex; align-items: center; justify-content: center; transition: all var(--t);
}
.team-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Values section */
.values-section { background: var(--bg); padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.value-card {
  padding: 36px 28px; background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); text-align: center; transition: all var(--t);
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
  transform: scaleX(0); transition: transform .4s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.value-icon {
  width: 70px; height: 70px; border-radius: 20px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; background: var(--blue-pale); color: var(--blue);
  transition: all var(--t);
}
.value-card:hover .value-icon { background: var(--gold); color: var(--navy); }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--text-light); line-height: 1.78; }

/* FAQ */
.faq-section { background: var(--white); padding: 80px 0; }
.faq-inner   { max-width: 820px; margin: 0 auto; }
.faq-list    { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color var(--t);
}
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-xs); }

.faq-question {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 16px;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font); transition: background var(--t);
}
.faq-question:hover { background: var(--bg); }
.faq-item.open .faq-question { background: var(--blue-pale); }
.faq-question span { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; }
.faq-item.open .faq-question span { color: var(--blue); }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--blue-pale); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; transition: all var(--t); }
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 24px 22px; color: var(--text-light); font-size: 14.5px; line-height: 1.82; }

/* ===========================
   CONTACT FORM BOX
   =========================== */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-box h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.contact-form-box > p { font-size: 14.5px; color: var(--text-light); margin-bottom: 28px; }

/* ===========================
   CONTACT INFO BOX + CARDS
   =========================== */
.contact-info-box { display: flex; flex-direction: column; gap: 18px; }

.contact-info-card,
.contact-hours-card,
.contact-social-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.contact-info-card h3,
.contact-hours-card h3,
.contact-social-card h3 {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.contact-info-card h3 i,
.contact-hours-card h3 i,
.contact-social-card h3 i { color: var(--gold); font-size: 16px; }

/* --- ci-item / ci-icon --- */
.ci-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.ci-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}
.ci-item-content span:first-child {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-lighter); margin-bottom: 4px;
}
.ci-item-content a,
.ci-item-content span:last-child {
  font-size: 14.5px; color: var(--text); font-weight: 600;
  text-decoration: none; transition: color var(--t);
}
.ci-item-content a:hover { color: var(--blue); }

/* --- hours-table --- */
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 4px; }
.hours-table td { padding: 9px 0; color: var(--text-light); vertical-align: middle; }
.hours-table td:first-child { color: var(--text); font-weight: 600; }
.hours-table td:last-child { text-align: right; }
.hours-table tr.open-day td:last-child { color: var(--blue); font-weight: 700; }
.hours-table tr.closed td { color: #e53e3e; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }

/* --- contact-socials / cs-btn --- */
.contact-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.cs-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  font-size: 13.5px; font-weight: 600;
  background: var(--bg); color: var(--text);
  border: 1.5px solid var(--border);
  text-decoration: none; transition: all var(--t);
}
.cs-btn i { font-size: 16px; }
.cs-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.cs-ig:hover { background: #e1306c; border-color: #e1306c; color: var(--white); }
.cs-wa:hover { background: #25d366; border-color: #25d366; color: var(--white); }
.cs-yt:hover { background: #ff0000; border-color: #ff0000; color: var(--white); }

/* --- btn-full --- */
.btn-full { width: 100%; justify-content: center; }

/* --- form-check --- */
.form-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--blue); cursor: pointer;
}
.form-check label {
  font-size: 13px; text-transform: none;
  letter-spacing: 0; font-weight: 400;
  color: var(--text-light); cursor: pointer; line-height: 1.6;
}

/* ===========================
   FAQ LAYOUT (alias faq-inner)
   =========================== */
.faq-layout { max-width: 820px; margin: 0 auto; }

/* ===========================
   RESPONSIVE PAGES – 1024px
   =========================== */
@media (max-width: 1024px) {
  .dest-detail-card,
  .dest-detail-card:nth-child(even) { grid-template-columns: 1fr; }
  .dest-detail-card:nth-child(even) .dest-detail-img,
  .dest-detail-card:nth-child(even) .dest-detail-body { order: unset; }
  .dest-detail-img { min-height: 260px; }
  .dest-detail-body { padding: 30px 28px; }
  .service-detail-card,
  .service-detail-section:nth-child(even) .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-section:nth-child(even) .service-detail-img,
  .service-detail-section:nth-child(even) .service-detail-content { order: unset; }
  .service-detail-img { min-height: 260px; }
  .service-detail-content { padding: 38px 36px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { height: 320px; }
  .services-intro-inner { grid-template-columns: 1fr; }
  .services-intro-img { height: 280px; }
  .contact-form-box { padding: 36px 32px; }
}

/* ===========================
   RESPONSIVE PAGES – 768px
   =========================== */
@media (max-width: 768px) {
  .team-section { background-attachment: scroll; }
  .page-hero { min-height: 260px; }
  .page-hero-content h1 { font-size: 26px; }
  .page-hero-content p { font-size: 14px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap,
  .contact-form-box { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-box { gap: 14px; }

  /* About */
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-values { gap: 10px; }

  /* Destinations */
  .dest-meta { grid-template-columns: 1fr; }
  .dest-checklist { columns: 1; }

  /* FAQ */
  .faq-layout { padding: 0 4px; }
  .faq-question { padding: 14px 18px; font-size: 14.5px; }
  .faq-answer p { padding: 0 18px 18px; }

  /* Services */
  .service-detail-content { padding: 28px 22px; }
}

/* ===========================
   RESPONSIVE PAGES – 480px
   =========================== */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-mini-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-box { padding: 22px 16px; }
  .contact-info-card,
  .contact-hours-card,
  .contact-social-card { padding: 22px 16px; }
  .ci-icon { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; }
  .contact-socials { gap: 8px; }
  .cs-btn { padding: 9px 14px; font-size: 12.5px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
