/* ============================================================
   DHENIDA INTERNATIONAL LTD — Main Stylesheet
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --navy:     #0B1F3A;
  --navy-deep:#061220;
  --gold:     #D4AF37;
  --gold-lt:  #F0D060;
  --white:    #FFFFFF;
  --off-white:#F5F5F5;
  --mid-grey: #9E9E9E;
  --dark-grey:#333333;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --shadow-md: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg: 0 16px 56px rgba(11,31,58,0.18);
  --border-radius: 4px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title { color: var(--navy); margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 620px;
  margin: 0 auto 3rem;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: transparent;
  color: var(--navy);
}

/* --- GOLD DIVIDER --- */
.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 1.6rem;
}
.gold-rule.left { margin-left: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}
.navbar.scrolled {
  background: rgba(11,31,58,0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  padding: 0.9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 52px; width: auto; }
.nav-logo .logo-dark  { display: block; }
.nav-logo .logo-white { display: none; }

.navbar.scrolled .nav-logo .logo-dark  { display: none; }
.navbar.scrolled .nav-logo .logo-white { display: block; }

/* On pages with navy hero, always show white logo */
.hero-dark .navbar:not(.scrolled) .nav-logo .logo-dark  { display: none; }
.hero-dark .navbar:not(.scrolled) .nav-logo .logo-white { display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content:'';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); }

/* For non-hero pages */
.page-nav .nav-link { color: var(--navy); }
.page-nav .nav-link:hover { color: var(--gold); }
.page-nav.scrolled .nav-link { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--border-radius);
  font-weight: 700;
}
.nav-cta:hover { background: var(--gold-lt); color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.page-nav:not(.scrolled) .hamburger span { background: var(--navy); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1a3a6e 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content:'';
  position: absolute;
  inset: 0;
  background: url('../images/stats-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.page-header .breadcrumb { color: var(--gold); font-size: 0.85rem; margin-top: 0.8rem; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3a6e 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212,175,55,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,175,55,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 720px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.4rem;
  max-width: 580px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.5); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section-light { background: var(--off-white); }
.section-navy  { background: var(--navy); }
.section-dark  { background: var(--navy-deep); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--gold);
  padding: 2.2rem 1.8rem;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--navy);
  transition: height var(--transition);
  z-index: 0;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card * { position: relative; z-index: 1; }
.feature-card:hover h4,
.feature-card:hover p { color: var(--white); }
.feature-card:hover .fc-icon { background: rgba(212,175,55,0.2); }

.fc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  transition: all var(--transition);
}
.feature-card h4 { margin-bottom: 0.6rem; transition: color var(--transition); }
.feature-card p  { font-size: 0.9rem; color: #666; transition: color var(--transition); margin: 0; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  background: var(--white);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.sc-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .sc-img img { transform: scale(1.07); }

.sc-body { padding: 1.8rem; }
.sc-icon {
  width: 48px; height: 48px;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.sc-body h4 { margin-bottom: 0.5rem; }
.sc-body p  { font-size: 0.88rem; color: #666; margin: 0; }

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.sc-link:hover { gap: 0.7rem; color: var(--gold); }

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/stats-bg.jpg') center/cover;
  opacity: 0.12;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(212,175,55,0.2);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 1.4rem 1.6rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
}
.about-badge strong { font-size: 2rem; display: block; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.value-card p  { font-size: 0.85rem; color: #666; margin: 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2.5rem;
}
.process-steps::before {
  content:'';
  position: absolute;
  top: 32px; left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,175,55,0.2));
}
.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.step-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-card p  { font-size: 0.82rem; color: #666; margin: 0; }

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-img { border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-md); }
.service-detail-img img { width: 100%; height: 320px; object-fit: cover; }

.benefits-list { margin: 1.5rem 0; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}
.check-icon {
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.bc-img { height: 220px; overflow: hidden; }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .bc-img img { transform: scale(1.06); }

.bc-body { padding: 1.8rem; }
.bc-tag {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}
.bc-body h3 { font-size: 1.15rem; margin-bottom: 0.8rem; line-height: 1.4; }
.bc-body p  { font-size: 0.87rem; color: #666; margin-bottom: 1rem; }

.bc-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: #999;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  padding: 80px 0;
}
.article-body h2 { font-size: 1.7rem; margin: 2rem 0 0.8rem; }
.article-body h3 { font-size: 1.3rem; margin: 1.5rem 0 0.6rem; color: var(--navy); }
.article-body p  { font-size: 0.95rem; line-height: 1.85; }
.article-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.article-body ul li { font-size: 0.93rem; margin-bottom: 0.4rem; }
.article-featured-img { margin-bottom: 2rem; border-radius: var(--border-radius); overflow: hidden; }
.article-featured-img img { width: 100%; height: 420px; object-fit: cover; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: #888;
}
.a-tag { background: var(--gold); color: var(--navy); padding: 0.2rem 0.7rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }

.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--off-white);
  padding: 1.8rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--gold); }

.recent-post { display: flex; gap: 0.8rem; margin-bottom: 1rem; align-items: flex-start; }
.rp-img { width: 70px; height: 60px; min-width: 70px; object-fit: cover; border-radius: 2px; }
.rp-title { font-size: 0.82rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.rp-date  { font-size: 0.72rem; color: #999; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  padding: 80px 0;
}
.contact-info-card {
  padding: 2.5rem;
  background: var(--navy);
  border-radius: var(--border-radius);
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.ci-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ci-label { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.ci-value { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5; }

.contact-form-wrap h3 { margin-bottom: 2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-grey);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { resize: vertical; min-height: 140px; }

.map-wrap {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 420px;
  margin-top: 3rem;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content:'';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.75); position: relative; z-index: 1; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
}
.testi-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  font-family: var(--font-display);
  opacity: 0.5;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}
.testi-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 1.2rem;
}
.ta-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.ta-name  { font-weight: 600; font-size: 0.9rem; }
.ta-role  { font-size: 0.78rem; color: #999; }

.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 52px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item span:first-child { color: var(--gold); font-size: 1rem; margin-top: 2px; }

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-lt); transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid  { grid-template-columns: repeat(2,1fr); }
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .blog-grid      { grid-template-columns: repeat(2,1fr); }
  .testi-grid     { grid-template-columns: 1fr 1fr; }
  .stats-grid     { grid-template-columns: repeat(2,2fr); }
  .stat-item + .stat-item:nth-child(3) { border-left: none; }
  .process-steps  { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 860px) {
  .about-split         { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge         { right: 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-grid.reverse { direction: ltr; }
  .contact-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .article-wrap        { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger  { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 998;
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--white) !important; font-size: 1.3rem; }
  .hamburger { z-index: 999; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .features-grid  { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 120px 0 60px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(212,175,55,0.2); }
}
