/* =====================================================
   Al-Hudha Overseas Trading Establishment
   Main Stylesheet
   ===================================================== */

:root {
  --color-navy: #0F2A57;
  --color-navy-dark: #081A3A;
  --color-navy-deep: #050F23;
  --color-gold: #C9A14A;
  --color-gold-light: #E0C079;
  --color-gold-dark: #A6822F;
  --color-white: #ffffff;
  --color-off-white: #F7F8FA;
  --color-light-gray: #EEF1F5;
  --color-border: #E1E5EC;
  --color-text: #1A2238;
  --color-text-muted: #5A6478;
  --color-success: #1F8A4C;

  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(15,42,87,0.06);
  --shadow-md: 0 8px 24px rgba(15,42,87,0.10);
  --shadow-lg: 0 18px 48px rgba(15,42,87,0.14);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --header-h: 88px;
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--color-gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.text-gold { color: var(--color-gold) !important; }
.text-navy { color: var(--color-navy) !important; }
.bg-navy { background-color: var(--color-navy) !important; }
.bg-gold { background-color: var(--color-gold) !important; }

/* ---------- BUTTONS ---------- */
.btn-ah {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.btn-ah i { transition: transform .35s ease; }
.btn-ah:hover i { transform: translateX(5px); }

.btn-ah-primary { background: var(--color-gold); color: #fff; }
.btn-ah-primary:hover { background: var(--color-gold-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ah-dark { background: var(--color-navy); color: #fff; }
.btn-ah-dark:hover { background: var(--color-navy-dark); color: #fff; transform: translateY(-2px); }

.btn-ah-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-ah-outline:hover { background: #fff; color: var(--color-navy); }

.btn-ah-outline-navy { background: transparent; color: var(--color-navy); border: 2px solid var(--color-navy); }
.btn-ah-outline-navy:hover { background: var(--color-navy); color: #fff; }

/* ---------- SECTION TITLE ---------- */
.section { padding: 100px 0; position: relative; }
.section-eyebrow {
  font-family: var(--font-display);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-gold);
}
.section-eyebrow.left::before { display: none; }
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  max-width: 640px;
}

.bg-light-ah { background: var(--color-off-white); }
.bg-navy-deep { background: var(--color-navy-deep); color: #cdd5e3; }
.bg-navy-deep h1,.bg-navy-deep h2,.bg-navy-deep h3,.bg-navy-deep h4 { color: #fff; }

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar {
  background: var(--color-navy-deep);
  color: #cdd5e3;
  font-size: 0.83rem;
  padding: 10px 0;
  letter-spacing: 0.02em;
}
.topbar a { color: #cdd5e3; }
.topbar a:hover { color: var(--color-gold); }
.topbar .tb-info { display: inline-flex; align-items: center; gap: 8px; margin-right: 26px; }
.topbar .tb-info i { color: var(--color-gold); }
.topbar .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06); margin-left: 6px;
  transition: all .3s ease;
}
.topbar .social-icons a:hover { background: var(--color-gold); color: #fff; transform: translateY(-2px); }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 0 rgba(15,42,87,0.04);
  position: sticky;
  top: 0;
  z-index: 1200;
  transition: all .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.navbar-brand img {
  /* height: 64px; */ height: 85px;
  width: auto;
  transition: height .3s ease;
}
.site-header.scrolled .navbar-brand img { 
  /* height: 54px;  */height: 85px;
}

.main-nav { display: flex; gap: 2px; align-items: center; }
.main-nav .nav-item { position: relative; }
.main-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--color-navy);
  padding: 32px 18px !important;
  position: relative;
  transition: color .25s ease;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--color-gold); }
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px;
  bottom: 24px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }

.dropdown-toggle::after { display: none; }
.main-nav .dropdown-menu {
  border: none;
  border-radius: 0;
  margin-top: 0 !important;
  padding: 12px 0;
  min-width: 280px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--color-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  display: block;
}
.main-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .dropdown-item {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 0.02em;
  border-left: 3px solid transparent;
  transition: all .25s ease;
}
.main-nav .dropdown-item:hover {
  background: var(--color-off-white);
  color: var(--color-navy);
  border-left-color: var(--color-gold);
  padding-left: 28px;
}

.header-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 22px;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  transition: all .3s ease;
}
.header-cta:hover { background: var(--color-navy); color: #fff; }

.menu-toggle {
  display: none;
  background: var(--color-navy);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider { position: relative; height: calc(100vh - var(--header-h)); min-height: 580px; max-height: 820px; }
.hero-slider .swiper { width: 100%; height: 100%; }
.hero-slide {
  position: relative;
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(8,26,58,0.92) 0%, rgba(8,26,58,0.65) 45%, rgba(8,26,58,0.35) 100%);
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-content { color: #fff; max-width: 780px; }
.hero-content .eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--color-gold);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-content .eyebrow::before {
  content: ''; width: 48px; height: 2px; background: var(--color-gold);
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.hero-content h1 .accent { color: var(--color-gold); display: block; }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Swiper customization */
.swiper-pagination-bullet {
  width: 30px; height: 3px; border-radius: 0;
  background: rgba(255,255,255,0.4); opacity: 1;
  transition: all .3s ease;
}
.swiper-pagination-bullet-active { background: var(--color-gold); width: 56px; }

.swiper-button-prev,
.swiper-button-next {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff !important;
  transition: all .3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--color-gold); border-color: var(--color-gold); }
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 18px; font-weight: 800; }

/* Floating side meta */
.hero-side {
  position: absolute;
  right: 36px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  gap: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-wrap { position: relative; }
.about-img-wrap {
  position: relative;
  padding: 0 24px 24px 0;
}
.about-img-wrap .frame {
  position: absolute;
  right: 0; bottom: 0;
  width: 80%; height: 80%;
  border: 3px solid var(--color-gold);
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  left: -20px; bottom: 60px;
  background: var(--color-gold);
  color: #fff;
  padding: 22px 28px;
  z-index: 2;
  font-family: var(--font-display);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge .num {
  font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1;
}
.about-img-badge .label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px;
}
.about-features { margin-top: 30px; }
.about-feature {
  display: flex; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.about-feature:last-child { border-bottom: 0; }
.about-feature .icon {
  width: 48px; height: 48px;
  background: rgba(201,161,74,0.12);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature h5 { margin-bottom: 4px; font-size: 1rem; }
.about-feature p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; }

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.service-card {
  position: relative;
  background: #fff;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--color-border);
  transition: all .35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}
.service-card .media {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.service-card:hover .media img { transform: scale(1.08); }
.service-card .media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,26,58,0.6) 0%, transparent 50%);
}
.service-card .num {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  background: var(--color-gold);
  color: #fff;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
}
.service-card .body {
  padding: 28px 26px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: color .3s ease;
}
.service-card:hover h3 { color: var(--color-gold); }
.service-card p { color: var(--color-text-muted); margin-bottom: 18px; font-size: 0.95rem; }
.service-card .read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-navy);
}
.service-card .read-more i { transition: transform .3s ease; }
.service-card:hover .read-more { color: var(--color-gold); }
.service-card:hover .read-more i { transform: translateX(6px); }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-bg {
  background:
    linear-gradient(115deg, rgba(8,26,58,0.95), rgba(8,26,58,0.85)),
    url('../images/whychooseus.webp') center/cover;
  color: #fff;
}
.why-bg h2, .why-bg h3 { color: #fff; }
.why-feature {
  display: flex; gap: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .35s ease;
  height: 100%;
}
.why-feature:hover {
  background: rgba(201,161,74,0.12);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.why-feature .icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gold);
  color: #fff;
  font-size: 1.4rem;
}
.why-feature h4 {
  color: #fff; font-size: 1.1rem; margin-bottom: 8px;
}
.why-feature p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.92rem; }

/* =====================================================
   COUNTERS
   ===================================================== */
.counter-block { text-align: center; padding: 30px 0; }
.counter-block .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-gold);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  display: inline-block;
}
.counter-block .label {
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.86);
}
.counter-divider { background: rgba(255,255,255,0.08); }

/* =====================================================
   INDUSTRIES
   ===================================================== */
.industry-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.industry-card:hover::before { transform: scaleX(1); }
.industry-card .ico {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: var(--color-off-white);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: all .35s ease;
}
.industry-card:hover .ico { background: var(--color-gold); color: #fff; }
.industry-card h5 { font-size: 1rem; margin: 0; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
  background: #fff;
  padding: 38px 32px;
  position: relative;
  border: 1px solid var(--color-border);
}
.testimonial-card .quote-mark {
  position: absolute;
  top: -22px; left: 28px;
  width: 50px; height: 50px;
  background: var(--color-gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.testimonial-card p { font-style: italic; color: var(--color-text); font-size: 1rem; }
.testimonial-card .author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
.testimonial-card .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.testimonial-card .name { font-family: var(--font-display); font-weight: 700; color: var(--color-navy); }
.testimonial-card .role { font-size: 0.85rem; color: var(--color-text-muted); }

/* =====================================================
   CLIENT LOGOS
   ===================================================== */
.client-logo {
  border: 1px solid gray;
  background-color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  height: 110px;
  padding: 0 20px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all .35s ease;
}
.client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-logo .placeholder {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--color-border);
  padding: 18px 28px;
  width: 100%;
  text-align: center;
  background: none;
}

/* =====================================================
   CTA
   ===================================================== */
.cta-band {
  background:
    linear-gradient(110deg, rgba(8,26,58,0.94), rgba(15,42,87,0.86)),
    url('../images/ctabg.webp') center/cover;
  color: #fff;
  padding: 80px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 600px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.site-footer h5 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.site-footer h5::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 40px; height: 2px; background: var(--color-gold);
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--color-gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 7px 0; font-size: 0.93rem; }
.site-footer ul li a { display: inline-flex; align-items: center; gap: 10px; }
.site-footer ul li a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 0.65rem;
  color: var(--color-gold);
}
.site-footer .footer-logo img { 
  /* height: 80px;  */ height: 110px;
  /* background: #fff; */
   padding: 8px; border-radius: 4px; }
.site-footer .footer-about p { margin: 22px 0; font-size: 0.94rem; }
.footer-contact-line {
  display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; font-size: 0.93rem;
}
.footer-contact-line i { color: var(--color-gold); margin-top: 5px; }

.footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  text-align: center;
}
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  margin-right: 6px;
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--color-gold); border-color: var(--color-gold); color: #fff; transform: translateY(-3px); }

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header {
  position: relative;
  padding: 130px 0 100px;
  /* background:
    linear-gradient(115deg, rgba(8,26,58,0.92), rgba(8,26,58,0.65)),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1800&auto=format&fit=crop&q=70') center/cover; */
  color: #fff;
}
.page-header.about {
  background:
    linear-gradient(115deg, rgba(8,26,58,0.92), rgba(8,26,58,0.65)),
    url('../images/banner/About.webp') center/cover;
}
.page-header.contact {
  background:
    linear-gradient(115deg, rgba(8,26,58,0.92), rgba(8,26,58,0.65)),
    url('../images/banner/Contact.webp') center/cover;
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header .breadcrumb {
  margin: 0; padding: 0; background: transparent;
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.78); }
.page-header .breadcrumb-item.active { color: var(--color-gold); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); content: '/'; }

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-info-card {
  background: var(--color-navy);
  color: #fff;
  padding: 44px 36px;
  height: 100%;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .info-line {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}
.contact-info-card .info-line:last-child { border-bottom: 0; }
.contact-info-card .ico {
  width: 44px; height: 44px;
  background: var(--color-gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .label-mini {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.contact-info-card a { color: #fff; }
.contact-info-card a:hover { color: var(--color-gold); }

.contact-form {
  background: #fff;
  padding: 44px 40px;
  border: 1px solid var(--color-border);
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0;
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  font-size: 0.95rem;
  background: var(--color-off-white);
  margin-bottom: 0;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: none;
  background: #fff;
}
.contact-form label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.form-feedback {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}
.form-feedback.err { color: #c0392b; }
.alert-success-custom {
  background: rgba(31,138,76,0.1);
  border: 1px solid var(--color-success);
  color: var(--color-success);
  padding: 16px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  display: none;
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  z-index: 999;
  transition: all .3s ease;
  animation: pulseGreen 2s infinite;
}
.whatsapp-float:hover { background: #1ebe5b; color: #fff; transform: scale(1.08); }
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Service detail */
.service-detail-img { width: 100%; height: 460px; object-fit: cover; }
.service-list-fancy { list-style: none; padding: 0; }
.service-list-fancy li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.service-list-fancy li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 13px;
  color: var(--color-gold);
}
.benefit-card {
  background: var(--color-off-white);
  padding: 28px 24px;
  height: 100%;
  border-left: 3px solid var(--color-gold);
}
.benefit-card .ico { color: var(--color-gold); font-size: 1.8rem; margin-bottom: 12px; }
.benefit-card h5 { font-size: 1.05rem; }

.sidebar-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 28px;
  margin-bottom: 26px;
}
.sidebar-card h4 {
  font-size: 1.1rem;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-gold);
  margin-bottom: 18px;
}
.sidebar-services { list-style: none; padding: 0; margin: 0; }
.sidebar-services li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: var(--color-off-white);
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  transition: all .3s ease;
}
.sidebar-services li a:hover,
.sidebar-services li a.active {
  background: var(--color-navy);
  color: #fff;
  padding-left: 22px;
}
.sidebar-services li a.active { background: var(--color-gold); }

.sidebar-contact {
  background:
    linear-gradient(135deg, rgba(8,26,58,0.95), rgba(15,42,87,0.92)),
    url('../images/ServiceCta.webp') center/cover;
  color: #fff;
  padding: 36px 28px;
  text-align: center;
}
.sidebar-contact h4 { color: #fff; border: 0; padding: 0; }
.sidebar-contact .phone-big {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
  display: block;
  margin: 16px 0;
}

/* Stats inline */
.stat-inline { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.stat-inline .item { padding: 0 18px; border-left: 3px solid var(--color-gold); }
.stat-inline .num { font-family: var(--font-display); font-weight: 800; color: var(--color-navy); font-size: 2rem; line-height: 1; }
.stat-inline .lbl { font-size: 0.85rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }

/* AOS fallback */
[data-aos] { opacity: 1 !important; transform: none !important; }
.aos-ready [data-aos] { opacity: 0; }
.aos-ready [data-aos].aos-animate { opacity: 1; transform: none !important; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 48px; height: 48px;
  background: var(--color-navy);
  color: #fff;
  display: none;
  align-items: center; justify-content: center;
  z-index: 998;
  transition: all .3s ease;
  cursor: pointer;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--color-gold); color: #fff; }
