/* ============================================
   شركة صالح هدياء الحيدر
   Corporate Stylesheet - Premium Edition
   ============================================ */

/* === Design Tokens === */
:root {
  /* Brand Palette */
  --navy-950: #061831;
  --navy-900: #0A2540;
  --navy-800: #102E54;
  --navy-700: #163C6E;
  --blue-600: #1E5BAA;
  --blue-500: #2B73C9;
  --blue-400: #4A90E2;
  --blue-100: #E6F0FB;
  --blue-50: #F2F7FD;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --paper: #F4F6F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;

  /* Accent (subtle luxury gold for premium touches) */
  --gold: #C9A35C;
  --gold-soft: #E5CB95;

  /* Functional */
  --success: #15803D;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.12);
  --shadow-xl: 0 40px 100px rgba(10, 37, 64, 0.18);

  /* Layout */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Typography */
  --font-display: 'Tajawal', 'Cairo', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans Arabic', 'Tajawal', system-ui, sans-serif;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

::selection {
  background: var(--navy-900);
  color: var(--white);
}

/* === Utility Container === */
.container-x {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* === Section Padding === */
.section {
  padding: 120px 0;
  position: relative;
}

.section-sm { padding: 80px 0; }
.section-tight { padding: 60px 0; }

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-sm { padding: 50px 0; }
}

/* === Eyebrow / Section Heading === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-600);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-500));
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  color: var(--navy-900);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--gray-500);
  max-width: 720px;
  line-height: 1.85;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-head .section-subtitle {
  margin-inline: auto;
}

.section-head .eyebrow {
  justify-content: center;
}

/* === Buttons === */
.btn-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxe);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary-x {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(10, 37, 64, 0.6);
}

.btn-primary-x:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(30, 91, 170, 0.5);
}

.btn-outline-x {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}

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

.btn-light-x {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.btn-light-x:hover {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.btn-ghost-x {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-ghost-x:hover {
  background: var(--white);
  color: var(--navy-900);
}

.btn-x .icon {
  transition: transform 0.4s var(--ease-luxe);
}

.btn-x:hover .icon { transform: translateX(-4px); }

/* === Top Info Bar === */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.topbar-info {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-info i {
  color: var(--gold);
  font-size: 0.95rem;
}

.topbar-socials {
  display: flex;
  gap: 16px;
}

.topbar-socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  transition: all 0.3s ease;
}

.topbar-socials a:hover {
  background: var(--gold);
  color: var(--navy-900);
}

@media (max-width: 768px) {
  .topbar { display: none; }
}

/* === Header / Navigation === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  height: 96px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

@media (max-width: 1100px) {
  .brand-logo { height: 78px; }
}

@media (max-width: 600px) {
  .brand-logo { height: 62px; }
}

/* Footer brand: invert logo to white on dark navy bg */
.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  height: 110px;
  opacity: 0.95;
}

/* Footer brand: drop hover scale to keep static look */
.footer-brand .brand:hover .brand-logo {
  transform: none;
  opacity: 1;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px -8px rgba(10, 37, 64, 0.4);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 163, 92, 0.4);
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy-900);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
  .brand-name { font-size: 0.85rem; }
}

@media (max-width: 600px) {
  .brand-name { font-size: 0.78rem; }
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue-600);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy-900);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  inset-inline: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: var(--navy-900);
  color: var(--white);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-luxe);
    z-index: 999;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.4rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta { display: none; }
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    rgba(6, 24, 49, 0.96) 0%,
    rgba(10, 37, 64, 0.85) 50%,
    rgba(22, 60, 110, 0.4) 100%);
}

/* Decorative grid pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.4), transparent 70%);
  top: -200px;
  inset-inline-start: -200px;
  z-index: 1;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 163, 92, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s var(--ease-luxe);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  line-height: 1.15;
  margin-bottom: 30px;
  font-weight: 800;
  animation: fadeInUp 1s 0.1s var(--ease-luxe) both;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero p.lead {
  font-size: 1.18rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  max-width: 680px;
  animation: fadeInUp 1s 0.25s var(--ease-luxe) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.4s var(--ease-luxe) both;
}

.hero-trust {
  margin-top: 60px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeInUp 1s 0.55s var(--ease-luxe) both;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-trust-item strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-trust-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  z-index: 2;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes bounce {
  0%, 100% { transform: translate(50%, 0); }
  50% { transform: translate(50%, 8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === Page Hero (smaller, for sub-pages) === */
.page-hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding: 140px 0 100px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6, 24, 49, 0.95), rgba(10, 37, 64, 0.7));
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
}

.breadcrumb-x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-x a {
  color: var(--gold);
  font-weight: 600;
}

.breadcrumb-x .sep {
  opacity: 0.5;
}

/* === Stats Strip === */
.stats-strip {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  margin-top: -60px;
  z-index: 5;
}

.stats-strip-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.stats-strip-inner::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-900), var(--gold), var(--navy-900));
}

.stat-x {
  text-align: center;
  position: relative;
}

.stat-x:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray-200), transparent);
}

.stat-x .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stat-x .num .plus {
  color: var(--gold);
  font-size: 1.6rem;
}

.stat-x .label {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
}

@media (max-width: 900px) {
  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 30px;
    gap: 40px 20px;
  }

  .stat-x:not(:last-child)::after { display: none; }
  .stat-x:nth-child(odd)::after {
    content: "";
    display: block;
    position: absolute;
    inset-inline-start: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: var(--gray-200);
  }
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-luxe);
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue-500));
  transition: width 0.6s var(--ease-luxe);
}

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

.service-card:hover::before { width: 100%; }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--blue-50);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-luxe);
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 1px dashed var(--blue-100);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--navy-900);
  color: var(--gold);
  transform: rotate(-6deg);
}

.service-card:hover .service-icon::after { opacity: 1; }

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--navy-900);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-600);
  transition: gap 0.3s ease;
}

.service-card:hover .service-link {
  gap: 14px;
  color: var(--navy-900);
}

.service-link i {
  transition: transform 0.4s ease;
}

.service-card:hover .service-link i { transform: translateX(-4px); }

/* === Why Choose Us / Features === */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1000px) {
  .features-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.features-image {
  position: relative;
}

.features-image .main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.features-image .main-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.features-image .overlay-card {
  position: absolute;
  bottom: 30px;
  inset-inline-start: -30px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 280px;
  border-top: 4px solid var(--gold);
}

.features-image .overlay-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  color: var(--navy-900);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.features-image .overlay-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-900);
  display: block;
  margin-bottom: 2px;
}

.features-image .overlay-card span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.feature-list { margin-top: 30px; }

.feature-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
}

.feature-item:last-child { border-bottom: none; }

.feature-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.feature-text h4 {
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.93rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.7;
}

/* === Sectors Mosaic === */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.sector-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

.sector-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxe);
}

.sector-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 24, 49, 0.92) 100%);
  z-index: 1;
}

.sector-tile:hover img {
  transform: scale(1.1);
}

.sector-content {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 24px;
  z-index: 2;
  color: var(--white);
}

.sector-content i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.sector-content h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin: 0;
}

.sector-content .arrow {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s var(--ease-luxe);
}

.sector-tile:hover .sector-content .arrow {
  opacity: 1;
  transform: scale(1);
  background: var(--gold);
  color: var(--navy-900);
}

/* === Products Grid === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease-luxe);
}

.product-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxe);
}

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

.product-tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  background: var(--navy-900);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 28px 26px;
}

.product-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-body p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 18px;
  line-height: 1.7;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.product-meta span {
  font-size: 0.78rem;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* === CTA Banner === */
.cta-banner {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--navy-950), rgba(10, 37, 64, 0.6));
  z-index: -1;
}

.cta-banner-pattern {
  position: absolute;
  inset-inline-end: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.25), transparent 70%);
  z-index: -1;
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 850px) {
  .cta-banner-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 50px 30px; }
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

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

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 850px) {
  .cta-banner-actions { justify-content: flex-start; }
}

/* === Testimonial Quote === */
.quote-block {
  position: relative;
  padding: 70px 60px;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
  border-radius: var(--radius-xl);
  border-inline-end: 6px solid var(--gold);
}

.quote-block::before {
  content: "“";
  position: absolute;
  top: -20px;
  inset-inline-start: 40px;
  font-family: Georgia, serif;
  font-size: 12rem;
  color: var(--blue-100);
  line-height: 1;
  z-index: 0;
}

.quote-block-inner {
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.quote-author-info strong {
  font-family: var(--font-display);
  color: var(--navy-900);
  display: block;
  margin-bottom: 2px;
}

.quote-author-info span {
  font-size: 0.88rem;
  color: var(--gray-500);
}

@media (max-width: 700px) {
  .quote-block { padding: 50px 32px; }
}

/* === About Page Specific === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
}

.about-image-stack {
  position: relative;
  height: 600px;
}

.about-image-stack .img-1,
.about-image-stack .img-2 {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-stack .img-1 {
  width: 70%;
  height: 75%;
  top: 0;
  inset-inline-start: 0;
  z-index: 2;
}

.about-image-stack .img-2 {
  width: 55%;
  height: 50%;
  bottom: 0;
  inset-inline-end: 0;
  z-index: 1;
  border: 8px solid var(--white);
}

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

.about-badge {
  position: absolute;
  bottom: 30px;
  inset-inline-start: -10px;
  background: var(--navy-900);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-badge .label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .about-image-stack { height: 480px; }
}

/* Vision / Mission / Values cards */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.vmv-card {
  position: relative;
  padding: 50px 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease-luxe);
}

.vmv-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.vmv-card-icon {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  position: relative;
  transition: transform 0.5s var(--ease-luxe);
}

.vmv-card:hover .vmv-card-icon {
  transform: rotate(-8deg) scale(1.05);
}

.vmv-card-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed var(--blue-100);
  border-radius: 30px;
}

.vmv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.vmv-card p {
  font-size: 0.96rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin: 0;
}

/* === Timeline === */
.timeline {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: 30px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--blue-100), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 0;
}

.timeline-item:nth-child(odd) {
  padding-inline-end: 60px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-inline-start: 50%;
  padding-inline-start: 60px;
}

.timeline-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--navy-900);
  top: 38px;
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
  inset-inline-end: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  inset-inline-start: -10px;
}

.timeline-card {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-card {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.timeline-year {
  font-family: var(--font-display);
  color: var(--blue-600);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.timeline-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin: 0;
}

@media (max-width: 700px) {
  .timeline::before { inset-inline-start: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-inline-start: 0;
    padding-inline-start: 50px;
    padding-inline-end: 0;
    text-align: right;
  }
  .timeline-item .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    inset-inline-start: 11px;
    inset-inline-end: auto;
  }
}

/* === Sectors Page Cards === */
.sector-card-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-200);
}

.sector-card-large:nth-child(even) .sector-img-wrap {
  order: 2;
}

@media (max-width: 850px) {
  .sector-card-large {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sector-card-large:nth-child(even) .sector-img-wrap { order: 0; }
}

.sector-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: var(--shadow-md);
}

.sector-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxe);
}

.sector-card-large:hover .sector-img-wrap img { transform: scale(1.05); }

.sector-icon-large {
  display: inline-flex;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--blue-50);
  color: var(--navy-900);
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.sector-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.sector-features {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sector-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.sector-features li i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* === Branches / Map === */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

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

.branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
}

.branch-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.branch-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 24, 49, 0.7));
}

.branch-image .city-tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  background: var(--gold);
  color: var(--navy-900);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
}

.branch-body {
  padding: 26px 24px;
}

.branch-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.branch-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.branch-info span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.branch-info i {
  color: var(--blue-600);
  margin-top: 5px;
}

.map-frame {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.05);
}

/* === Clients / Logos === */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

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

.client-category {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.client-category h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--navy-900);
}

.client-category h3 i {
  width: 50px;
  height: 50px;
  background: var(--blue-50);
  color: var(--navy-900);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.client-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.client-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--navy-900);
  transition: all 0.3s ease;
}

.client-list li:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateX(-4px);
}

.client-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Logo strip placeholder */
.logos-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 800px) { .logos-strip { grid-template-columns: repeat(3, 1fr); } }

.logo-cell {
  aspect-ratio: 5 / 3;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  text-align: center;
  padding: 12px;
}

.logo-cell:hover {
  background: var(--navy-900);
  color: var(--gold);
  border-color: var(--navy-900);
}

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

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

.contact-info {
  background: var(--navy-900);
  color: var(--white);
  padding: 50px 44px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  bottom: -100px;
  inset-inline-start: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.2), transparent 70%);
}

.contact-info h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 14px;
  position: relative;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  position: relative;
}

.contact-detail {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201, 163, 92, 0.15);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.contact-detail a:hover { color: var(--gold); }

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background: var(--gold);
  color: var(--navy-900);
}

/* === Forms === */
.form-card {
  background: var(--white);
  padding: 50px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.form-card h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.form-card .form-intro {
  color: var(--gray-500);
  margin-bottom: 30px;
}

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

.form-row.three { grid-template-columns: 1fr 1fr 1fr; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
}

.form-group label .required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: all 0.3s ease;
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px var(--blue-50);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 18px center;
  padding-inline-start: 44px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.form-checkbox input { width: 18px; height: 18px; accent-color: var(--navy-900); }

.form-submit {
  width: 100%;
}

/* === Footer === */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

@media (max-width: 950px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 22px;
}

.footer-brand .brand-name { color: var(--white); }

.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy-900);
}

.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer-links a::before {
  content: "›";
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  transform: scaleX(-1);
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

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

/* === Floating WhatsApp === */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 100;
  transition: all 0.4s var(--ease-luxe);
}

.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: ripple 2s infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* === Reveal animation utility === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-luxe), transform 0.8s var(--ease-luxe);
}

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

/* === Tabs (used on services) === */
.tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}

.tab-pill {
  padding: 10px 22px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-pill:hover { border-color: var(--blue-500); color: var(--navy-900); }
.tab-pill.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
