* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #b08d57;
  --primary-dark: #8d6e3f;
  --dark: #0f1720;
  --dark-2: #1c2733;
  --light: #ffffff;
  --text: #5b6570;
  --bg: #f8f6f1;
  --border: #e5e0d5;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dark-2);
  background: var(--light);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1150px, 90%);
  margin: 0 auto;
}

.top-bar {
  background: var(--dark);
  color: #d9dee4;
  font-size: 0.9rem;
  padding: 0.75rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 23, 32, 0.96);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 1px;
}


/* active nav*/

.nav-links a {
  position: relative;
  color: var(--light);
  font-size: 0.95rem;
  transition: 0.3s;
  padding-bottom: 0.35rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

/*breadcrumbs*/

.breadcrumb-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .separator {
  color: #9aa3ad;
}

.breadcrumb .current {
  color: var(--dark);
  font-weight: 700;
}

/*logo*/

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.logo span {
  line-height: 1;
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(160deg, #0a0c0f 0%, #111419 60%, #0d1017 100%);
  color: #c8c2b6;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

/* Gold ruled line at top */
.footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c7a15a 30%, #e8c97a 50%, #c7a15a 70%, transparent 100%);
}

/* Faint scale watermark */
.footer::after {
  content: '⚖';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  color: rgba(199, 161, 90, 0.03);
  pointer-events: none;
  line-height: 1;
}

/* ── GRID ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem 4rem;
  padding: 4rem 0 3rem;
  position: relative;
}

/* ── BRAND ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(199, 161, 90, 0.4));
}

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #c7a15a;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #8a8478;
  max-width: 26ch;
}

/* ── SOCIAL ICONS ── */
.social-icons {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #c7a15a;
  background: rgba(199, 161, 90, 0.08);
  border: 1px solid rgba(199, 161, 90, 0.18);
  transition: background 0.28s, border-color 0.28s, transform 0.22s, box-shadow 0.28s;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.social-icons a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 161, 90, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.28s;
  border-radius: 50%;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(199, 161, 90, 0.2);
}

.social-icons a:hover::before { opacity: 1; }

.social-icons a i {
  font-size: 0.9rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* remove any per-icon nudges */
  transform: none !important;
}

/* Platform accent colors on hover */
.social-icons a[aria-label="Facebook"]:hover  { color: #4267B2; border-color: #4267B2; background: rgba(66, 103, 178, 0.12); box-shadow: 0 6px 18px rgba(66, 103, 178, 0.25); }
.social-icons a[aria-label="Instagram"]:hover { color: #e1306c; border-color: #e1306c; background: rgba(225, 48, 108, 0.12); box-shadow: 0 6px 18px rgba(225, 48, 108, 0.25); }
.social-icons a[aria-label="X"]:hover         { color: #fff;    border-color: #555;    background: rgba(255, 255, 255, 0.08); box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1); }
.social-icons a[aria-label="LinkedIn"]:hover  { color: #0a66c2; border-color: #0a66c2; background: rgba(10, 102, 194, 0.12); box-shadow: 0 6px 18px rgba(10, 102, 194, 0.25); }
.social-icons a[aria-label="WhatsApp"]:hover  { color: #25d366; border-color: #25d366; background: rgba(37, 211, 102, 0.12); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25); }

/* Platform accent colors on hover */
.social-icons a[aria-label="Facebook"]:hover  { color: #4267B2; border-color: #4267B2; background: rgba(66, 103, 178, 0.12); box-shadow: 0 6px 18px rgba(66, 103, 178, 0.25); }
.social-icons a[aria-label="Instagram"]:hover { color: #e1306c; border-color: #e1306c; background: rgba(225, 48, 108, 0.12); box-shadow: 0 6px 18px rgba(225, 48, 108, 0.25); }
.social-icons a[aria-label="X"]:hover         { color: #fff;    border-color: #555;    background: rgba(255, 255, 255, 0.08); box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1); }
.social-icons a[aria-label="LinkedIn"]:hover  { color: #0a66c2; border-color: #0a66c2; background: rgba(10, 102, 194, 0.12); box-shadow: 0 6px 18px rgba(10, 102, 194, 0.25); }
.social-icons a[aria-label="WhatsApp"]:hover  { color: #25d366; border-color: #25d366; background: rgba(37, 211, 102, 0.12); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25); }

/* ── NAV COLUMNS ── */
.footer-grid > div:not(.footer-brand) {
  padding-top: 0.25rem;
}

.footer-grid h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #c7a15a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(199, 161, 90, 0.2);
}

.footer-grid a {
  display: block;
  color: #8a8478;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.32rem 0;
  transition: color 0.22s, padding-left 0.22s;
}

/* Override: footer logo must stay as flex row (logo + name side by side) */
.footer-grid a.footer-logo {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  color: #c7a15a;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(199, 161, 90, 0.4));
}

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #c7a15a;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.footer-grid a.footer-logo::before { display: none; }
.footer-grid a.footer-logo:hover { padding-left: 0; color: #e8c97a; }

.footer-grid a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: #c7a15a;
  vertical-align: middle;
  margin-right: 0;
  transition: width 0.22s, margin-right 0.22s;
}

.footer-grid a:hover { color: #e8c97a; padding-left: 0.5rem; }
.footer-grid a:hover::before { width: 10px; margin-right: 6px; }

/* ── DIVIDER ── */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 161, 90, 0.15) 20%, rgba(199, 161, 90, 0.15) 80%, transparent);
  margin: 0;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #56544f;
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: #56544f;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #c7a15a; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer::after { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}


/*fonts footer*/

/* ── BRAND NAME (logo text) ── */
.footer-logo span {
  font-family: 'Playfair Display', serif;   /* replaces Cormorant Garamond */
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ── SECTION HEADINGS ── */
.footer-grid h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;                   /* wide-tracked spaced caps */
  text-transform: uppercase;
}

/* ── NAV LINKS & BODY TEXT ── */
.footer,
.footer-grid a,
.footer-brand p {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;                          /* light weight = luxe feel */
  letter-spacing: 0.06em;
}

/* ── BOTTOM BAR ── */
.footer-bottom p,
.footer-bottom-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;                   /* extra airy at small size */
}



.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--light);
  font-size: 0.95rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 1.7rem;
  background: transparent;
  border: none;
  color: var(--light);
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid var(--light);
  color: var(--light);
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--dark);
}


.hero {
  min-height: 92vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -78px;
  padding-top: 78px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 15, 20, 0.82), rgba(10, 15, 20, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--light);
  max-width: 720px;
}

.hero-tag,
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  color: #e6eaee;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin:.8em 0em;
}

.trust-strip {
  background: var(--bg);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-card {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.trust-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}


/* ── TEAM PREVIEW ── */
.team-preview { background: var(--cream); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.team-card {
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.team-card:hover img { filter: grayscale(0%); }

.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-2);
  padding: 1.25rem 1.5rem 0.2rem;
}

.team-card .team-role {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 1.5rem 0.75rem;
}

.team-card p:not(.team-role) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  padding: 0 1.5rem 1.5rem;
}

.team-preview > .container > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.team-preview {
  text-align: center;
}

/*testimonial preview*/

.testimonials-preview {
  background: var(--bg);
}

.testimonials-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tprev-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.6rem;
  transition: 0.3s ease;
}

.tprev-card:hover {
  transform: translateY(-6px);
}

.tprev-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tprev-image {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border: 3px solid #f2f2f2;
  background: #ddd;
}

.tprev-meta h4 {
  margin: 0 0 0.2rem;
  color: var(--dark);
}

.tprev-meta span {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.tprev-stars {
  color: #c9a227;
  letter-spacing: 3px;
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.tprev-card p {
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}

.testimonials-preview-cta {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 992px) {
  .testimonials-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-preview-grid {
    grid-template-columns: 1fr;
  }
}



/* about */

.about-link-section {
  background: #f8f6f1;
}

.about-link-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-link-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-link-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-link-content {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.about-link-content h2 {
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--dark);
}

.about-link-content p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.85;
}

.about-link-actions {
  margin-top: 1.2rem;
}

@media (max-width: 992px) {
  .about-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-link-content {
    padding: 1.6rem;
  }

  .about-link-image img {
    min-height: 300px;
  }
}




.section {
  padding: 5rem 0;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading.center {
  text-align: center;
  max-width: 750px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section p {
  color: var(--text);
}

.about-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: fill;
}

.about-text p {
  margin-bottom: 1rem;
}

.practice {
  background: var(--bg);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.practice-card {
  display: block;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.practice-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.practice-card h3 {
  margin-bottom: 0.75rem;
  color: var(--dark);
  line-height: 1.3;
}

.practice-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.practice-actions {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 992px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}

.why-us {
  background: var(--dark);
  color: var(--light);
}

.why-us p {
  color: #cfd7df;
}

.why-points {
  display: grid;
  gap: 1.2rem;
}

.why-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 8px;
}

.why-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}
/* ── TESTIMONIALS PREVIEW (index.php) ── */
.testimonials-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tprev-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tprev-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.tprev-stars {
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.tprev-card p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
}

.tprev-card h4 {
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.tprev-card span {
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.testimonials-preview-cta {
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .testimonials-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .testimonials-preview-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background: var(--light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  font: inherit;
}

.contact-info ul {
  list-style: none;
  margin-top: 1rem;
}

.contact-info li {
  margin-bottom: 0.8rem;
  color: var(--text);
}

.footer {
  background: var(--dark);
  color: #dce3ea;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer h3,
.footer h4 {
  color: var(--light);
  margin-bottom: 1rem;
}

.footer a {
  display: block;
  margin-bottom: 0.6rem;
  color: #dce3ea;
}

.footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .practice-grid,
  .trust-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .desktop-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem 0;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .practice-grid,
  .trust-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 85vh;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.4rem;
  }
}


/* ============================================================
   ABOUT PAGE STYLES
   Sections: page hero, values, story, why us, timeline,
             notable cases, awards, affiliations, CTA
   ============================================================ */

/* ========== INNER PAGE HEADER ========== */
.inner-header {
  background: rgba(15, 23, 32, 0.96);
  box-shadow: var(--shadow);
}

.nav-links a.active {
  color: var(--primary);
}

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: url("images/hero.jpg") center/cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 15, 20, 0.86), rgba(10, 15, 20, 0.55));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--light);
  max-width: 760px;
  padding: 5rem 0;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-content p {
  color: #e3e8ed;
  font-size: 1.05rem;
}

/* ========== ABOUT VALUES ========== */
.about-values {
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 8px;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

/* ========== STORY SECTION ========== */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.story-text p {
  margin-bottom: 1rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-box {
  background: var(--dark);
  color: var(--light);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-box h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ========== ABOUT WHY GRID ========== */
.about-why-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ========== FIRM HISTORY TIMELINE ========== */
.timeline-section {
  background: var(--dark);
}

.timeline-section .section-heading h2,
.timeline-section .section-heading p {
  color: var(--light);
}

.timeline-section .section-tag {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary) 8%, var(--primary) 92%, transparent);
  opacity: 0.4;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.8rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: uppercase;
  width: 2.8rem;
  text-align: right;
  line-height: 1.6;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--dark);
  outline: 2px solid var(--primary);
  flex-shrink: 0;
  margin-top: 0.3rem;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  flex: 1;
  transition: background 0.25s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.07);
}

.timeline-content h3 {
  color: var(--light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ========== NOTABLE CASES ========== */
.notable-cases-section {
  background: var(--bg);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.case-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.case-area {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(var(--primary-rgb, 140, 100, 20), 0.08);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(var(--primary-rgb, 140, 100, 20), 0.2);
  width: fit-content;
}

.case-card h3 {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

.case-card p {
  font-size: 0.9rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.case-outcome {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.outcome-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #6b7280);
}

.outcome-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.cases-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted, #9ca3af);
  text-align: center;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ========== AWARDS & RECOGNITION ========== */
.awards-section {
  background: var(--light);
  border-top: 1px solid var(--border);
}

.award-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.award-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.award-card--featured {
  background: var(--dark);
  border-top-color: var(--primary);
  border-color: var(--dark);
}

.award-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.award-year {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.award-issuer {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #9ca3af);
  text-align: right;
  line-height: 1.3;
}

.award-card--featured .award-issuer {
  color: rgba(255, 255, 255, 0.45);
}

.award-card h3 {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--dark);
  margin: 0;
}

.award-card--featured h3 {
  color: var(--light);
}

.award-card p {
  font-size: 0.86rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.award-card--featured p {
  color: rgba(255, 255, 255, 0.6);
}

/* ========== AFFILIATIONS ========== */
.affiliations-section {
  background: var(--bg);
}

.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.affiliation-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.affiliation-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

.affiliation-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--primary-dark);
  margin-top: 0.1rem;
}

.affiliation-icon svg {
  width: 100%;
  height: 100%;
}

.affiliation-item h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.affiliation-item p {
  font-size: 0.85rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.55;
  margin: 0;
}

/* ========== CONSULTATION CTA ========== */
.consultation-cta {
  padding-top: 0;
}

.consultation-box {
  background: var(--dark);
  color: var(--light);
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.consultation-box p {
  color: #d7dde3;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .award-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .values-grid,
  .story-grid,
  .about-why-grid,
  .affiliations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .award-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid,
  .story-grid,
  .story-stats,
  .about-why-grid,
  .cases-grid,
  .award-cards,
  .affiliations-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline mobile */
  .timeline::before {
    left: 0;
  }

  .timeline-item {
    flex-direction: column;
    gap: 0.6rem;
    padding-left: 1.4rem;
  }

  .timeline-marker {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.6rem;
    padding-top: 0;
  }

  .timeline-year {
    text-align: left;
    width: auto;
  }

  .timeline-dot {
    margin-top: 0.2rem;
    position: absolute;
    left: -6px;
    top: 0.4rem;
  }

  .affiliation-item {
    flex-direction: column;
    gap: 0.8rem;
  }

  .consultation-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== TEAM PAGE ========== */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-member-card {
  display: block;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-6px);
}

.team-member-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #ddd;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-content {
  padding: 1.3rem;
  text-align: center;
}

.team-member-content h3 {
  margin-bottom: 0.4rem;
}

.team-member-content .team-role {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.team-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ========== MEMBER PROFILE PAGE ========== */
.profile-section {
  padding: 5rem 0;
  background: #f7f5f0;
}

.profile-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 auto 1.75rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
  max-width: 1020px;
  width: 100%;
}

.back-link:hover {
  text-decoration: underline;
}

.profile-top {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  max-width: 1020px;
  margin: 0 auto 2rem;
}

.profile-image {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-info-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
  padding: 2rem 2.2rem;
}

.profile-info-card h1 {
  margin-bottom: 0.35rem;
  font-size: 2.2rem;
}

.profile-role {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.profile-intro {
  max-width: 62ch;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 0;
}

.profile-meta {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 1.8rem;
}

.profile-meta p {
  margin: 0;
  line-height: 1.75;
}

.profile-meta strong {
  color: var(--dark);
}

.profile-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1020px;
  margin: 0 auto;
  align-items: start;
}

.profile-block {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  padding: 1.9rem 2.2rem;
  height: 100%;
}

.profile-block h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-size: 1.45rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.profile-block h3::after {
  content: "";
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: 0;
}

.profile-block p {
  max-width: 38ch;
  line-height: 1.9;
  margin: 0;
  color: var(--text);
}

.profile-list {
  padding-left: 1.2rem;
  max-width: 38ch;
  margin: 0;
}

.profile-list li {
  margin-bottom: 0.8rem;
  line-height: 1.85;
  color: var(--text);
}

@media (max-width: 900px) {
  .profile-top {
    grid-template-columns: 1fr;
  }

  .profile-image {
    height: 420px;
    max-width: 520px;
  }

  .profile-body {
    grid-template-columns: 1fr;
  }

  .profile-block p,
  .profile-list {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .profile-section {
    padding: 3.5rem 0;
  }

  .profile-container {
    padding: 0 1rem;
  }

  .profile-image {
    height: 340px;
  }

  .profile-info-card,
  .profile-block {
    padding: 1.4rem;
  }

  .profile-info-card h1 {
    font-size: 1.8rem;
  }

  .profile-block h3 {
    font-size: 1.25rem;
  }
}
/* =========================
   PRACTICE AREAS PAGE
========================= */

.practice-hero {
  background: linear-gradient(rgba(20, 32, 51, 0.78), rgba(20, 32, 51, 0.78)),
              url("images/practice-hero.jpg") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.practice-hero__content {
  max-width: 850px;
  margin: 0 auto;
}

.practice-hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 18px;
  line-height: 1.1;
}

.practice-hero__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 700px;
}

/* Main section */
.practice-areas {
  padding: 80px 20px;
  background: #f8f6f2;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.practice-areas__intro {
  text-align: center;
  margin-bottom: 50px;
}

.practice-areas__intro h2 {
  font-size: 2.2rem;
  color: #142033;
  margin-bottom: 12px;
}

.practice-areas__intro p {
  font-size: 1rem;
  color: #5f6b7a;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.practice-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.practice-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Image wrapper */
.practice-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

/* Image */
.practice-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Content */
.practice-card__content {
  padding: 24px 20px 26px;
  text-align: center;
}

.practice-card__content h3 {
  font-size: 1.6rem;
  color: #142033;
  margin-bottom: 10px;
}

.practice-card__content p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5f6b7a;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .practice-hero {
    padding: 80px 18px;
  }

  .practice-areas {
    padding: 60px 18px;
  }

  .practice-card__image {
    height: 220px;
  }

  .practice-card__content h3 {
    font-size: 1.4rem;
  }
}

/* =========================
   SERVICE DETAIL PAGES
========================= */

.service-page-hero {
  background: linear-gradient(rgba(20, 32, 51, 0.82), rgba(20, 32, 51, 0.82)),
              url("images/practice-hero.jpg") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 110px 20px 100px;
}

.service-page-hero__content {
  max-width: 820px;
  margin: 0 auto;
}

.service-page-hero__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.service-page-hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.service-page-hero__content p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.service-page {
  padding: 85px 20px;
  background: #f8f6f2;
}

.service-page__container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.service-page__image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.service-page__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.service-page__content {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 34px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.service-page__content h2 {
  font-size: 2rem;
  color: #142033;
  margin-bottom: 18px;
  line-height: 1.2;
}

.service-page__content h3 {
  font-size: 1.35rem;
  color: #142033;
  margin: 28px 0 14px;
}

.service-page__content p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5f6b7a;
  margin-bottom: 16px;
}

.service-page__list {
  margin: 0;
  padding-left: 1.2rem;
}

.service-page__list li {
  color: #415063;
  line-height: 1.8;
  margin-bottom: 8px;
}

.service-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #142033;
  color: #142033;
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--outline:hover {
  background: #142033;
  color: #ffffff;
}

@media (max-width: 900px) {
  .service-page__container {
    grid-template-columns: 1fr;
  }

  .service-page__image img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .service-page-hero {
    padding: 85px 18px 75px;
  }

  .service-page {
    padding: 60px 18px;
  }

  .service-page__content {
    padding: 28px 22px;
  }

  .service-page__content h2 {
    font-size: 1.7rem;
  }
}


/* TESTIMONIALS PAGE*/

.testimonials-hero {
  background: linear-gradient(rgba(11, 26, 58, 0.78), rgba(11, 26, 58, 0.78)),
              url('images/testimonials-hero.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
}

.testimonials-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.testimonials-hero h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  color: #fff;
}

.testimonials-hero p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

.testimonial-stats {
  padding: 70px 20px;
  background: #f8f9fc;
}

.testimonial-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #0b1a3a;
}

.stat-card p {
  margin: 0;
  color: #555;
  font-weight: 500;
}

.testimonial-filter-section {
  padding: 25px 20px 10px;
  background: #fff;
}

.testimonial-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  border: 1px solid #d9dce3;
  background: #fff;
  color: #0b1a3a;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0b1a3a;
  color: #fff;
  border-color: #0b1a3a;
}

.testimonials-page {
  padding: 70px 20px 90px;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-top: 4px solid #c9a227;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.testimonial-card__image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1f1f1;
  background: #eaeaea;
}

.testimonial-card h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  color: #0b1a3a;
}

.testimonial-card span {
  color: #777;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-stars {
  color: #c9a227;
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testimonial-cta {
  background: linear-gradient(135deg, #0b1a3a, #142b5f);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonial-cta__content {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-cta h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
  color: #fff;
}

.testimonial-cta p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .testimonial-stats__grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .testimonial-stats__grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-hero {
    min-height: 50vh;
  }

  .testimonials-hero h1 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 22px;
  }
}

/*contact*/

.contact-hero {
  background: linear-gradient(rgba(8, 18, 42, 0.75), rgba(8, 18, 42, 0.78)),
              url('images/contact-hero.jpg') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
}

.contact-hero__content {
  max-width: 820px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 3.3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.contact-hero p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}

.contact-hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-block;
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.8);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: #0b1a3a;
}

.contact-highlights {
  margin-top: -50px;
  position: relative;
  z-index: 2;
  padding: 0 20px 40px;
}

.contact-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.highlight-card i {
  font-size: 2rem;
  color: #c9a227;
  margin-bottom: 16px;
}

.highlight-card h3 {
  margin-bottom: 12px;
  color: #0b1a3a;
}

.highlight-card p {
  color: #555;
  line-height: 1.8;
}

.contact-main {
  padding: 60px 20px 90px;
  background: #f8f9fc;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-info-card i {
  font-size: 1.3rem;
  color: #c9a227;
  margin-top: 4px;
}

.contact-info-card h3 {
  margin: 0 0 8px;
  color: #0b1a3a;
}

.contact-info-card p,
.contact-info-card a {
  color: #555;
  text-decoration: none;
  line-height: 1.8;
}

.contact-info-card a:hover {
  color: #0b1a3a;
}

.contact-hours {
  background: linear-gradient(135deg, #0b1a3a, #142b5f);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-hours h3 {
  margin-bottom: 18px;
  color: #fff;
}

.contact-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.96rem;
}

.contact-hours li:last-child {
  border-bottom: none;
}

.contact-form-panel {
  background: #fff;
  padding: 34px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.contact-form-panel__header {
  margin-bottom: 24px;
}

.form-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.12);
  color: #8a6b10;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-form-panel h2 {
  margin-bottom: 12px;
  color: #0b1a3a;
  font-size: 2rem;
}

.contact-form-panel p {
  color: #666;
  line-height: 1.8;
}

.contact-form {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0b1a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9dde6;
  border-radius: 14px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9a227;
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

.contact-submit-btn {
  border: none;
  cursor: pointer;
}

.contact-map-section {
  padding: 0 20px 90px;
  background: #f8f9fc;
}

.contact-map {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(rgba(11, 26, 58, 0.4), rgba(11, 26, 58, 0.4)),
              url('images/contact-map-placeholder.jpg') center/cover no-repeat;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map__overlay {
  text-align: center;
  color: #fff;
  padding: 30px;
  max-width: 650px;
}

.contact-map__overlay h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-map__overlay p {
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
}

.contact-map--embed {
  padding: 0;
  background: none;
  min-height: auto;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.contact-map--embed iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 24px;
}

.contact-cta-strip {
  background: linear-gradient(135deg, #0b1a3a, #112552);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact-cta-strip__content {
  max-width: 720px;
  margin: 0 auto;
}

.contact-cta-strip h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contact-cta-strip p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .contact-highlights__grid,
  .contact-main__grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 58vh;
    padding: 80px 20px;
  }

  .contact-hero h1 {
    font-size: 2.1rem;
  }

  .contact-form-panel {
    padding: 24px;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-cta-strip h2 {
    font-size: 2rem;
  }
}
/* ── FLOATING WHATSAPP BUTTON (left side) ── */
.floating-whatsapp {
  position: fixed;
  bottom: 60px;
  left: 28px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

.floating-whatsapp__tooltip {
  position: absolute;
  left: calc(100% + 12px);
  background: #111;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.floating-whatsapp__tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #111;
}

.floating-whatsapp:hover .floating-whatsapp__tooltip { opacity: 1; }

/* ── BACK TO TOP BUTTON (right side) ── */
.back-to-top {
  position: fixed;
  bottom: 65px;
  right: 28px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c7a15a, #e8c97a);
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f1720;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(199, 161, 90, 0.35);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, box-shadow 0.25s;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 6px 18px rgba(199, 161, 90, 0.5);
  transform: translateY(-2px);
}