/* ============================================================
   Hamza Consultants Agency Ltd — Main Stylesheet
   Color Palette: Charcoal #101820 | Emerald #21443b | Muted Gold #b9914a | White #fff
   ============================================================ */

/* Google Fonts loaded via <link> in header.php — no @import needed here */

:root {
  --navy:      #21443b;
  --navy-dark: #101820;
  --navy-mid:  #2f5f52;
  --gold:      #b9914a;
  --gold-light:#d7bd79;
  --gold-dark: #8a6a2f;
  --white:     #ffffff;
  --off-white: #f6f7f3;
  --light-gray:#eef2ef;
  --text-dark: #17211f;
  --text-muted:#65716d;
  --border:    #dfe6e1;
  --shadow:    0 4px 24px rgba(16,24,32,.12);
  --shadow-lg: 0 12px 40px rgba(16,24,32,.18);
  --radius:    8px;
  --radius-lg: 16px;
  --transition:all .3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

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

.gold-text  { color: var(--gold) !important; }
.navy-text  { color: var(--navy) !important; }
.white-text { color: var(--white) !important; }

.gold-line {
  display: inline-block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 16px;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-title span { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  padding: 14px 34px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(185,145,74,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(185,145,74,.5);
  color: var(--navy-dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  padding: 12px 32px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 34px;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  color: var(--navy);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  transition: var(--transition);
  padding: 18px 0;
}

#mainNav.scrolled {
  background: var(--navy-dark) !important;
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}

#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  width: 46px; height: 46px;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  border: 1px solid rgba(185,145,74,.68);
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.05), 0 8px 24px rgba(0,0,0,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--gold-light);
  flex-shrink: 0;
}

.brand-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  display: block;
}
.brand-text .brand-tagline {
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .04em;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 32px); }

.navbar-toggler { border-color: rgba(185,145,74,.6); }
.navbar-toggler-icon { filter: invert(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 8px 22px !important;
  border-radius: 4px;
  margin-left: 10px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .88; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 1s ease, visibility 1s ease, transform 7s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,18,16,.88) 0%,
    rgba(16,24,32,.70) 55%,
    rgba(16,24,32,.35) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185,145,74,.15);
  border: 1px solid rgba(185,145,74,.4);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-dots,
.hero-indicators {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot,
.hero-indicators button {
  width: 38px; height: 3px;
  background: rgba(255,255,255,.4);
  border: none;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active,
.hero-indicators button.active { background: var(--gold); width: 60px; }

.hero-arrow,
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(185,145,74,.18);
  border: 1px solid rgba(185,145,74,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-arrow:hover,
.carousel-arrow:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.slide-counter {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 10;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
}
.slide-counter span { color: var(--gold); font-size: 1.2rem; }

/* ── Hero Stats Bar ── */
.hero-stats-bar {
  background: var(--white);
  padding: 28px 0;
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--gold);
}

.stat-item {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-number .gold-plus { color: var(--gold); }
.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 4px;
}

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

.about-img-wrap {
  position: relative;
  padding: 20px 20px 0 0;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 200px;
  height: 160px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
  padding: 16px;
  z-index: 2;
}

.about-img-accent .years {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.about-img-accent .years-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

.about-corner-badge {
  position: absolute;
  top: 0; left: -15px;
  width: 120px; height: 120px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 12px;
  text-align: center;
  z-index: 2;
}

.about-corner-badge i { font-size: 1.8rem; color: var(--gold); margin-bottom: 6px; }
.about-corner-badge span { font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.about-content { padding: 0 24px; }

.ceo-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  border-left: 4px solid var(--gold);
}
.ceo-avatar {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ceo-info .ceo-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
.ceo-info .ceo-title { font-size: .78rem; color: var(--text-muted); }

.value-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.value-pill i { color: var(--gold); }
.value-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.value-pill:hover i { color: var(--gold-light); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(185,145,74,.12), rgba(185,145,74,.06));
  border: 2px solid rgba(185,145,74,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border-color: transparent;
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 18px;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold-dark); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(185,145,74,.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  background: rgba(185,145,74,.1);
  border-color: rgba(185,145,74,.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-card p { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }

/* ============================================================
   APPROACH SECTION
   ============================================================ */
.approach-section { background: var(--white); }

.approach-step {
  display: flex;
  gap: 22px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.step-number {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.step-content h5 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: .9rem; color: var(--text-muted); margin: 0; }

.approach-img-wrap { position: relative; }
.approach-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.approach-quote-card {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  max-width: 280px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
}
.approach-quote-card p { font-size: .88rem; font-style: italic; color: rgba(255,255,255,.85); margin: 0; }
.approach-quote-card .quote-attr { color: var(--gold); font-size: .75rem; font-weight: 600; margin-top: 10px; display: block; }

/* ============================================================
   PARTNERS / NETWORKS MARQUEE
   ============================================================ */
.partners-section {
  background: var(--light-gray);
  padding: 50px 0;
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 50px;
  color: var(--navy);
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.marquee-item i { color: var(--gold); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.quote-icon {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 3.5rem;
  color: rgba(185,145,74,.18);
  line-height: 1;
  font-family: Georgia, serif;
}

.stars { color: var(--gold); font-size: .9rem; margin-bottom: 16px; }

.testimonial-card p {
  font-size: .93rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .92rem; color: var(--navy); }
.author-title { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(185,145,74,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(185,145,74,.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 2; }

.cta-icon-ring {
  width: 80px; height: 80px;
  border: 2px solid rgba(185,145,74,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--gold);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(185,145,74,.12), rgba(185,145,74,.06));
  border: 1px solid rgba(185,145,74,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h6 { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 4px; }
.contact-item p { font-size: .93rem; color: var(--navy); margin: 0; }
.contact-item a { color: var(--navy); }
.contact-item a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-label { font-weight: 600; font-size: .85rem; color: var(--navy); margin-bottom: 6px; }

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: .92rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185,145,74,.15);
  outline: none;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.6); font-size: .85rem; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
}

.footer-main { padding: 70px 0 40px; }

.footer-brand .footer-logo-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  border: 1px solid rgba(185,145,74,.68);
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.05), 0 8px 24px rgba(0,0,0,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-brand .footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .footer-brand-sub {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .87rem; line-height: 1.7; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.footer-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(185,145,74,.25);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links a i { font-size: .6rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  font-size: .95rem;
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-newsletter { margin-top: 6px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--white);
  font-size: .88rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }
.newsletter-btn {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom a { color: var(--gold); }

/* ── Back to Top ── */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left  { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.fade-left.visible  { opacity: 1; transform: translateX(0); }

.fade-right { opacity: 0; transform: translateX(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* staggered delays */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .about-img-main { height: 360px; }
  .approach-main-img { height: 380px; }
  .approach-quote-card { position: static; max-width: 100%; margin-top: 20px; }
  .hero-content { padding-top: 80px; }
  .contact-form-card { padding: 28px 22px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 65px 0; }
  .hero-title { font-size: 2rem; }
  .hero-btns { gap: 10px; }
  .about-img-accent { display: none; }
  .about-corner-badge { display: none; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .newsletter-form { flex-direction: column; }
  .slide-counter { display: none; }
  #mainNav { padding: 12px 0; }
}

/* Divider ornament */
.ornament-divider {
  text-align: center;
  margin: 0 0 50px;
  position: relative;
}
.ornament-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--border);
  transform: translateY(-50%);
}
.ornament-divider span {
  position: relative;
  background: inherit;
  padding: 0 18px;
  color: var(--gold);
  font-size: 1.1rem;
}
