/* =========================================================
   Unique International Visa Consultancy — Premium Stylesheet
   Theme: Deep Navy + White + Luxury Gold + Professional Green
   ========================================================= */

:root {
  /* Color system */
  --navy-900: #0a1a35;
  --navy-800: #0f2547;
  --navy-700: #16335f;
  --navy-600: #1d4276;
  --navy-500: #2a5594;

  --gold-700: #b8860b;
  --gold-600: #c8941a;
  --gold-500: #d4a017;
  --gold-400: #e0b53a;
  --gold-300: #ecd07a;

  --green-700: #1b7a43;
  --green-600: #1f9451;
  --green-500: #23a85c;
  --green-400: #4cc77a;

  --white: #ffffff;
  --gray-100: #f7f9fc;
  --gray-200: #eef2f8;
  --gray-300: #e2e8f3;
  --gray-500: #6b7a99;
  --gray-700: #3a4a6b;

  /* Typography */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(10, 26, 53, 0.08);
  --shadow-md: 0 10px 30px rgba(10, 26, 53, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 26, 53, 0.18);
  --shadow-gold: 0 10px 30px rgba(212, 160, 23, 0.25);

  /* Radius */
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}

a {
  text-decoration: none;
  transition: color 0.25s ease;
}
.brand-logo-img {
  width: 200px;
  /* height: 60px; */
  object-fit: contain;
}

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

.section {
  padding: 6rem 0;
  position: relative;
}

/* ---------- Section headings ---------- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.2rem;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 2px;
  background: var(--gold-500);
}
.section-eyebrow.light {
  color: var(--gold-400);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.section-title.light {
  color: var(--white);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 760px;
  margin-bottom: 1.5rem;
}
.section-lead.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.7rem 1.6rem;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(212, 160, 23, 0.4);
}

.btn-outline-gold {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-400);
  border-color: var(--gold-500);
  backdrop-filter: blur(4px);
}
.btn-outline-gold:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  border-color: var(--green-600);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Navigation ---------- */
#mainNav {
  /* background: transparent; */
  background: rgba(10, 26, 53, 0.96);
  padding: 1.1rem 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(10, 26, 53, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.brand-text .brand-accent {
  color: var(--gold-400);
}
.brand-text small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-300);
}

#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.95rem !important;
  position: relative;
}
#mainNav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #fff;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("https://images.pexels.com/photos/2026324/pexels-photo-2026324.jpeg?auto=compress&cs=tinysrgb&w=1600")
    center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 60px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 26, 53, 0.92) 0%,
    rgba(15, 37, 71, 0.78) 50%,
    rgba(10, 26, 53, 0.85) 100%
  );
}
.hero-content {
  z-index: 2;
}
.hero-subtitle {
  display: inline-block;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 50px;
  background: rgba(212, 160, 23, 0.08);
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions .btn {
  min-width: 170px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold-400);
  font-size: 1.6rem;
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--navy-900);
  padding: 5rem 0;
  position: relative;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.stat-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}
.stat-icon {
  font-size: 2.2rem;
  color: var(--gold-400);
  margin-bottom: 0.75rem;
}
.stat-number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}
.stat-label {
  color: var(--gray-300);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

/* ---------- About ---------- */
.about-section {
  background: var(--white);
}
.about-image-wrap {
  position: relative;
  padding: 0 0 2rem 2rem;
}
.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 2rem;
  bottom: 1rem;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1rem;
  background: var(--navy-900);
  color: #fff;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--gold-500);
}
.about-badge i {
  font-size: 1.6rem;
  color: var(--gold-400);
}
.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.about-badge span {
  font-size: 0.8rem;
  color: var(--gray-300);
}

.about-sub {
  font-size: 1.3rem;
  color: var(--navy-800);
  margin: 1.75rem 0 1rem;
  position: relative;
  padding-left: 1.2rem;
}
.about-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 1.4rem;
  background: var(--green-500);
  border-radius: 4px;
}

.about-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.6rem;
}
.about-services-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--navy-800);
}
.about-services-list i {
  color: var(--green-500);
  font-size: 1.1rem;
}
.about-section p {
  color: var(--gray-700);
}
.about-tagline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-600);
  margin-top: 1.5rem;
  position: relative;
  display: inline-block;
}
.about-tagline::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green-500);
  margin-top: 0.5rem;
  border-radius: 3px;
}

/* ---------- Mission & Vision ---------- */
.mission-section {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.12),
    transparent 70%
  );
  top: -150px;
  right: -100px;
}
.mission-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 168, 92, 0.1), transparent 70%);
  bottom: -100px;
  left: -100px;
}
.mv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  backdrop-filter: blur(10px);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-500));
}
.mv-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}
.mv-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.mv-card h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.mv-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0;
}

/* ---------- Future Plan ---------- */
.future-section {
  background: var(--gray-100);
  position: relative;
}
.future-section .section-lead {
  color: var(--gray-700);
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--green-500));
}
.timeline-item {
  position: relative;
  padding: 0.6rem 0 1.4rem 1.8rem;
}
.timeline-dot {
  position: absolute;
  left: -1.6rem;
  top: 0;
  font-size: 1.6rem;
  color: var(--gold-500);
  background: var(--gray-100);
  border-radius: 50%;
  line-height: 1;
}
.timeline-item p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--navy-800);
  font-weight: 500;
  background: #fff;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green-500);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.timeline-item p:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold-500);
}

.future-closing {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
  border: 1px solid rgba(212, 160, 23, 0.25);
}
.future-closing p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto 1rem;
}
.future-tagline {
  color: var(--gold-400);
  font-size: 1.7rem;
  margin: 0;
}

/* ---------- Management ---------- */
.management-section {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.management-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.08),
    transparent 70%
  );
  top: -200px;
  left: -150px;
}
.management-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.management-photo {
  position: relative;
  height: 100%;
  min-height: 340px;
}
.management-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}
.management-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(10, 26, 53, 0.9), transparent);
}
.management-photo-overlay span {
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.management-body {
  padding: 2.5rem;
  position: relative;
}
.management-quote {
  font-size: 3rem;
  color: var(--gold-500);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.management-body h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.management-body p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.management-tagline {
  color: var(--gold-400);
  font-size: 1.35rem;
  margin: 1.5rem 0 1.5rem;
}
.management-sign {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}
.management-sign strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.15rem;
}
.management-sign span {
  color: var(--gray-300);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ---------- Services ---------- */
.services-section {
  background: var(--white);
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon {
  transform: rotateY(360deg);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--navy-900);
}
.service-card p {
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.7;
}
.service-card-cta {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-color: var(--navy-700);
}
.service-card-cta h3,
.service-card-cta p {
  color: #fff;
}
.service-card-cta .service-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
}

/* ---------- Legal Adviser ---------- */
.legal-section {
  background: var(--white);
}
.legal-intro {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 2rem;
}
.lawyer-card {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.lawyer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.lawyer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}
.lawyer-card:hover::before {
  transform: scaleX(1);
}
.lawyer-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1.3rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  transition: transform 0.4s ease;
}
.lawyer-card:hover .lawyer-icon {
  transform: rotateY(360deg);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
}
.lawyer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}
.lawyer-card span {
  color: var(--gray-500);
  font-size: 0.95rem;
  font-weight: 500;
}
.legal-detail {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.legal-detail p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-tagline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gold-600);
  margin-top: 1.5rem;
}

/* ---------- Service detail cards ---------- */
.service-card-detail {
  display: flex;
  flex-direction: column;
}
.service-subtitle {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-800);
  margin-bottom: 0.6rem;
}
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.service-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}
.service-meta-item i {
  color: var(--green-600);
  font-size: 0.95rem;
}
.service-list-title {
  font-size: 1rem;
  color: var(--navy-800);
  margin: 1rem 0 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}
.service-list-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 5px;
  height: 1.1rem;
  background: var(--green-500);
  border-radius: 3px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--navy-800);
  font-weight: 500;
  padding: 0.15rem 0;
}
.service-list i {
  color: var(--green-500);
  font-size: 1rem;
  flex-shrink: 0;
}
.service-cta {
  margin-top: auto;
  padding-top: 1rem;
}
.service-cta .btn {
  width: 100%;
}

/* ---------- Our Offices ---------- */
.offices-section {
  background: var(--gray-100);
}
.office-card {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.office-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.office-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}
.office-card:hover::before {
  transform: scaleX(1);
}
.office-flag {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  transition: transform 0.4s ease;
}
.office-card:hover .office-flag {
  transform: rotateY(360deg);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
}
.office-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--navy-900);
}
.office-body p {
  color: var(--gray-700);
  margin-bottom: 0.25rem;
  line-height: 1.6;
}
.office-body strong {
  color: var(--navy-900);
  font-family: var(--font-head);
}

/* ---------- Package split (Maldives & Sri Lanka) ---------- */
.package-split {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.package-split span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.package-split i {
  color: var(--gold-400);
}

/* ---------- Tour Packages ---------- */
.packages-section {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.packages-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 168, 92, 0.1), transparent 70%);
  top: 10%;
  right: -120px;
}
.package-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.package-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-image img {
  transform: scale(1.08);
}
.package-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
}
.package-body {
  padding: 2rem;
  color: var(--navy-800);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.package-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--navy-900);
}
.package-body > p {
  color: var(--gray-500);
  line-height: 1.7;
}
.package-includes-title {
  font-size: 1.05rem;
  color: var(--navy-800);
  margin: 1.25rem 0 0.6rem;
  padding-left: 1.2rem;
  position: relative;
}
.package-includes-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 5px;
  height: 1.1rem;
  background: var(--gold-500);
  border-radius: 3px;
}
.package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.package-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--navy-800);
  font-weight: 500;
}
.package-includes i {
  color: var(--green-500);
  font-size: 1.1rem;
}
.package-cta {
  margin-top: auto;
  padding-top: 1rem;
}
.package-cta .btn {
  width: 100%;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--gray-100);
}
.contact-info {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(212, 160, 23, 0.2);
}
.contact-info h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.contact-list span {
  color: var(--gray-300);
  font-size: 0.92rem;
}

.contact-socials {
  display: flex;
  gap: 0.6rem;
}
.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-400);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-socials a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-4px);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-300);
}
.contact-form .form-label {
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.map-wrap iframe {
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}
.site-footer::before {
  content: "";
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-500),
    var(--green-500),
    var(--gold-500)
  );
}
.site-footer .footer-brand .brand-text {
  color: #fff;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.footer-tagline {
  color: var(--gold-400);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.site-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--gold-500);
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}
.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 6px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact i {
  color: var(--gold-400);
  margin-top: 0.2rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 1000;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(212, 160, 23, 0.5);
}

/* ---------- Animations ---------- */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}
[data-animate="fade-up"] {
  transform: translateY(40px);
}
[data-animate="fade-right"] {
  transform: translateX(-40px);
}
[data-animate="fade-left"] {
  transform: translateX(40px);
}
[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section {
    padding: 4.5rem 0;
  }
  #mainNav {
    background: rgba(10, 26, 53, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
  }
  #mainNav .navbar-collapse {
    background: rgba(10, 26, 53, 0.98);
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
  }
  #mainNav .nav-link::after {
    display: none;
  }
  .hero {
    background-attachment: scroll;
    min-height: 90vh;
  }
  .about-image-wrap {
    padding: 0;
    margin-bottom: 2rem;
  }
  .about-image-wrap::before {
    display: none;
  }
  .about-badge {
    left: 1rem;
    bottom: 1.5rem;
  }
  .management-photo {
    min-height: 280px;
  }
  .management-photo img {
    min-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 3.5rem 0;
  }
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 0.45rem;
  }
  .hero-desc {
    font-size: 1.05rem;
  }
  .hero-actions .btn {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .stat-card {
    padding: 1.6rem 1rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .package-includes {
    grid-template-columns: 1fr;
  }
  .management-body {
    padding: 1.75rem;
  }
  .mv-card,
  .contact-info,
  .contact-form {
    padding: 1.75rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}
/* //////////////// */

/* =========================================================
   MOBILE RESPONSIVE FIX
   ========================================================= */

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Bootstrap row overflow fix */
/* .row {
  --bs-gutter-x: 1.5rem;
  max-width: 100%;
} */

/* Prevent columns from creating horizontal overflow */
[class*="col-"] {
  min-width: 0;
}

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

@media (max-width: 767.98px) {
  #mainNav {
    width: 100%;
    padding: 0.65rem 0;
  }

  #mainNav .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .brand-logo-img {
    width: 155px;
    max-width: 100%;
    height: auto;
  }

  .navbar-toggler {
    padding: 0.45rem 0.65rem;
    flex-shrink: 0;
  }

  #mainNav .navbar-collapse {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.8rem;
  }

  #mainNav .navbar-nav {
    width: 100%;
  }

  #mainNav .nav-item {
    width: 100%;
  }

  #mainNav .nav-link {
    width: 100%;
    padding: 0.7rem 0.5rem !important;
  }

  /* Hide desktop underline on mobile */
  #mainNav .nav-link::after {
    display: none;
  }

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

  .hero {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: auto;

    padding-top: 100px;
    padding-bottom: 60px;

    background-attachment: scroll;
    overflow: hidden;
  }

  .hero-overlay {
    width: 100%;
    height: 100%;
  }

  .hero .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .hero .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-title {
    width: 100%;
    max-width: 100%;

    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.15;

    margin-bottom: 1.2rem;

    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-desc {
    width: 100%;
    max-width: 100%;

    font-size: 1rem;
    line-height: 1.65;

    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    max-width: 100%;

    font-size: 0.65rem;
    line-height: 1.5;

    letter-spacing: 0.08em;

    padding: 0.45rem 0.8rem;

    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    margin-bottom: 0.75rem;
  }

  .hero-scroll {
    display: none;
  }

  /* =========================
     ALL SECTIONS
     ========================= */

  .section {
    width: 100%;
    max-width: 100%;
    padding: 3.5rem 0;
    overflow: hidden;
  }

  .section > .container,
  .section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .section-lead {
    font-size: 1rem;
  }

  /* =========================
     ABOUT
     ========================= */

  .about-image-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }

  .about-image {
    width: 100%;
    height: auto;
  }

  .about-badge {
    left: 10px;
    bottom: 15px;
    max-width: calc(100% - 20px);
  }

  .about-services-list {
    grid-template-columns: 1fr;
  }

  /* =========================
     MISSION / VISION
     ========================= */

  .mv-card {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .mv-card h3,
  .mv-card h4 {
    font-size: 1.4rem;
  }

  .mission-list {
    padding-left: 1.2rem;
    margin-bottom: 0;
  }

  .mission-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }

  /* =========================
     STATS
     ========================= */

  .stats-section {
    width: 100%;
    overflow: hidden;
    padding: 3.5rem 0;
  }

  .stat-card {
    width: 100%;
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* =========================
     MANAGEMENT
     ========================= */

  .management-card {
    width: 100%;
  }

  .management-photo,
  .management-photo img {
    min-height: 260px;
    height: 260px;
  }

  .management-body {
    padding: 1.5rem;
  }

  /* =========================
     SERVICES
     ========================= */

  .service-card {
    width: 100%;
    padding: 1.5rem;
  }

  /* =========================
     LEGAL
     ========================= */

  .lawyer-card {
    width: 100%;
    padding: 1.5rem 1rem;
  }

  /* =========================
     OFFICE
     ========================= */

  .office-card {
    width: 100%;
    padding: 1.5rem;
  }

  /* =========================
     PACKAGES
     ========================= */

  .package-card {
    width: 100%;
  }

  .package-image {
    height: 200px;
  }

  .package-body {
    padding: 1.5rem;
  }

  .package-includes {
    grid-template-columns: 1fr;
  }

  /* =========================
     CONTACT
     ========================= */

  .contact-info,
  .contact-form {
    width: 100%;
    padding: 1.5rem;
  }

  .map-wrap {
    width: 100%;
  }

  .map-wrap iframe {
    width: 100%;
    max-width: 100%;
  }

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

  .site-footer {
    width: 100%;
    overflow: hidden;
  }

  /* =========================
     SCROLL TOP
     ========================= */

  .scroll-top {
    right: 15px;
    bottom: 15px;
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 480px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 45px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.58rem;
    padding: 0.4rem 0.65rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 3rem 0;
  }

  .mv-card,
  .service-card,
  .office-card,
  .contact-info,
  .contact-form {
    padding: 1.3rem;
  }

  .brand-logo-img {
    width: 145px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.52rem;
  }

  .brand-logo-img {
    width: 135px;
  }

  #mainNav .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ////////// */
/* =========================================================
   PREMIUM FULL-SCREEN HERO DESIGN
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  width: 100%;
  display: flex;
  align-items: center;

  background: url("https://images.pexels.com/photos/2026324/pexels-photo-2026324.jpeg?auto=compress&cs=tinysrgb&w=1600")
    center center / cover no-repeat;

  padding: 70px 0 50px;
  overflow: hidden;
}

/* Dark premium overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;

  background: linear-gradient(
    90deg,
    rgba(5, 18, 38, 0.96) 0%,
    rgba(7, 25, 49, 0.88) 45%,
    rgba(7, 25, 49, 0.68) 100%
  );
}

/* Hero container */
.hero .container {
  position: relative;
  z-index: 2;

  max-width: 1400px;
}

/* Hero row */
.hero .row {
  min-height: calc(100vh - 180px);
  align-items: center;
}

/* Left content */
.hero-text {
  padding-right: 40px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Badge */
.hero-subtitle {
  display: inline-flex;
  align-items: center;

  max-width: 100%;

  padding: 0.65rem 1.25rem;

  border: 1px solid rgba(224, 181, 58, 0.55);
  border-radius: 50px;

  background: rgba(212, 160, 23, 0.08);
  backdrop-filter: blur(8px);

  color: var(--gold-400);

  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  margin-bottom: 1.5rem;
}

/* Main heading */
.hero-title {
  max-width: 760px;

  margin-bottom: 1.5rem;

  font-family: var(--font-head);
  font-size: clamp(3.5rem, 5.5vw, 5.8rem);
  font-weight: 800;

  line-height: 1.02;
  letter-spacing: -0.025em;

  color: #fff;

  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.45);
}

/* Description */
.hero-desc {
  max-width: 700px;

  margin-bottom: 2rem;

  color: rgba(255, 255, 255, 0.86);

  font-size: 1.15rem;
  line-height: 1.75;
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  min-width: 175px;
  padding: 0.85rem 1.6rem;
}

/* =========================================================
   RIGHT SIDE HERO IMAGE
   ========================================================= */

.hero .col-lg-5 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Image/card wrapper if you have one */
.hero .col-lg-5 img {
  margin: 71px;
  width: 100%;
  max-width: 580px;
  height: 650px;

  object-fit: cover;

  border-radius: 30px;

  border: 2px solid rgba(224, 181, 58, 0.45);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.hero .col-lg-5 img:hover {
  transform: translateY(-8px);

  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}

/* =========================================================
   DESKTOP LARGE SCREEN
   ========================================================= */

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
  .hero {
    min-height: auto;

    padding-top: 100px;
    padding-bottom: 45px;

    background-attachment: scroll;

    overflow: hidden;
  }

  .hero .container {
    width: 100%;
    max-width: 100%;

    padding-left: 16px;
    padding-right: 16px;
  }

  .hero .row {
    margin-left: 0;
    margin-right: 0;

    min-height: auto;
  }

  .hero-text {
    width: 100%;
    padding: 0;
  }

  .hero-content {
    width: 100%;
  }

  /* Badge */
  .hero-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.08em;

    line-height: 1.5;

    padding: 0.45rem 0.8rem;

    margin-bottom: 1.2rem;
  }

  /* Heading */
  .hero-title {
    width: 100%;

    font-size: 2.35rem;

    line-height: 1.08;

    letter-spacing: -0.015em;

    margin-bottom: 1rem;
  }

  /* Description */
  .hero-desc {
    width: 100%;

    font-size: 1rem;
    line-height: 1.65;

    margin-bottom: 1.5rem;
  }

  /* Buttons */
  .hero-actions {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;

    min-width: 0;

    margin: 0;

    padding: 0.85rem 1rem;
  }

  /* Hide right image on mobile */
  .hero .col-lg-5 {
    display: none !important;
  }
}
/* //////// */

/* =========================
   HERO SECTION FIX
========================= */

.hero {
  min-height: calc(100vh - 100px);
  overflow: hidden;
}

.hero-content {
  height: 100%;
}

.hero-text {
  padding-top: 45px;
  padding-bottom: 45px;
}

/* Hero heading */
.hero-text h1 {
  font-size: clamp(48px, 3vw, 78px);
  line-height: 1.02;
  margin: 20px 0 25px;
  max-width: 700px;
}

/* Description */
.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}

/* Right image */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 35px 0 0 30px;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 30px 0 0;
}

/* Buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero-text {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-text h1 {
    font-size: 58px;
    line-height: 1.05;
  }

  .hero-image {
    padding: 30px 20px 0;
  }

  .hero-image img {
    height: 520px;
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }

  .hero-text {
    padding: 30px 20px;
  }

  .hero-text h1 {
    font-size: 42px;
    line-height: 1.08;
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-image {
    padding: 0 20px 30px;
  }

  .hero-image img {
    height: 420px;
    border-radius: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

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