/* ============================================================
   WADINOOR WEBSITE — MAIN STYLESHEET
   WadiNoor Building Materials Trading Co. L.L.C
   Brand: Gold #C9A84C + Dark #1a1a1a
   ============================================================ */

/* ─── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Brand Colors — WadiNoor Gold & Dark */
  --primary:        #1a1a1a;      /* Charcoal Black  */
  --primary-mid:    #2d2d2d;      /* Dark Gray       */
  --primary-light:  #4a4a4a;      /* Medium Dark      */
  --accent:         #C9A84C;      /* Brand Gold      */
  --accent-light:   #E2C070;      /* Light Gold      */
  --accent-hover:   #9A7A30;      /* Deep Gold       */

  /* Neutrals */
  --dark:           #0d0d0d;
  --dark-2:         #1f1f1f;
  --gray-700:       #3d3d3d;
  --gray-500:       #717171;
  --gray-300:       #d1d1d1;
  --gray-100:       #f5f5f5;
  --white:          #ffffff;
  --off-white:      #fafaf8;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #1a1a1a, #333333);
  --grad-accent:    linear-gradient(135deg, #C9A84C, #E2C070);
  --grad-dark:      linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #2d2d2d 100%);
  --grad-hero:      linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #252525 70%, #111111 100%);

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md:      0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg:      0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-xl:      0 16px 60px rgba(0, 0, 0, 0.22);
  --shadow-primary: 0 8px 30px rgba(26, 26, 26, 0.30);
  --shadow-accent:  0 8px 30px rgba(201, 168, 76, 0.40);

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', 'Poppins', 'Inter', serif;

  /* Spacing */
  --section-py:  100px;
  --container:   1240px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  /* Transitions */
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── 2. CSS RESET & BASE ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark-2);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark-2);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem);  font-weight: 600; }
h4 { font-size: 1rem;  font-weight: 600; }
p  { font-size: 1rem;  color: var(--gray-500); line-height: 1.8; }

/* ─── 4. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.bg-light { background: var(--off-white); }
.bg-dark  { background: var(--dark); }
.text-center { text-align: center; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header h2 { margin-bottom: 16px; color: var(--dark); }
.section-header p   { font-size: 1.05rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 124, 0, 0.10);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ─── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 124, 0, 0.45);
  filter: brightness(1.08);
}

.btn-secondary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(15, 52, 96, 0.45);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--grad-accent);
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 0.85rem;
  box-shadow: var(--shadow-accent);
}
.btn-nav:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}
.btn-nav::after { display: none !important; }

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ─── 6. NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 18px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.10);
  padding: 12px 0;
  border-bottom: 2px solid rgba(201, 168, 76, 0.25);
}

/* Navbar on non-hero pages starts white */
.navbar.nav-solid {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.10);
  padding: 12px 0;
  border-bottom: 2px solid rgba(201, 168, 76, 0.25);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* ─── LOGO ICON MARK (the gold square symbol) ────────────── */
.logo-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 4px 6px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}
.logo-icon-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 6px;
  transition: var(--transition);
  object-fit: contain;
}

/* Subtle hover lift */
.nav-logo:hover .logo-icon-wrap {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

/* ─── LOGO TEXT (Brand Name beside icon) ─────────────────── */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1;
  transition: var(--transition);
}
.logo-gold {
  color: var(--accent);
  font-style: italic;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

/* Hero navbar: text turns white on dark background */
.navbar:not(.scrolled):not(.nav-solid) .logo-name    { color: var(--white); }
.navbar:not(.scrolled):not(.nav-solid) .logo-gold    { color: var(--accent-light); }
.navbar:not(.scrolled):not(.nav-solid) .logo-tagline { color: rgba(255,255,255,0.55); }

/* ─── FOOTER LOGO (Icon + Text in footer) ────────────────── */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
  text-decoration: none;
}
.footer-icon-wrap {
  flex-shrink: 0;
  background: white;
  border-radius: 10px;
  padding: 4px 6px;
  line-height: 0;
  box-shadow: 0 2px 14px rgba(201, 168, 76, 0.25);
  transition: var(--transition);
}
.footer-logo:hover .footer-icon-wrap {
  box-shadow: 0 4px 22px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}
.footer-icon-img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 6px;
  transition: var(--transition);
  object-fit: contain;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.footer-logo-gold {
  color: var(--accent);
  font-style: italic;
}

/* Footer tagline sub */
.footer-tagline-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
  margin-bottom: 18px;
  display: block;
  opacity: 0.85;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 14px; right: 14px;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 600; }

/* Hero: nav links white */
.navbar:not(.scrolled):not(.nav-solid) .nav-link {
  color: rgba(255,255,255,0.85);
}
.navbar:not(.scrolled):not(.nav-solid) .nav-link:hover,
.navbar:not(.scrolled):not(.nav-solid) .nav-link.active {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.bar {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled):not(.nav-solid) .bar { background: var(--white); }
.hamburger.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-top: 3px solid var(--accent);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Mobile Brand Header */
.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 8px;
}
.mobile-brand-icon {
  height: 46px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: contain;
  background: white;
  padding: 3px 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.mobile-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.mobile-brand-sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.mobile-menu-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  font-size: 0.95rem;
}
.mobile-link:hover,
.mobile-link.active {
  background: var(--gray-100);
  color: var(--primary);
}
.mobile-link i { width: 18px; color: var(--accent); }
.mobile-cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

/* ─── 7. HERO SECTION (HOME) ───────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Grid pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Diagonal accent line */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* Decorative circles */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  z-index: 1;
}
.hero-deco-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C9A84C, transparent);
  top: -200px; right: -100px;
}
.hero-deco-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #f57c00, transparent);
  bottom: 50px; left: -100px;
  opacity: 0.08;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s 0.1s ease both;
  letter-spacing: -0.01em;
}

.hero-company-accent {
  background: linear-gradient(135deg, #E2C070, #C9A84C, #F0D080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  margin-bottom: 24px;
  max-width: 620px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.60);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

/* Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 700px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  animation: fadeInUp 0.8s 0.5s ease both;
}
.stat {
  padding: 24px 20px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat:hover { background: rgba(255,255,255,0.10); }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 140px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-dot {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: rgba(255,255,255,0.8);
  animation: scrollDown 2s infinite;
}

/* ─── 8. PAGE HERO (Inner Pages) ───────────────────────────── */
.page-hero {
  background: var(--grad-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
/* Gold top accent bar */
.page-hero .page-hero-gold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-accent);
  z-index: 3;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}
.page-hero-content p {
  color: rgba(255,255,255,0.70);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.6rem; color: var(--accent); }

/* ─── 9. INTRO SECTION ─────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-text .section-tag { margin-bottom: 16px; }
.intro-text h2 { margin-bottom: 20px; color: var(--dark); }
.intro-text p  { margin-bottom: 16px; }
.intro-text .btn { margin-top: 12px; }

.intro-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.visual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.visual-card.accent { background: var(--grad-primary); }
.visual-card.accent h3,
.visual-card.accent p { color: var(--white); }
.visual-card.accent p { opacity: 0.8; }
.visual-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(15, 52, 96, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.visual-card.accent .visual-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.visual-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--dark); }
.visual-card p  { font-size: 0.82rem; line-height: 1.6; color: var(--gray-500); }

/* ─── 10. SERVICES PREVIEW ─────────────────────────────────── */
.services-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--transition);
}
.service-preview-card:hover::before { opacity: 1; }
.service-preview-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-preview-card:hover .sp-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.service-preview-card:hover .sp-title { color: var(--white); }
.service-preview-card:hover .sp-desc  { color: rgba(255,255,255,0.75); }

.sp-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: rgba(15, 52, 96, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.sp-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.sp-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative; z-index: 1;
  transition: var(--transition);
}

/* ─── 11. WHY CHOOSE US ────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: var(--shadow-primary);
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--dark); }
.why-card p  { font-size: 0.9rem; line-height: 1.75; }

/* ─── 12. CTA SECTION ──────────────────────────────────────── */
.cta-section {
  background: var(--grad-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── 13. SERVICES PAGE ────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 70px; height: 70px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.08), rgba(21, 101, 192, 0.10));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
  border: 1px solid rgba(15, 52, 96, 0.08);
}
.service-card:hover .service-icon-wrap {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
  border-color: transparent;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  flex: 1;
}
.service-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.10);
  color: var(--accent-hover);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 20px;
  transition: var(--transition);
}
.service-card:hover .service-badge {
  background: rgba(201, 168, 76, 0.20);
  color: var(--accent);
}

/* Services Intro Banner */
.services-intro-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-primary);
}
.sib-text h2 { color: var(--white); margin-bottom: 12px; }
.sib-text p  { color: rgba(255,255,255,0.70); font-size: 1rem; }

/* ─── 14. ABOUT PAGE ───────────────────────────────────────── */
.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--grad-accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-accent);
  border: 4px solid var(--white);
}
.about-exp-badge .exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.about-exp-badge .exp-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; }

/* Mission Vision Values */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-6px); }
.mvv-card.mission { background: var(--grad-primary); box-shadow: var(--shadow-primary); }
.mvv-card.vision  { background: var(--grad-accent); box-shadow: var(--shadow-accent); }
.mvv-card.values  { background: linear-gradient(135deg, #1f2937, #374151); box-shadow: var(--shadow-xl); }
.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.mvv-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 16px; }
.mvv-card p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.75; }

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-block {
  background: var(--white);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
}
.stat-block:hover { background: var(--grad-primary); }
.stat-block:hover .stat-num,
.stat-block:hover .stat-lbl { color: var(--white); }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  transition: var(--transition);
}
.stat-num span { color: var(--accent); }
.stat-lbl {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.value-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-item-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}
.value-item h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 6px; }
.value-item p  { font-size: 0.85rem; line-height: 1.65; }

/* Team / Experience Section */
.experience-strip {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.exp-strip-text h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--dark); }
.exp-strip-text p  { font-size: 0.93rem; }
.exp-strip-list { display: flex; flex-direction: column; gap: 14px; }
.exp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.exp-item::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--grad-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── 15. CONTACT PAGE ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}
.form-title { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.form-subtitle { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--dark-2);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}
.form-group textarea { min-height: 140px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
  justify-content: center;
}

/* Contact Info Panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 24px; color: var(--dark); }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.08), rgba(21, 101, 192, 0.10));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.info-item:hover .info-icon { background: var(--grad-primary); color: var(--white); }
.info-content {}
.info-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 3px; display: block; }
.info-value { font-size: 0.9rem; color: var(--dark-2); font-weight: 500; }
.info-value a { color: var(--dark-2); transition: var(--transition); }
.info-value a:hover { color: var(--primary); }

/* Working Hours */
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hour-row { display: flex; justify-content: space-between; font-size: 0.87rem; }
.hour-day { color: var(--gray-700); font-weight: 500; }
.hour-time { color: var(--primary); font-weight: 600; }

/* Map */
.map-section { margin-top: 48px; }
.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-icon { font-size: 3.5rem; position: relative; z-index: 1; }
.map-text { font-size: 1.1rem; font-weight: 600; position: relative; z-index: 1; }
.map-subtext { font-size: 0.85rem; opacity: 0.65; position: relative; z-index: 1; }

/* Success Message */
.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: #065f46;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ─── 16. FOOTER ───────────────────────────────────────────── */
.footer { background: var(--dark); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Brand */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-desc {
  color: rgba(255,255,255,0.50);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--grad-accent);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.50);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a i { font-size: 0.65rem; color: var(--accent); }

.footer-contact-list { display: flex; flex-direction: column; gap: 18px; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact-list .contact-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(245, 124, 0, 0.12);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.footer-contact-list span,
.footer-contact-list a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.50);
  display: block;
  line-height: 1.6;
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--white); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-right { color: rgba(255,255,255,0.25); font-size: 0.80rem; }

/* ─── 17. ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.scroll-animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── 18. RESPONSIVE — TABLET ──────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll { display: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-visual { grid-template-columns: repeat(4, 1fr); }

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

  .about-overview { grid-template-columns: 1fr; }
  .about-img-placeholder { max-width: 480px; }
  .mvv-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .services-intro-banner { grid-template-columns: 1fr; text-align: center; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

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

/* ─── 19. RESPONSIVE — MOBILE ──────────────────────────────── */
@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px 14px; }
  .stat-number { font-size: 1.5rem; }

  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }

  .intro-visual { grid-template-columns: 1fr 1fr; }
  .services-grid-preview { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }

  .services-intro-banner { padding: 32px 24px; }
  .experience-strip { padding: 32px 24px; }

  .about-exp-badge { bottom: -16px; right: 16px; }
  .mvv-card { padding: 32px 24px; }

  .logo-icon-img { height: 40px; }
  .footer-icon-img { height: 46px; }
  .logo-name { font-size: 1.3rem; }
  .footer-logo-name { font-size: 1.45rem; }
}

/* ─── 20. BRAND ENHANCEMENTS (WadiNoor Gold Theme) ────────── */

/* Section headings — elegant serif look */
.section-header h2,
.about-text h2,
.sib-text h2,
.exp-strip-text h3,
.contact-info-card h3,
.form-title {
  font-family: 'Playfair Display', serif;
}

/* Gold divider lines */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--grad-accent);
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* Gold accent text */
.text-gold { color: var(--accent); }

/* Premium card border treatment */
.why-card,
.service-card,
.mvv-card {
  border: 1px solid rgba(201, 168, 76, 0.08);
}

/* Stat numbers — gold accent */
.stat-num span { color: var(--accent); }
.stat-num { color: var(--primary); }
.stat-block:hover .stat-num { color: var(--white); }

/* Hero stats bar — gold tinted */
.hero-stats {
  border: 1px solid rgba(201, 168, 76, 0.20);
  background: rgba(201, 168, 76, 0.04);
}
.stat:hover { background: rgba(201, 168, 76, 0.08); }

/* About experience badge — gold gradient */
.about-exp-badge {
  background: var(--grad-accent);
  box-shadow: var(--shadow-accent);
}

/* Mobile logo sizing */
@media (max-width: 640px) {
  .logo-icon-img { height: 36px; }
  .footer-icon-img { height: 40px; }
  .logo-name { font-size: 1.2rem; }
  .logo-tagline { display: none; }
}
