/* =========================================
   Takamol Law & Legal Consultations
   RTL Arabic Website Stylesheet
   Colors from brand identity:
   Gold Primary: #D2AC67
   Gold Light:   #F9CC7A
   Gold Dark:    #BA985B
   Black:        #000000
   Charcoal:     #111111
   White:        #FFFFFF
   Ivory:        #F7F3EA
   Light Gray:   #E8E1D2
   ========================================= */

/* ---------- Google Font: Cairo ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold-primary: #D2AC67;
  --gold-light:   #F9CC7A;
  --gold-dark:    #BA985B;
  --black:        #000000;
  --charcoal:     #111111;
  --white:        #FFFFFF;
  --ivory:        #F7F3EA;
  --light-gray:   #E8E1D2;

  --header-height: 112px;
  --header-height-scrolled: 88px;
  --mobile-bar-height: 70px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-gold: 0 10px 40px rgba(210,172,103,0.18);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  text-align: right;
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: 'Cairo', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 50%;
  transform: translateX(50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.75;
  margin-top: 24px;
}

.section-title.light h2,
.section-title.light p {
  color: var(--white);
}

.section-title.light h2::after {
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold-primary);
  color: var(--black);
  border: 2px solid var(--gold-primary);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
  background-color: var(--gold-primary);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
  padding-top: 18px;
}

.header.scrolled {
  height: var(--header-height-scrolled);
  padding-top: 10px;
  background-color: rgba(0,0,0,0.96);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(210,172,103,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 64px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 54px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link.active {
  color: var(--gold-primary);
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.has-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 50%;
  transform: translateX(50%) translateY(10px);
  min-width: 300px;
  background-color: var(--black);
  border: 1px solid rgba(210,172,103,0.25);
  border-radius: var(--radius);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 22px;
  color: var(--white);
  font-size: 0.9rem;
  white-space: nowrap;
  border-bottom: 1px solid rgba(210,172,103,0.08);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: rgba(210,172,103,0.08);
  color: var(--gold-light);
  padding-right: 28px;
}

.header-cta {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  color: var(--white);
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* ---------- Mobile Menu ---------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.65);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background-color: var(--black);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(210,172,103,0.2);
}

.mobile-menu-header img {
  height: 44px;
}

.mobile-close-btn {
  background: none;
  color: var(--white);
  padding: 6px;
}

.mobile-close-btn svg {
  width: 26px;
  height: 26px;
}

.mobile-nav {
  padding: 20px 24px;
  flex: 1;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(210,172,103,0.12);
}

.mobile-nav a:hover {
  color: var(--gold-light);
  padding-right: 10px;
}

.mobile-services-title {
  color: var(--gold-primary);
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.mobile-services {
  padding-right: 12px;
}

.mobile-services a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(210,172,103,0.08);
}

.mobile-contact {
  padding: 24px;
  border-top: 1px solid rgba(210,172,103,0.2);
}

.mobile-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.mobile-contact a svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
}

.mobile-cta {
  width: 100%;
  margin-top: 16px;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, #1a150f 50%, var(--charcoal) 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(210,172,103,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(249,204,122,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(210,172,103,0.12);
  border: 1px solid rgba(210,172,103,0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-label svg {
  width: 18px;
  height: 18px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--white);
}

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

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(210,172,103,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(210,172,103,0.4);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-badge strong {
  display: block;
  color: var(--gold-primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-badge span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.hero-legal-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.legal-icon {
  position: absolute;
  color: rgba(210,172,103,0.18);
}

.legal-icon svg {
  width: 120px;
  height: 120px;
}

.legal-icon:nth-child(1) { top: 10%; right: 5%; }
.legal-icon:nth-child(2) { bottom: 15%; left: 0; }
.legal-icon:nth-child(3) { top: 40%; left: 10%; }

/* ---------- About Section ---------- */
.about {
  background-color: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--light-gray);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: var(--black);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius);
  padding: 24px 30px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-experience strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}

.about-experience span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-content h2 span {
  color: var(--gold-primary);
}

.about-content p {
  font-size: 1.08rem;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.about-feature svg {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ---------- Why Takamol Section ---------- */
.why {
  background-color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(210,172,103,0.4);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.7;
}

/* ---------- Services Section ---------- */
.services {
  background-color: var(--ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(210,172,103,0.06));
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210,172,103,0.45);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::after {
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(210,172,103,0.1);
  border: 1px solid rgba(210,172,103,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold-primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold-primary);
  color: var(--black);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 22px;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-link:hover {
  color: var(--gold-primary);
  gap: 14px;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ---------- Stats Section ---------- */
.stats {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(210,172,103,0.08) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 30px;
  border: 1px solid rgba(210,172,103,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(210,172,103,0.35);
  background: rgba(210,172,103,0.05);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* ---------- Founder Section ---------- */
.founder {
  background-color: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content image";
  gap: 70px;
  align-items: center;
}

.founder-content {
  grid-area: content;
}

.founder-image {
  grid-area: image;
}

.founder-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.4;
}

.founder-content h2 span {
  color: var(--gold-primary);
}

.founder-content p {
  font-size: 1.08rem;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.9;
}

.founder-quote {
  background: var(--ivory);
  border-right: 4px solid var(--gold-primary);
  padding: 22px 24px;
  border-radius: 8px 0 0 8px;
  margin-bottom: 28px;
}

.founder-quote p {
  font-style: italic;
  margin: 0;
  color: var(--charcoal);
  font-weight: 600;
}

.founder-image {
  order: 1;
  position: relative;
}

.founder-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.founder-image-frame img {
  width: 100%;
  height: auto;
}

.founder-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
}

.founder-name-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(210,172,103,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--white);
  backdrop-filter: blur(6px);
}

.founder-name-card strong {
  display: block;
  color: var(--gold-primary);
  font-size: 1.15rem;
}

.founder-name-card span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* ---------- Branches Section ---------- */
.branches {
  background-color: var(--ivory);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.branch-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.branch-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, var(--white) 0%, rgba(210,172,103,0.05) 100%);
}

.branch-card.featured::before {
  content: attr(data-featured-label);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(50%);
  background: var(--gold-primary);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 12px 12px;
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(210,172,103,0.4);
}

.branch-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(210,172,103,0.1);
  border: 1px solid rgba(210,172,103,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.branch-icon svg {
  width: 32px;
  height: 32px;
}

.branch-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.branch-card p {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.7;
}

/* ---------- Blog Section ---------- */
.blog {
  background-color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.blog-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-primary);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

.blog-content {
  padding: 26px;
}

.blog-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-content p {
  font-size: 0.92rem;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 18px;
  line-height: 1.7;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(210,172,103,0.12) 0%, transparent 60%);
}

.cta-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-content h2 span {
  color: var(--gold-primary);
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Social Icons ---------- */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.social-icon-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon-light:hover {
  background: #b68c2f;
  border-color: #b68c2f;
  color: #fff;
  transform: translateY(-2px);
}

.social-icon-dark {
  color: #0f172a;
  background: #f8f7f5;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.social-icon-dark:hover {
  background: #b68c2f;
  border-color: #b68c2f;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Footer (Desktop) ---------- */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(210,172,103,0.2);
}

.footer-col h4 {
  color: var(--gold-primary);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.footer-about img {
  height: 52px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-right: 6px;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  margin-right: 20px;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ---------- Mobile Footer ---------- */
.footer-mobile {
  display: none;
  background-color: var(--black);
  color: var(--white);
  padding-top: 50px;
  padding-bottom: calc(var(--mobile-bar-height) + 24px);
}

.footer-mobile-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-mobile-logo img {
  height: 48px;
  margin: 0 auto 12px;
}

.footer-mobile-logo p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 0 20px;
}

.footer-accordion {
  border-top: 1px solid rgba(210,172,103,0.15);
}

.accordion-item {
  border-bottom: 1px solid rgba(210,172,103,0.15);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  color: var(--gold-primary);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  color: var(--gold-primary);
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-body ul {
  padding: 0 20px 18px;
}

.accordion-body li {
  margin-bottom: 12px;
}

.accordion-body a,
.accordion-body li {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.accordion-body a:hover {
  color: var(--gold-light);
}

.footer-mobile-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(210,172,103,0.1);
}

.footer-mobile-bottom .social-icons {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 12px;
}

.footer-mobile-bottom a {
  color: rgba(255,255,255,0.65);
  margin: 0 8px;
}

/* ---------- Mobile Bottom Bar ---------- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: var(--mobile-bar-height);
  background: var(--black);
  border-top: 1px solid rgba(210,172,103,0.25);
  z-index: 999;
}

.mobile-bottom-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  font-size: 0.7rem;
  padding: 8px;
  flex: 1;
}

.mobile-bottom-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
}

.mobile-bottom-item span {
  color: rgba(255,255,255,0.85);
}

.mobile-bottom-item.cta {
  background: var(--gold-primary);
  color: var(--black);
  height: 100%;
  border-radius: 0;
  font-weight: 700;
}

.mobile-bottom-item.cta svg {
  color: var(--black);
}

.mobile-bottom-item.cta span {
  color: var(--black);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  left: 24px;
  width: 46px;
  height: 46px;
  background: var(--gold-primary);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-light);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

/* ---------- Service Detail Page Components ---------- */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210,172,103,0.4);
  box-shadow: var(--shadow-soft);
}

.audience-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: rgba(210,172,103,0.1);
  border: 1px solid rgba(210,172,103,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.audience-icon svg {
  width: 26px;
  height: 26px;
}

.audience-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}

.consultation-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.consultation-type-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.consultation-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.consultation-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(210,172,103,0.45);
  box-shadow: var(--shadow-gold);
}

.consultation-type-card:hover::before {
  transform: scaleX(1);
}

.consultation-type-card .type-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.consultation-type-card .type-icon svg {
  width: 30px;
  height: 30px;
}

.consultation-type-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.consultation-type-card p {
  font-size: 0.92rem;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.7;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  right: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--black);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.6;
}

.intro-section {
  background: var(--white);
}

.intro-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.intro-content h2 span {
  color: var(--gold-primary);
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.85;
  line-height: 1.9;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 700;
  color: var(--black);
  transition: var(--transition);
}

.area-item:hover {
  border-color: rgba(210,172,103,0.4);
  box-shadow: var(--shadow-soft);
  transform: translateX(-5px);
}

.area-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(210,172,103,0.4);
  box-shadow: var(--shadow-soft);
}

.feature-item svg {
  width: 28px;
  height: 28px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .audience-grid,
  .consultation-types,
  .areas-list,
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 30px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .audience-grid,
  .consultation-types,
  .areas-list,
  .features-list,
  .process-step {
    grid-template-columns: 1fr;
    flex: 1 1 100%;
  }

  .intro-content h2 {
    font-size: 1.7rem;
  }
}

/* ---------- Internal Pages Components ---------- */

.internal-page {
  padding-top: var(--header-height);
}

.internal-page .hero {
  min-height: auto;
  padding-top: 0;
}

/* Utility Classes */
.bg-white {
  background-color: var(--white) !important;
}

.text-center {
  text-align: center;
}

.max-w-3xl {
  max-width: 768px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-lg {
  font-size: 1.125rem;
}

.leading-loose {
  line-height: 2;
}

.opacity-85 {
  opacity: 0.85;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a150f 50%, var(--charcoal) 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(210,172,103,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(210,172,103,0.12);
  border: 1px solid rgba(210,172,103,0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.page-hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.3;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

/* Mission & Vision */
.mission-vision {
  background-color: var(--ivory);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.mv-card.dark {
  background: var(--black);
  border-color: rgba(210,172,103,0.25);
}

.mv-card.dark h3 {
  color: var(--white);
}

.mv-card.dark p {
  color: rgba(255,255,255,0.8);
}

.mv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: rgba(210,172,103,0.1);
  border: 1px solid rgba(210,172,103,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.mv-card.dark .mv-icon {
  background: rgba(210,172,103,0.15);
  border-color: rgba(210,172,103,0.3);
}

.mv-icon svg {
  width: 32px;
  height: 32px;
}

.mv-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.8;
}

/* Need List */
.need-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.need-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: var(--transition);
}

.need-item:hover {
  border-color: rgba(210,172,103,0.4);
  box-shadow: var(--shadow-soft);
  transform: translateX(-5px);
}

.need-item svg {
  width: 28px;
  height: 28px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.need-item p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

/* Service Detail */
.service-detail {
  background-color: var(--ivory);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210,172,103,0.4);
  box-shadow: var(--shadow-soft);
}

.service-detail-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.service-detail-icon svg {
  width: 28px;
  height: 28px;
}

.service-detail-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.5;
}

/* Case Types */
.case-types {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.case-types::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(210,172,103,0.08) 0%, transparent 50%);
}

.case-types-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.case-type-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(210,172,103,0.2);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  flex: 0 1 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
}

.case-type-card:hover {
  background: rgba(210,172,103,0.08);
  border-color: rgba(210,172,103,0.4);
  transform: translateY(-5px);
}

.case-type-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: rgba(210,172,103,0.1);
  border: 1px solid rgba(210,172,103,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.case-type-icon svg {
  width: 26px;
  height: 26px;
}

.case-type-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* Timeline */
.timeline {
  background-color: var(--ivory);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 8%;
  width: 84%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  opacity: 0.3;
  z-index: 0;
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--black);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}

.timeline-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.5;
}

/* History Section */
.history {
  background-color: var(--white);
}

.history-content {
  max-width: 768px;
  margin: 0 auto;
}

/* Responsive for Internal Pages */
@media (max-width: 1024px) {
  .page-hero {
    padding: 100px 0 80px;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .mv-grid,
  .need-list {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-type-card {
    flex-basis: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .timeline-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0 60px;
  }

  .page-hero-title {
    font-size: 1.8rem;
  }

  .page-hero-desc {
    font-size: 1rem;
  }

  .service-detail-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .case-type-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .mv-card,
  .service-detail-card,
  .case-type-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .about-grid,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-grid {
    grid-template-areas: "content" "image";
  }

  .why-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .why-card {
    padding: 24px 12px;
  }

  .why-card h3 {
    font-size: 1rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }

  .why-icon {
    width: 44px;
    height: 44px;
  }

  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
    --header-height-scrolled: 68px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 50px) 0 70px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .about-experience {
    left: 10px;
    bottom: -20px;
    padding: 18px 22px;
  }

  .about-experience strong {
    font-size: 1.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .services-grid,
  .branches-grid,
  .blog-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .service-card,
  .branch-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .footer {
    display: none;
  }

  .footer-mobile,
  .mobile-bottom-bar {
    display: block;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .scroll-top {
    bottom: calc(var(--mobile-bar-height) + 20px);
  }

  body {
    padding-bottom: var(--mobile-bar-height);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .footer-mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-mobile-bottom a {
    margin: 0;
  }
}

/* =========================================
   Internal Pages Styles
   ========================================= */

.internal-page .header {
  background-color: rgba(0,0,0,0.96);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(210,172,103,0.25);
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, #1a150f 50%, var(--charcoal) 100%);
  overflow: hidden;
  padding-top: var(--header-height);
  padding-bottom: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(210,172,103,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(249,204,122,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(210,172,103,0.12);
  border: 1px solid rgba(210,172,103,0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
}

.bg-white {
  background-color: var(--white);
}

.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.1rem;
}

.leading-loose {
  line-height: 2;
}

.opacity-85 {
  opacity: 0.85;
}

.max-w-3xl {
  max-width: 768px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Mission & Vision */
.mission-vision {
  background-color: var(--ivory);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border-top: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.mv-card.dark {
  background: var(--black);
  color: var(--white);
}

.mv-card.dark h3 {
  color: var(--white);
}

.mv-card.dark p {
  color: rgba(255,255,255,0.8);
}

.mv-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 20px;
}

.mv-card.dark .mv-icon {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.mv-icon svg {
  width: 24px;
  height: 24px;
}

.mv-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
  opacity: 0.85;
}

/* Timeline */
.timeline {
  background-color: var(--white);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: rgba(210,172,103,0.3);
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-number {
  width: 56px;
  height: 56px;
  background: var(--black);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.timeline-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
}

/* Service detail cards */
.service-detail {
  background-color: var(--ivory);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
}

.service-detail-card:hover {
  border-color: rgba(210,172,103,0.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  background: rgba(210,172,103,0.1);
  border: 1px solid rgba(210,172,103,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.service-detail-icon svg {
  width: 26px;
  height: 26px;
}

.service-detail-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}

/* Need list */
.need-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.need-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  transition: var(--transition);
}

.need-item:hover {
  border-color: rgba(210,172,103,0.4);
}

.need-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.need-item p {
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.6;
}

/* Case types */
.case-types {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.case-types::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(210,172,103,0.08) 0%, transparent 50%);
}

.case-types-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.case-type-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(210,172,103,0.2);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  flex: 0 1 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
}

.case-type-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(210,172,103,0.4);
}

.case-type-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: rgba(210,172,103,0.1);
  border: 1px solid rgba(210,172,103,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.case-type-icon svg {
  width: 26px;
  height: 26px;
}

.case-type-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Responsive for internal pages */
@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 2.4rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 16px;
  }

  .timeline-grid::before {
    display: none;
  }

  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .need-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-type-card {
    flex-basis: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 40px) 0 60px;
  }

  .page-hero-title {
    font-size: 1.9rem;
  }

  .page-hero-desc {
    font-size: 1rem;
  }

  .mv-card {
    padding: 34px 26px;
  }

  .mv-card h3 {
    font-size: 1.35rem;
  }

  .timeline-grid,
  .service-detail-grid,
  .need-list {
    grid-template-columns: 1fr;
  }

  .case-type-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}


/* =========================================
   Team Page Styles
   ========================================= */

/* Founder role text */
.founder-role {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 22px;
  margin-top: -10px;
}

.founder-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.founder-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.98rem;
}

.founder-highlight svg {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Team Sections */
.team {
  background-color: var(--ivory);
}

.team.bg-white {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.team-card {
  background: transparent;
  border: none;
  border-radius: 24px;
  padding: 0;
  text-align: center;
  transition: transform 0.35s ease;
  position: relative;
  overflow: hidden;
  min-height: 430px;
  perspective: 1400px;
}

.team.bg-white .team-card {
  background: transparent;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  background: linear-gradient(135deg, rgba(210,172,103,0.92), rgba(255,228,163,0.9));
  border-radius: 22px 22px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
  transition: transform 0.35s ease;
  overflow: hidden;
}

.team-card:hover .team-avatar {
  transform: scale(1.02);
}

.team-avatar svg {
  width: 68px;
  height: 68px;
}

.team-name {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.4;
}

.team-role {
  font-size: 0.92rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0;
}

.team-divider {
  width: 52px;
  height: 3px;
  background: var(--gold-primary);
  margin: 18px auto 0;
  border-radius: 2px;
  opacity: 0.55;
}

.team-card-inner {
  position: relative;
  width: 100%;
  min-height: 430px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.team-card:hover .team-card-inner,
.team-card.is-flipped .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-face {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(210,172,103,0.2);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

.team-card-front {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,246,239,0.98) 100%);
}

.team.bg-white .team-card-front {
  background:
    linear-gradient(180deg, rgba(249,246,239,0.98) 0%, rgba(255,255,255,0.98) 100%);
}

.team-card-back {
  background:
    linear-gradient(155deg, #161616 0%, #1f1f1f 52%, #2a241b 100%);
  color: var(--white);
  transform: rotateY(180deg);
}

.team-front-body,
.team-back-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-front-body {
  padding: 16px 16px 22px;
}

.team-front-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 18px 8px 0;
}

.team-back-body {
  padding: 28px 22px 24px;
  justify-content: center;
  gap: 14px;
}

.team-back-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 228, 163, 0.9);
}

.team-back-name {
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 800;
  color: var(--white);
}

.team-back-divider {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-primary), rgba(255,228,163,0.95));
  margin: 0 auto;
}

.team-back-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  overflow: hidden;
}

.team-card-hint {
  margin-top: auto;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.03em;
}

.empty-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: var(--white);
  border: 1px solid rgba(210,172,103,0.2);
  border-radius: 24px;
  padding: 34px 24px;
}

.team-empty-message {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.8;
  text-align: center;
}

/* Team Responsive */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .team-card,
  .team-card-inner {
    min-height: 400px;
  }

  .founder-role {
    font-size: 1rem;
  }

  .founder-highlight {
    font-size: 0.92rem;
  }
}


/* =========================================
   Articles & Knowledge Page
   ========================================= */

.article-categories {
  background-color: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--light-gray);
}

.article-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background-color: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
}

.filter-btn:hover {
  background-color: rgba(210,172,103,0.12);
  border-color: rgba(210,172,103,0.4);
  color: var(--black);
}

.filter-btn.active {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black);
}

.filter-btn svg {
  width: 16px;
  height: 16px;
}

.featured-articles {
  background-color: var(--white);
}

.all-articles {
  background-color: var(--ivory);
}

.article-card .blog-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card .blog-content h3 {
  min-height: 52px;
}

.article-card .blog-content p {
  flex-grow: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  flex-wrap: wrap;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta svg {
  width: 14px;
  height: 14px;
}

.article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background-color: transparent;
  border: 2px solid var(--gold-primary);
  border-radius: 50px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: auto;
}

.article-btn:hover {
  background-color: var(--gold-primary);
  color: var(--black);
  gap: 14px;
}

.article-btn svg {
  width: 16px;
  height: 16px;
}

.article-card.hidden {
  display: none;
}

/* Articles Responsive */
@media (max-width: 768px) {
  .article-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .article-card .blog-content h3 {
    min-height: auto;
  }
}

/* =========================================
   FAQ Page Styles
   ========================================= */

.faq {
  background-color: var(--ivory);
}

.faq.bg-white {
  background-color: var(--white);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq.bg-white .faq-item {
  background: var(--ivory);
}

.faq-item[open] {
  border-color: rgba(210,172,103,0.4);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--black);
  list-style: none;
  transition: var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-item[open] .faq-question {
  color: var(--gold-dark);
  padding-bottom: 10px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 8px 26px 18px;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.85;
}

.faq .faq-answer p {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 8px 20px 18px;
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }
}

/* =========================================
   Contact Page Styles
   ========================================= */

/* Buttons variants */
.btn-outline {
  background-color: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
  background-color: var(--gold-primary);
  color: var(--black);
}

.btn-submit {
  width: 100%;
  max-width: 300px;
}

/* Contact Form Section */
.contact-form-section {
  background-color: var(--ivory);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: start;
}

.contact-form-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.contact-form-content > p {
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group label span {
  color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(210,172,103,0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D2AC67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.radio-group {
  display: flex;
  gap: 20px;
  padding: 12px 0;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  color: var(--charcoal);
}

.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.form-message {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
}

.form-message.success {
  display: none;
  background: rgba(39,174,96,0.08);
  border: 1px solid rgba(39,174,96,0.3);
  color: #27ae60;
}

.form-message svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Contact Info Sidebar */
.contact-form-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  flex: 1;
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
}

.quick-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-contact-buttons .btn {
  justify-content: flex-start;
  padding: 12px 20px;
  font-size: 0.92rem;
}

.quick-contact-buttons .btn svg {
  width: 20px;
  height: 20px;
}

.working-hours {
  list-style: none;
}

.working-hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 600;
  color: var(--charcoal);
}

.working-hours li:last-child {
  border-bottom: none;
}

/* Branch Cards additions */
.branch-address,
.branch-phone {
  font-size: 0.92rem;
  color: var(--charcoal);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 6px;
}

.branch-phone {
  font-weight: 700;
  color: var(--gold-dark);
  direction: ltr;
  margin-bottom: 0;
}

/* Map Section */
.map-section {
  background-color: var(--black);
  color: var(--white);
}

.map-section .section-title h2,
.map-section .section-title p {
  color: var(--white);
}

.map-section .section-title h2::after {
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
}

.map-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.map-tab {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(210,172,103,0.3);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
}

.map-tab:hover {
  background: rgba(210,172,103,0.12);
}

.map-tab.active {
  background: var(--gold-primary);
  color: var(--black);
  border-color: var(--gold-primary);
}

.map-frame-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(210,172,103,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: stretch;
}

.map-layout > .map-info-card,
.map-layout > .map-frame-wrapper {
  min-height: 420px;
}

.map-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(210,172,103,0.25);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.map-info-card .map-info-label {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.map-info-card .map-info-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.map-info-card .map-info-address {
  color: var(--white);
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.map-info-card .map-info-phone {
  color: var(--gold-primary);
  font-size: 1.3rem;
  font-weight: 700;
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.map-info-card .map-info-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  transition: var(--transition);
}

.map-info-card .map-info-action:hover {
  background: var(--gold-primary);
  color: var(--black);
}

.map-info-card .map-info-action svg {
  width: 18px;
  height: 18px;
}

.map-info-card .map-info-email {
  color: var(--white);
  opacity: 0.9;
  font-size: 1rem;
  margin-top: 8px;
}

.map-info-card .map-info-email a {
  color: var(--gold-primary);
  text-decoration: none;
}

.map-info-card .map-info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  align-self: flex-start;
}

.map-info-card .map-info-link:hover {
  background: var(--gold-light);
}

.map-info-card .map-info-link--outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.map-info-card .map-info-link--outline:hover {
  background: var(--gold-primary);
  color: var(--black);
}

@media (max-width: 640px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-layout > .map-frame-wrapper,
  .map-layout > .map-info-card {
    min-height: auto;
  }

  .map-info-card {
    padding: 24px;
  }
}

/* Quick Contact Strip */
.quick-strip {
  background-color: var(--white);
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-strip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  background: var(--ivory);
  transition: var(--transition);
  font-weight: 700;
  color: var(--black);
}

.quick-strip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210,172,103,0.4);
  box-shadow: var(--shadow-gold);
  color: var(--gold-dark);
}

.quick-strip-card svg {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
}

/* Contact Responsive */
@media (max-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-info {
    flex-direction: row;
    gap: 20px;
  }

  .info-card {
    flex: 1;
  }

  .quick-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form-info {
    flex-direction: column;
  }

  .quick-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-strip-card {
    padding: 24px 16px;
  }

  .map-frame {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .quick-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Privacy Policy Page Styles
   ========================================= */

.policy {
  background-color: var(--ivory);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-soft);
}

.policy-intro {
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
}

.policy-intro p {
  font-size: 1.08rem;
  color: var(--charcoal);
  line-height: 1.9;
  margin: 0;
}

.policy-block {
  margin-bottom: 32px;
}

.policy-block:last-of-type {
  margin-bottom: 0;
}

.policy-block h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  position: relative;
  padding-right: 18px;
}

.policy-block h2::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 22px;
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-light));
  border-radius: 3px;
}

.policy-block p {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.85;
  line-height: 1.9;
  margin-bottom: 14px;
}

.policy-block ul {
  list-style: none;
  padding-right: 0;
}

.policy-block ul li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.9;
  line-height: 1.7;
}

.policy-block ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.policy-note {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--ivory);
  border-right: 4px solid var(--gold-primary);
  border-radius: 8px 0 0 8px;
}

.policy-note p {
  margin: 0;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 30px 22px;
  }

  .policy-block h2 {
    font-size: 1.15rem;
  }

  .policy-intro p,
  .policy-block p,
  .policy-block ul li,
  .policy-note p {
    font-size: 0.95rem;
  }
}


/* =========================================
   Article Detail Page
   ========================================= */

.article-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, #1a150f 50%, var(--charcoal) 100%);
  overflow: hidden;
  padding-top: var(--header-height);
  padding-bottom: 80px;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(210,172,103,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  color: var(--gold-primary);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

.article-category-badge {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.article-hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
}

.article-hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Article Meta */
.article-meta-section {
  background-color: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--light-gray);
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 20px 28px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Article Layout */
.article-body-section {
  background-color: var(--ivory);
  padding: 80px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.article-main {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.article-featured-image {
  margin: -48px -48px 40px -48px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.article-block {
  margin-bottom: 48px;
}

.article-block:last-child {
  margin-bottom: 0;
}

.article-block h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.4;
}

.article-block h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  margin-top: 12px;
}

.article-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.article-block p {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.9;
  margin-bottom: 18px;
}

.article-block a {
  color: var(--gold-dark);
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.article-block a:hover {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

.article-block ul,
.article-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.article-list li,
.article-block ul li {
  position: relative;
  padding-right: 28px;
  margin-bottom: 14px;
  font-size: 1.02rem;
  color: var(--charcoal);
  line-height: 1.8;
}

.article-list li::before,
.article-block ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  border-radius: 50%;
}

/* Article Points Grid */
.article-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.article-point {
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--transition);
}

.article-point:hover {
  border-color: rgba(210,172,103,0.4);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.point-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 16px;
}

.point-icon svg {
  width: 22px;
  height: 22px;
}

.article-point h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.article-point p {
  font-size: 0.92rem;
  margin-bottom: 0;
  opacity: 0.85;
}

/* Benefits */
.article-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.benefit-group {
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 28px;
}

.benefit-group h3 {
  color: var(--gold-dark);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.benefit-group ul {
  margin-bottom: 0;
}

.benefit-group li {
  padding-right: 22px;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.benefit-group li::before {
  width: 8px;
  height: 8px;
  top: 9px;
}

/* Checklist */
.article-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.check-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Inline CTA */
.inline-cta {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.inline-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(210,172,103,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.inline-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.inline-cta-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.inline-cta-content p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* FAQ */
.article-faq {
  margin-top: 24px;
}

.article-faq .faq-item {
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.article-faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: right;
  font-family: 'Cairo', sans-serif;
}

.article-faq .faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.article-faq .faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.article-faq .faq-answer {
  display: none;
  padding: 0;
}

.article-faq .faq-item.active .faq-answer {
  display: block;
}

.article-faq .faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.8;
}

/* Related Articles */
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.related-article-card {
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 0 26px 26px;
  transition: var(--transition);
  display: block;
  overflow: hidden;
}

.related-article-card:hover {
  border-color: rgba(210,172,103,0.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.related-category {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin: 22px 0 12px;
}

.related-card-image {
  display: block;
  margin: 0 -26px 20px;
  height: 135px;
  background: var(--light-gray);
  overflow: hidden;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.related-article-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.5;
}

.related-article-card p {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-widget.highlight {
  background: var(--black);
  border-color: rgba(210,172,103,0.3);
  color: var(--white);
}

.sidebar-widget.highlight h3 {
  color: var(--white);
}

.sidebar-widget.highlight p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
}

.toc-list li,
.service-links li {
  margin-bottom: 12px;
}

.toc-list a,
.service-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.toc-list a::before,
.service-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.toc-list a:hover,
.service-links a:hover {
  color: var(--gold-primary);
  padding-right: 6px;
}

/* Article Responsive */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sidebar-widget {
    margin-bottom: 0;
  }

  .article-points-grid,
  .article-benefits,
  .article-checklist {
    grid-template-columns: 1fr;
  }

  .related-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 40px) 0 60px;
  }

  .article-hero-title {
    font-size: 1.9rem;
  }

  .article-hero-desc {
    font-size: 1rem;
  }

  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .article-main {
    padding: 28px;
  }

  .article-featured-image {
    margin: -28px -28px 32px -28px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .article-featured-image img {
    max-height: 280px;
  }

  .article-block h2 {
    font-size: 1.4rem;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .related-articles-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    padding: 32px 24px;
  }

  .inline-cta-content h3 {
    font-size: 1.3rem;
  }
}


/* Clickable Article Cards */
.blog-card {
  position: relative;
}

.card-full-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}

.blog-image-link {
  display: block;
  position: relative;
  z-index: 2;
}

.blog-image-link .blog-image {
  border-radius: var(--radius) var(--radius) 0 0;
}

.blog-content h3 a {
  color: inherit;
  position: relative;
  z-index: 2;
}

.blog-content h3 a:hover {
  color: var(--gold-primary);
}

.article-btn,
.blog-category {
  position: relative;
  z-index: 2;
}

.blog-card:hover {
  cursor: pointer;
}

.blog-card:hover .blog-content h3 a {
  color: var(--gold-primary);
}

/* ---------- Image Fill Fixes ---------- */
.founder-image-frame img {
  height: 100%;
  object-fit: cover;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  transform: scale(1.88);
  transform-origin: center top;
  transition: transform 0.35s ease, object-position 0.35s ease;
  display: block;
}

.team-card:hover .team-avatar img {
  transform: scale(1.96);
  object-position: center 7%;
}

.team-card-tight-face .team-avatar img {
  object-position: center 5%;
  transform: scale(2.08);
}

.team-card-tight-face:hover .team-avatar img {
  object-position: center 4%;
  transform: scale(2.16);
}

/* ---------- Clients Section ---------- */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.logo-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 100%;
  transition: var(--transition);
}

.logo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.logo-item img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: var(--transition);
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------- Clients Slider ---------- */
.clients-slider-wrapper {
  --clients-gap: 24px;
  --clients-per-view: 4;
  position: relative;
  margin-top: 2.25rem;
}

.clients-slider-viewport {
  overflow: hidden;
  padding: 12px 0;
  border-radius: 0;
}

.clients-slider-track {
  display: flex;
  gap: var(--clients-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.clients-slider-track .logo-item {
  flex: 0 0 calc((100% - (var(--clients-gap) * (var(--clients-per-view) - 1))) / var(--clients-per-view));
  min-width: 0;
  margin: 0;
  padding: 0;
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.clients-slider-track .logo-item:hover {
  box-shadow: none;
  transform: none;
}

.logo-card {
  width: 100%;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: none;
}

.logo-card img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.clients-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.clients-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.clients-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.clients-dot.active {
  width: 28px;
  background: #b68c2f;
}

@media (max-width: 991px) {
  .clients-slider-wrapper {
    --clients-gap: 18px;
    --clients-per-view: 4;
  }

  .logo-card {
    height: 110px;
    padding: 14px;
  }
}

@media (max-width: 575px) {
  .clients-slider-wrapper {
    --clients-gap: 14px;
    --clients-per-view: 4;
  }

  .logo-card {
    height: 92px;
    padding: 10px;
    border-radius: 16px;
  }

  .logo-card img {
    max-height: 63px;
  }
}

/* ---------- Accreditations / Certificates Section ---------- */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.cert-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  transition: var(--transition);
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.cert-item img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}

/* Ensure image frames have a defined ratio so object-fit:crop works */
.founder-image-frame {
  aspect-ratio: 3 / 4;
}

/* Animated Timeline Connectors and Layouts */
@keyframes timelineLineFlow {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 8%;
  left: 8%;
  height: 3px !important;
  background: linear-gradient(to left, rgba(210, 172, 103, 0.2) 0%, var(--gold-primary) 50%, rgba(210, 172, 103, 0.2) 100%) !important;
  background-size: 200% 100% !important;
  animation: timelineLineFlow 3s linear infinite !important;
  z-index: 1;
}

/* 5 Column Layout for Timeline */
.timeline-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 1024px) {
  .timeline-grid.cols-5 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .timeline-grid.cols-5 {
    grid-template-columns: 1fr !important;
  }
}

/* 4 Column Layout for Why Grid */
.why-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1024px) {
  .why-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .why-grid.cols-4 {
    grid-template-columns: 1fr !important;
  }
}

/* Team Description Style */
.team-desc {
  display: none;
}


/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 150px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsapp-pulse 2.2s infinite;
  opacity: 0;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
}

.whatsapp-float:hover::before {
  animation-duration: 1.4s;
}

.whatsapp-inner {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 2;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 18px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #1f1f1f;
  color: #fff;
  border: 1px solid rgba(210, 172, 103, 0.28);
  border-radius: 16px;
  padding: 12px 18px;
  min-width: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #1f1f1f;
  border-top: 1px solid rgba(210, 172, 103, 0.28);
  border-right: 1px solid rgba(210, 172, 103, 0.28);
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-tooltip.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.whatsapp-tooltip-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: calc(var(--mobile-bar-height, 70px) + 76px);
    right: 16px;
    width: 58px;
    height: 58px;
    border-width: 3px;
  }

  .whatsapp-inner {
    width: 58px;
    height: 58px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    min-width: auto;
    padding: 10px 14px;
    right: calc(100% + 14px);
  }

  .whatsapp-tooltip-title {
    font-size: 0.85rem;
  }
}



/* ---------- LTR (English) Overrides ---------- */
html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .accordion-header {
  text-align: left;
}

html[dir="ltr"] .faq-question {
  text-align: left;
}

html[dir="ltr"] .about-content,
html[dir="ltr"] .founder-content,
html[dir="ltr"] .contact-info,
html[dir="ltr"] .footer-col {
  text-align: left;
}

/* WhatsApp Float LTR positioning */
html[dir="ltr"] .whatsapp-float {
  right: auto;
  left: 24px;
}

html[dir="ltr"] .whatsapp-tooltip {
  right: auto;
  left: calc(100% + 18px);
  transform: translateY(-50%) translateX(-10px);
}

html[dir="ltr"] .whatsapp-tooltip::after {
  right: auto;
  left: -7px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid rgba(210, 172, 103, 0.28);
  border-left: 1px solid rgba(210, 172, 103, 0.28);
}

html[dir="ltr"] .whatsapp-tooltip.visible {
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  html[dir="ltr"] .whatsapp-float {
    right: auto;
    left: 16px;
  }
  html[dir="ltr"] .whatsapp-tooltip {
    right: auto;
    left: calc(100% + 14px);
  }
}

/* Hero background mirror */
html[dir="ltr"] .hero {
  transform: scaleX(-1);
}
html[dir="ltr"] .hero > * {
  transform: scaleX(-1);
}

/* Reverse founder layout in LTR (Desktop only) */
@media (min-width: 992px) {
  html[dir="ltr"] .founder-grid {
    grid-template-areas: "image content";
  }

  html[dir="ltr"] .about-grid {
    direction: rtl;
  }
  html[dir="ltr"] .about-grid > * {
    direction: ltr;
    text-align: left;
  }
}
