/* =========================================================
   VISA CONSULTATION WEBSITE
   style.css
   ========================================================= */

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

:root {
  --navy: #173f5f;
  --navy-dark: #102f47;
  --gold: #d4a72c;
  --gold-dark: #b88d1d;
  --text: #263238;
  --muted: #687780;
  --light: #f6f8fa;
  --white: #ffffff;
  --border: #e1e7eb;
  --green: #198754;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(23, 63, 95, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--gold-dark);
}

img {
  max-width: 100%;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-weight: 700;
}

h3,
h4,
h5,
h6 {
  color: var(--navy);
  font-weight: 700;
}

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--light);
}

.section-title {
  margin-bottom: 15px;
}

.section-text {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy) !important;
  font-weight: 700;
}

.navbar-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.navbar .nav-link {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 10px 15px !important;
}

.navbar .nav-link:hover {
  color: var(--navy);
}

.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(23, 63, 95, 0.12);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn-main {
  display: inline-block;
  padding: 12px 25px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-main:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-block;
  padding: 12px 25px;
  background: var(--gold);
  color: #30270d;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-gold:hover {
  background: #e1b63b;
  border-color: #e1b63b;
  color: #30270d;
  transform: translateY(-2px);
}

.btn-outline-main {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-outline-main:hover {
  background: var(--navy);
  color: var(--white);
}

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

.hero {
  padding: 30px 0;
  background: linear-gradient(135deg,
      #f7fafc 0%,
      #edf4f8 60%,
      #ffffff 100%);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

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

.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* =========================================================
   CONSULTATION CARD
   ========================================================= */

.consultation-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.consultation-card .icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #eaf2f8;
  color: var(--navy);
  border-radius: 10px;
  font-size: 1.2rem;
}

.consultation-card h3 {
  margin-bottom: 8px;
}

.price {
  color: var(--navy);
  font-size: 2rem;
  font-weight: 700;
}

.price small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
}

.consultation-card ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.consultation-card li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.consultation-card li i {
  margin-right: 8px;
  color: var(--green);
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-bar {
  padding: 20px 0;
  background: var(--navy);
  color: var(--white);
}

.trust-item {
  text-align: center;
  font-size: 0.88rem;
}

.trust-item i {
  margin-right: 7px;
  color: var(--gold);
}

/* =========================================================
   INFORMATION CARDS
   ========================================================= */

.info-card {
  height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.25s ease;
}

.info-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.info-card .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #eaf2f8;
  color: var(--navy);
  border-radius: 10px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.step-card {
  height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================================================
   BOOKING PAGE
   ========================================================= */

.booking-page {
  min-height: 80vh;
  padding: 30px 0;
  background: var(--light);
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-header {
  padding: 30px;
  background: var(--navy);
  color: var(--white);
}

.booking-header h1,
.booking-header h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.booking-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.booking-body {
  padding: 35px;
}

/* =========================================================
   FORM
   ========================================================= */

.form-label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid #d3dce2;
  border-radius: var(--radius);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(23, 63, 95, 0.10);
}

textarea.form-control {
  min-height: 120px;
}

.form-text {
  color: var(--muted);
  font-size: 0.78rem;
}

/* =========================================================
   PAYMENT
   ========================================================= */

.payment-box {
  padding: 25px;
  background: #fff9e8;
  border: 1px solid #ead99e;
  border-radius: var(--radius);
}

.payment-box h3 {
  color: #5b4b13;
}

.payment-box p {
  color: #75642d;
  font-size: 0.9rem;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(184, 141, 29, 0.2);
  font-size: 0.9rem;
}

.payment-row:last-child {
  border-bottom: 0;
}

.payment-row strong {
  color: #44370c;
}

/* =========================================================
   ALERTS
   ========================================================= */

.alert-custom {
  padding: 15px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.alert-info-custom {
  background: #eaf5fb;
  border: 1px solid #cce6f3;
  color: #24506d;
}

.alert-success-custom {
  background: #eaf7f0;
  border: 1px solid #c9e9d8;
  color: #145c39;
}

.alert-warning-custom {
  background: #fff8df;
  border: 1px solid #f0df9c;
  color: #69520b;
}

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

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.accordion-button {
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #eaf2f8;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================================================
   DISCLAIMER
   ========================================================= */

.disclaimer {
  padding: 18px 20px;
  background: #fffaf0;
  border: 1px solid #eee0bb;
  border-radius: var(--radius);
  color: #6b6250;
  font-size: 0.78rem;
}

/* =========================================================
   SUCCESS PAGE
   ========================================================= */

.success-page {
  min-height: 80vh;
  padding: 80px 0;
  background: var(--light);
}

.success-card {
  max-width: 700px;
  margin: auto;
  padding: 50px 40px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background: #eaf7f0;
  color: var(--green);
  border-radius: 50%;
  font-size: 2rem;
}

.success-card p {
  color: var(--muted);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 55px 0 20px;
  background: #102d43;
  color: rgba(255, 255, 255, 0.7);
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer-brand {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer p {
  font-size: 0.88rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

  .hero {
    padding: 75px 0;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .section {
    padding: 65px 0;
  }

  .navbar .nav-link {
    padding: 10px 0 !important;
  }
}

@media (max-width: 767px) {

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 55px 0;
  }

  .booking-page,
  .success-page {
    padding: 45px 0;
  }

  .booking-header,
  .booking-body {
    padding: 25px 20px;
  }

  .success-card {
    padding: 40px 22px;
  }
}

@media (max-width: 575px) {

  .navbar-brand img {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .consultation-card {
    padding: 24px;
  }
}

/* =====================================================
   VISABRIDGE LOGO
   ===================================================== */

.visabridge-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}


/* Logo icon */

.logo-mark {
  position: relative;
  width: 48px;
  height: 42px;
  flex-shrink: 0;
}


/* Bridge arches */

.bridge-line {
  position: absolute;
  bottom: 8px;
  width: 22px;
  height: 18px;

  border: 3px solid #d6a84f;
  border-bottom: 0;

  border-radius: 20px 20px 0 0;
}


/* Left side */

.bridge-left {
  left: 1px;
}


/* Right side */

.bridge-right {
  right: 1px;
}


/* Horizontal bridge deck */

.bridge-road {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 5px;

  height: 4px;

  background: #17243a;

  border-radius: 4px;
}


/* Small connection points */

.logo-mark::before,
.logo-mark::after {
  content: "";

  position: absolute;

  width: 6px;
  height: 6px;

  bottom: 2px;

  background: #d6a84f;

  border-radius: 50%;
}

.logo-mark::before {
  left: 0;
}

.logo-mark::after {
  right: 0;
}


/* Brand text */

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}


.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #17243a;
}


.brand-name span {
  color: #d6a84f;
}


.brand-subtitle {
  margin-top: 5px;

  font-size: 0.65rem;
  font-weight: 500;

  color: #6c757d;

  letter-spacing: 0.04em;
  text-transform: uppercase;
}