/* ============================================================
   Bhawna And Associates — Custom Stylesheet
   Color Palette: Blue #1B4B8A | Gold #C9A84C | White #FFFFFF
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1b4b8a;
  --primary-dark: #0d2d5e;
  --primary-light: #2563b0;
  --gold: #c9a84c;
  --gold-dark: #a8873a;
  --gold-light: #e0c06a;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --light: #eef3fa;
  --dark: #0d1b2a;
  --text: #2c3e50;
  --text-muted: #6c7a89;
  --border: #d9e4f0;
  --shadow: 0 6px 24px rgba(27, 75, 138, 0.12);
  --shadow-hover: 0 12px 36px rgba(27, 75, 138, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s ease;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* ---------- Utility ---------- */
.section-padding {
  padding: 90px 0;
}
.section-padding-sm {
  padding: 60px 0;
}

.text-gold {
  color: var(--gold) !important;
}
.text-primary-custom {
  color: var(--primary) !important;
}
.bg-primary-custom {
  background: var(--primary) !important;
}
.bg-gold {
  background: var(--gold) !important;
}
.bg-light-custom {
  background: var(--off-white) !important;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  margin: 12px auto 20px;
}
.divider-left {
  margin: 12px 0 20px;
}

/* ---------- Section Headings ---------- */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-custom {
  background: var(--white) !important;
  padding: 0;
  box-shadow: 0 2px 16px rgba(27, 75, 138, 0.1);
  transition: all 0.4s ease;
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar-custom.scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(27, 75, 138, 0.15);
}
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.navbar-brand-custom img {
  height: 100px;
  width: auto;
}

@media screen and (max-width: 600px) {
  .navbar-brand-custom img {
    height: 60px;
  }
}

.navbar-custom .nav-link {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 26px 16px !important;
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.3px;
}
.navbar-custom .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary) !important;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-toggler {
  border-color: rgba(27, 75, 138, 0.25) !important;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2827%2C75%2C138%2C0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    #1a5fa8 100%
  );
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
}
.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}
.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
}
.shape-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 45%;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero-title span {
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  z-index: 2;
}
.hero-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.hero-card .card-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px 16px;
  margin-bottom: 14px;
  transition: all var(--transition);
}
.hero-card .card-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}
.hero-card .card-item h6 {
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 3px;
}
.hero-card .card-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  margin: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/breadcrumb.avif") center/cover no-repeat;
  opacity: 0.07;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero .breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.page-hero .breadcrumb-custom a {
  color: var(--gold);
}
.page-hero .breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   ABOUT SECTION (Homepage)
   ============================================================ */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  width: 100%;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
  border: 4px solid var(--white);
}
.about-img-badge .num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-feature-list {
  margin-top: 24px;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.about-feature-item:last-child {
  border-bottom: none;
}
.about-feature-item .icon {
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-item h6 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  color: var(--primary-dark);
}
.about-feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}
.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Services page cards with image */
.service-card-img {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card-img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.service-card-img .img-wrap {
  overflow: hidden;
  height: 200px;
}
.service-card-img .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-img:hover .img-wrap img {
  transform: scale(1.06);
}
.service-card-img .card-body-custom {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-img h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.service-card-img p {
  font-size: 0.86rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--white);
}
.why-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  height: 260px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 45, 94, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-modal-content {
  background: transparent;
  border: none;
}
.gallery-modal-content img {
  width: 100%;
  border-radius: var(--radius);
}
.gallery-modal-content .btn-close {
  position: absolute;
  top: -40px;
  right: 0;
  opacity: 1;
}

/* ---------- Counter ---------- */
.counter-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/counter.jpg") center/cover no-repeat;
  opacity: 0.06;
}
.counter-box {
  text-align: center;
  position: relative;
  z-index: 2;
}
.counter-box .counter-num {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.counter-box .counter-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.counter-box .counter-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.cta-section .btn-group-custom {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}
.value-card .icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.value-card h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.value-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

.mission-vision-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  height: 100%;
  border-top: 5px solid var(--primary);
  transition: all var(--transition);
}
.mission-vision-card.gold-top {
  border-top-color: var(--gold);
}
.mission-vision-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.mission-vision-card .mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.mission-vision-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.mission-vision-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================================
   WHY CHOOSE US PAGE
   ============================================================ */
.feature-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary);
  transition: all var(--transition);
}
.feature-row:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}
.feature-row.gold-border {
  border-left-color: var(--gold);
}
.feature-row .icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}
.feature-row h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.feature-row p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.contact-info-item h6 {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-info-item a,
.contact-info-item p {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}
.contact-info-item a:hover {
  color: var(--gold);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}
.hours-item:last-child {
  border-bottom: none;
}
.hours-item .day {
  color: rgba(255, 255, 255, 0.7);
}
.hours-item .time {
  color: var(--gold);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 40px;
}
.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
  background: var(--off-white);
  outline: none;
  font-family: inherit;
}
.form-control-custom:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 75, 138, 0.1);
}
.form-label-custom {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group-custom {
  margin-bottom: 20px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--border);
}
.map-wrap iframe {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand .tagline {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 280px;
}

.footer-heading {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  padding: 5px 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-links a i {
  font-size: 0.75rem;
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.6;
}
.footer-contact-item a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom .highlight {
  color: var(--gold);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(27, 75, 138, 0.35);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ============================================================
   BADGE / PILL
   ============================================================ */
.badge-pill {
  background: rgba(27, 75, 138, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}
.badge-pill-gold {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-dark);
}

/* ============================================================
   MISC COMPONENTS
   ============================================================ */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

.highlight-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--primary);
}

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}
.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  transform: translate(10px, 10px);
  z-index: -1;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.float-anim {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
  }
}
.pulse-anim {
  animation: pulse-gold 2.5s infinite;
}

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

/* Clip overflowing backgrounds/shapes at section level — do NOT touch .container or .row */
section {
  position: relative;
}

/* img-frame decorative border offset removed — causes edge overflow */
.img-frame::after {
  display: none;
}

@media (max-width: 991.98px) {
  .navbar-custom .nav-link {
    padding: 12px 16px !important;
  }
  .navbar-custom .nav-link::after {
    display: none;
  }
  .hero-section {
    min-height: auto;
    padding: 100px 0 70px;
  }
  .hero-stats {
    gap: 20px;
  }
  /* Badge kept fully inside on tablets */
  .about-img-badge {
    bottom: 10px;
    right: 10px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
}
@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .service-card,
  .why-card {
    padding: 24px 18px;
  }
  .contact-info-card {
    padding: 28px 20px;
  }
  .footer {
    padding: 50px 0 0;
  }
  .hero-stats {
    display: none;
  }
  .scroll-top {
    bottom: 18px;
    right: 18px;
  }
  /* Badge fully inside image on mobile */
  .about-img-badge {
    bottom: 12px;
    right: 12px;
    padding: 14px 16px;
  }
  .about-img-badge .num {
    font-size: 1.5rem;
  }
  /* Hero card full width on mobile */
  .hero-card {
    padding: 24px 18px;
  }
  /* value-card hover translate disabled on mobile to avoid flicker */
  .value-card:hover {
    transform: none;
  }
  .feature-row:hover {
    transform: none;
  }
}
@media (max-width: 479.98px) {
  .hero-badge {
    font-size: 0.72rem;
  }
  .btn-primary-custom,
  .btn-gold,
  .btn-outline-white {
    padding: 10px 22px;
    font-size: 0.88rem;
  }
  /* Tighten footer on very small screens */
  .footer-contact-item a,
  .footer-contact-item span {
    font-size: 0.82rem;
  }
}
