/* ==========================================================================
   צוות יהלום — Security Company Website
   Language: Hebrew (RTL)
   Design: "Luxury Command Center"
   Version: 2.0.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --color-navy: #1B2A4A;
  --color-navy-dark: #111D35;
  --color-navy-light: #2A3F6A;
  --color-white: #FFFFFF;
  --color-gold: #D4A843;
  --color-gold-dark: #B8912E;
  --color-gold-light: #E5C36A;
  --color-gray-light: #F5F5F5;
  --color-gray-medium: #CCCCCC;
  --color-gray-dark: #333333;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1DA851;

  /* Typography */
  --font-primary: 'Rubik', 'Heebo', Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-base: 1.6;
  --line-height-heading: 1.3;
  --letter-spacing-heading: -0.02em;
  --letter-spacing-body: 0.01em;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 1rem;
  --nav-height: 70px;

  /* Borders and Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-round: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 15px rgba(212, 168, 67, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Gradients */
  --gradient-navy-mesh: linear-gradient(
    135deg,
    #1B2A4A 0%,
    #111D35 33%,
    #2A3F6A 66%,
    #1B2A4A 100%
  );
  --gradient-gold-glow: radial-gradient(
    circle at center,
    rgba(212, 168, 67, 0.2) 0%,
    rgba(212, 168, 67, 0) 70%
  );
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-body);
  color: var(--color-gray-dark);
  background-color: var(--color-white);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  letter-spacing: var(--letter-spacing-heading);
  color: var(--color-navy);
}

p {
  margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.text-gold {
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   Section Headings (Shared)
   -------------------------------------------------------------------------- */
.section-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--color-navy);
}

.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.section-title.animate-in::after {
  width: 60px;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-inline: auto;
}

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

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

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

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

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
}

@keyframes subtlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes clipRevealUp {
  from { clip-path: inset(100% 0 0 0); opacity: 0; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes fadeInUpSoft {
  from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes goldGlowPulse {
  0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes floatParticle {
  0% { transform: translateY(0) rotate(45deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(45deg); opacity: 0; }
}

@keyframes slideInFromBottom {
  0% { transform: translateY(100px); opacity: 0; }
  60% { transform: translateY(-10px); opacity: 1; }
  80% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* Scroll animation targets - data-anim based system */
[data-anim] {
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

[data-anim="fade-up"] { opacity: 0; transform: translateY(30px); }
[data-anim="slide-right"] { opacity: 0; transform: translateX(-40px); }
[data-anim="slide-left"] { opacity: 0; transform: translateX(40px); }
[data-anim="scale"] { opacity: 0; transform: scale(0.85); }
[data-anim="blur"] { opacity: 0; filter: blur(8px); transform: translateY(15px); }

[data-anim].animate-in {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
  filter: blur(0) !important;
}

/* Legacy fallback for elements without data-anim */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 2rem;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 48px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Primary — Gold background */
.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

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

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary — Outline gold */
.btn-secondary {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-lg);
}

.btn-phone {
  min-height: 48px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  padding: 0.875rem 2rem;
  direction: ltr;
  unicode-bidi: plaintext;
}

.btn-submit {
  width: 100%;
  margin-top: var(--space-md);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  padding: 0.875rem 2rem;
}

/* Button ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.35);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Navigation Bar
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .logo-text {
  text-shadow: 0 0 10px rgba(212, 168, 67, 0.3);
  transition: text-shadow var(--transition-base);
}

.navbar {
  background-color: var(--color-navy);
  height: var(--nav-height);
  box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

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

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: 0;
}

/* Nav Links */
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--color-white);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  padding: var(--space-sm) var(--space-xs);
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-primary);
}

.dropdown-arrow {
  display: inline-block;
  transition: transform var(--transition-base);
  font-size: 0.7rem;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + var(--space-sm));
  right: 0;
  background: var(--color-navy-dark);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}

.dropdown-menu.dropdown-open {
  display: block;
  animation: fadeIn 0.2s ease;
}

.dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-md);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-item:hover {
  background-color: rgba(212, 168, 67, 0.1);
  color: var(--color-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
  min-width: 48px;
  min-height: 48px;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-navy-dark);
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 1000;
  }

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

  body.nav-open-body {
    overflow: hidden;
  }

  .nav-link {
    font-size: var(--font-size-xl);
    padding: 0.75rem var(--space-lg);
    min-height: 48px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    margin-top: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .dropdown-menu.dropdown-open {
    display: block;
  }

  .dropdown-item {
    text-align: center;
    padding: var(--space-sm) var(--space-lg);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D1B2A url('images/hero-bg.jpg') center top / cover no-repeat;
  overflow: hidden;
}

/* Dark overlay on top of bg image + gradient for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 55%, rgba(13,27,42,0.62) 0%, transparent 80%),
    linear-gradient(180deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.72) 18%, rgba(20,34,68,0.58) 40%, rgba(20,34,68,0.60) 60%, rgba(13,27,42,0.78) 85%, rgba(13,27,42,0.90) 100%);
  z-index: 1;
}

/* Security grid pattern overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212,168,67,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 75%);
}

/* Decorative corner brackets */
.hero-corner {
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.35;
}
.hero-corner--tl { top: 40px; right: 40px; border-top: 2px solid #D4A843; border-right: 2px solid #D4A843; }
.hero-corner--tr { top: 40px; left: 40px; border-top: 2px solid #D4A843; border-left: 2px solid #D4A843; }
.hero-corner--bl { bottom: 40px; right: 40px; border-bottom: 2px solid #D4A843; border-right: 2px solid #D4A843; }
.hero-corner--br { bottom: 40px; left: 40px; border-bottom: 2px solid #D4A843; border-left: 2px solid #D4A843; }

/* Animated gold ring behind logo */
.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.12);
  z-index: 2;
  pointer-events: none;
  animation: ringPulse 6s ease-in-out infinite;
}

.hero-ring:nth-child(2) {
  width: 340px;
  height: 340px;
  border-color: rgba(212,168,67,0.18);
  animation-delay: -2s;
}

.hero-ring:nth-child(3) {
  width: 240px;
  height: 240px;
  border-color: rgba(212,168,67,0.25);
  animation-delay: -4s;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.9; }
}

/* Hero logo background watermark */
.hero-logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  animation: heroLogoPulse 10s ease-in-out infinite;
}

.hero-logo-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.5) contrast(0.6);
}

/* Hero logo visible centered */
.hero-logo-main {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 3px solid rgba(212, 168, 67, 0.6);
  box-shadow:
    0 0 40px rgba(212, 168, 67, 0.25),
    0 0 80px rgba(212, 168, 67, 0.1),
    0 0 120px rgba(212, 168, 67, 0.05);
  animation: logoGlow 4s ease-in-out infinite alternate;
  position: relative;
  z-index: 5;
}

/* Gold accent line under logo */
.hero-accent-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A843, transparent);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 5;
}

/* Floating diamond shapes */
.hero-diamond {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, rgba(212,168,67,0.6), rgba(212,168,67,0.15));
  transform: rotate(45deg);
  z-index: 3;
  pointer-events: none;
  animation: floatDiamond 8s ease-in-out infinite;
}

.hero-diamond:nth-child(1) { top: 12%; right: 12%; animation-delay: 0s; width: 14px; height: 14px; }
.hero-diamond:nth-child(2) { top: 22%; left: 8%; animation-delay: -2s; width: 10px; height: 10px; }
.hero-diamond:nth-child(3) { bottom: 18%; right: 18%; animation-delay: -4s; width: 18px; height: 18px; }
.hero-diamond:nth-child(4) { bottom: 28%; left: 12%; animation-delay: -6s; width: 12px; height: 12px; }
.hero-diamond:nth-child(5) { top: 55%; right: 6%; animation-delay: -1s; width: 8px; height: 8px; }
.hero-diamond:nth-child(6) { top: 38%; left: 22%; animation-delay: -3s; width: 16px; height: 16px; }

@keyframes floatDiamond {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(-25px); opacity: 0.85; }
}

@keyframes heroLogoPulse {
  0%, 100% { opacity: 0.03; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.06; transform: translate(-50%, -50%) scale(1.02); }
}

@keyframes logoGlow {
  0% {
    box-shadow:
      0 0 40px rgba(212, 168, 67, 0.2),
      0 0 80px rgba(212, 168, 67, 0.08);
    border-color: rgba(212, 168, 67, 0.4);
  }
  100% {
    box-shadow:
      0 0 50px rgba(212, 168, 67, 0.4),
      0 0 100px rgba(212, 168, 67, 0.15),
      0 0 150px rgba(212, 168, 67, 0.05);
    border-color: rgba(212, 168, 67, 0.8);
  }
}

@media (max-width: 767px) {
  .hero-logo-bg { width: 350px; height: 350px; }
  .hero-logo-main { width: 130px; height: 130px; }
  .hero-ring { width: 320px; height: 320px; }
  .hero-ring:nth-child(2) { width: 250px; height: 250px; }
  .hero-ring:nth-child(3) { width: 180px; height: 180px; }
  .hero-corner { width: 60px; height: 60px; }
  .hero-corner--tl, .hero-corner--tr { top: 15px; }
  .hero-corner--bl, .hero-corner--br { bottom: 15px; }
  .hero-corner--tl, .hero-corner--bl { right: 15px; }
  .hero-corner--tr, .hero-corner--br { left: 15px; }
  .hero-diamond:nth-child(n+4) { display: none; }
}

/* Noise texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-3xl) var(--container-padding);
  max-width: 850px;
  animation: none;
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-heading);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-inline: auto;
  letter-spacing: 0.05em;
}

.hero-tagline {
  font-size: var(--font-size-xl);
  color: var(--color-gold);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.03em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--color-gold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-xl);
}

/* Staggered hero entrance */
.hero-title {
  animation: clipRevealUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-subtitle {
  animation: fadeInUpSoft 0.8s ease 0.7s both;
}

.hero-tagline {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 25%, #fff 50%, var(--color-gold-light) 75%, var(--color-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUpSoft 0.8s ease 1.0s both, textShimmer 4s linear 1.8s infinite;
}

.hero-cta {
  animation: fadeInUpSoft 0.8s ease 1.3s both;
}

.hero-badge {
  animation: fadeInUpSoft 0.8s ease 0.5s both;
}

/* Gold glow pulse behind hero */
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.4) 0%, rgba(212, 168, 67, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: goldGlowPulse 6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

/* Floating diamond particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(212, 168, 67, 0.3);
  transform: rotate(45deg);
  bottom: -10px;
}

.hero-particles span:nth-child(1) { right: 10%; animation: floatParticle 12s linear 0s infinite; width: 4px; height: 4px; }
.hero-particles span:nth-child(2) { right: 25%; animation: floatParticle 16s linear 2s infinite; width: 8px; height: 8px; }
.hero-particles span:nth-child(3) { right: 40%; animation: floatParticle 14s linear 4s infinite; }
.hero-particles span:nth-child(4) { right: 55%; animation: floatParticle 18s linear 1s infinite; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { right: 70%; animation: floatParticle 13s linear 3s infinite; width: 3px; height: 3px; }
.hero-particles span:nth-child(6) { right: 85%; animation: floatParticle 15s linear 5s infinite; width: 7px; height: 7px; }
.hero-particles span:nth-child(7) { right: 30%; animation: floatParticle 20s linear 7s infinite; width: 4px; height: 4px; }
.hero-particles span:nth-child(8) { right: 65%; animation: floatParticle 17s linear 0.5s infinite; }
.hero-particles span:nth-child(9) { right: 15%; animation: floatParticle 19s linear 6s infinite; width: 5px; height: 5px; }
.hero-particles span:nth-child(10) { right: 50%; animation: floatParticle 11s linear 1.5s infinite; width: 3px; height: 3px; }
.hero-particles span:nth-child(11) { right: 75%; animation: floatParticle 22s linear 8s infinite; width: 7px; height: 7px; }
.hero-particles span:nth-child(12) { right: 5%; animation: floatParticle 14s linear 3.5s infinite; width: 4px; height: 4px; }

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services {
  padding: var(--space-4xl) 0;
  position: relative;
}

.services::after,
.testimonials::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid #E8E8E8;
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 168, 67, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(212, 168, 67, 0.3),
    0 0 20px rgba(212, 168, 67, 0.15),
    0 0 40px rgba(212, 168, 67, 0.08);
  border-color: var(--color-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 42, 74, 0.06);
  border-radius: var(--radius-round);
  font-size: 2rem;
  color: var(--color-navy);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background-color: var(--color-gold);
  color: var(--color-navy);
  transform: scale(1.05);
}

.service-card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  color: var(--color-navy);
}

.service-card-desc {
  font-size: var(--font-size-md);
  color: var(--color-gray-dark);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-lg);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-gold-dark);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.service-card-link:hover {
  color: var(--color-navy);
  gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Trust / Why Us Section
   -------------------------------------------------------------------------- */
.trust {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #1B2A4A 0%, #111D35 33%, #1a2845 66%, #0d1a30 100%);
  background-size: 300% 300%;
  animation: gradientShift 20s ease infinite;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe texture */
.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.03) 40px,
    rgba(0, 0, 0, 0.03) 80px
  );
  pointer-events: none;
}

.trust .container {
  position: relative;
  z-index: 1;
}

.trust .section-title {
  color: var(--color-white);
}

.trust .section-title::after {
  background: var(--color-gold);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.trust-item {
  padding: var(--space-lg);
  transition: transform var(--transition-base);
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-round);
  font-size: 1.5rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.trust-item-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.trust-item-desc {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-regular);
}

/* Process Timeline */
.process {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: var(--color-navy-dark);
  color: var(--color-gold);
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.process-step:hover .process-step-number {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
}

.process-step-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

.process-arrow {
  color: var(--color-gold);
  font-size: var(--font-size-lg);
  opacity: 0.6;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

/* Trust logos (if used) */
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-logos img {
  height: 40px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-fast);
}

.trust-logos img:hover {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials {
  padding: var(--space-4xl) 0;
  background-color: var(--color-gray-light);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201D';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  color: var(--color-gray-dark);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-author cite {
  font-style: normal;
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  font-size: var(--font-size-md);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

/* --------------------------------------------------------------------------
   Contact Form Section
   -------------------------------------------------------------------------- */
.contact {
  padding: var(--space-4xl) 0;
}

.contact-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-inline: auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-container {
  order: 1;
}

.contact-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-right: 4px solid var(--color-gold);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.form-group .required {
  color: #D32F2F;
  margin-right: var(--space-xs);
}

/* Form inputs — targeted by element type to avoid HTML changes */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-md);
  font-family: var(--font-primary);
  color: var(--color-gray-dark);
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-medium);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  direction: rtl;
  text-align: right;
  min-height: 48px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999999;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.contact-form 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='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-left: 2.5rem;
  cursor: pointer;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: var(--font-size-sm);
  color: #666666;
  margin-top: var(--space-md);
  text-align: center;
}

/* Contact Info */
.contact-info {
  padding: var(--space-xl) 0;
  order: 2;
}

.contact-info-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-xl);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 42, 74, 0.06);
  border-radius: var(--radius-round);
  color: var(--color-navy);
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.contact-info-item:hover .contact-info-icon {
  background-color: var(--color-gold);
  color: var(--color-navy);
}

.contact-info-link {
  color: var(--color-gold-dark);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
}

.contact-info-link:hover {
  color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  animation: slideInFromBottom 0.8s ease 2s both, subtlePulse 3s ease-in-out 3s infinite;
}

.whatsapp-float:hover {
  background-color: var(--color-whatsapp-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* WhatsApp tooltip */
.whatsapp-float[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 72px;
  background-color: var(--color-white);
  color: var(--color-gray-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover::after {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, #0a1220 100%);
  color: var(--color-white);
  padding-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer-col {
  min-width: 0;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo img {
  height: 36px;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-md);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-base);
}

.footer-col-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-md);
  transition: color var(--transition-fast);
  display: inline-block;
  padding: var(--space-xs) 0;
}

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

.footer-links a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-round);
  color: var(--color-white);
  transition: all var(--transition-base);
}

.social-icon:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

.social-icon:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-nap {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-sm);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-sm);
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-banner-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-banner-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-inline: auto;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Page Headers (Inner Pages)
   -------------------------------------------------------------------------- */
.page-header {
  background-color: var(--color-navy);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
}

.page-header-title {
  font-size: var(--font-size-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.page-header-breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}

.page-header-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.page-header-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
}

.page-header-breadcrumb .current {
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   Service Detail Pages
   -------------------------------------------------------------------------- */
.service-detail {
  padding: var(--space-4xl) 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.service-detail-content h2 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.service-detail-content p {
  margin-bottom: var(--space-lg);
  color: var(--color-gray-dark);
}

.service-detail-content ul {
  margin-bottom: var(--space-lg);
}

.service-detail-content ul li {
  padding: var(--space-sm) 0;
  padding-right: var(--space-xl);
  position: relative;
  color: var(--color-gray-dark);
}

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: var(--radius-round);
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Service Features */
.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.service-feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.service-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-gold-dark);
  font-size: 1.25rem;
}

.service-feature-text h3 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.service-feature-text p {
  font-size: var(--font-size-md);
  color: var(--color-gray-dark);
  margin-bottom: 0;
}

/* Process Timeline (vertical, for service detail pages) */
.process-timeline {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  padding-right: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  right: 24px;
  width: 3px;
  height: 100%;
  background-color: var(--color-gold);
  border-radius: 2px;
}

.process-timeline-step {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.process-timeline-step:last-child {
  padding-bottom: 0;
}

.process-timeline-number {
  position: absolute;
  right: -3rem;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-navy);
  color: var(--color-gold);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-gold);
  z-index: 1;
}

.process-timeline-content h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.process-timeline-content p {
  font-size: var(--font-size-md);
  color: var(--color-gray-dark);
  margin-bottom: 0;
}

/* Recruit / Trust List */
.recruit-list {
  max-width: 650px;
  margin: 0 auto var(--space-xl);
}

.recruit-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-size: var(--font-size-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.recruit-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.recruit-quote {
  max-width: 650px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-xl);
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  border-right: 4px solid var(--color-gold);
}

.recruit-quote p {
  margin-bottom: 0;
}

/* Checklist Teaser */
.checklist-teaser-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
}

.checklist-teaser-text {
  font-size: var(--font-size-md);
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.checklist-preview {
  margin-bottom: var(--space-xl);
}

.checklist-preview-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--font-size-md);
}

.checklist-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.checklist-cta {
  text-align: center;
  padding-top: var(--space-md);
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-intro {
  padding: var(--space-4xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-content h2 {
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

.about-content p {
  color: var(--color-gray-dark);
  margin-bottom: var(--space-md);
}

/* About Story */
.about-story-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--font-size-lg);
  line-height: 1.9;
}

.about-story-content p {
  margin-bottom: var(--space-lg);
}

/* Values */
.about-values {
  padding: var(--space-4xl) 0;
  background-color: var(--color-gray-light);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  border-radius: var(--radius-round);
  color: var(--color-gold);
  font-size: 1.5rem;
}

.value-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.value-text {
  color: var(--color-gray-dark);
  font-size: var(--font-size-md);
}

/* Trust Anchors */
.trust-anchors {
  max-width: 800px;
  margin: 0 auto;
}

.trust-anchor-item {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.trust-anchor-heading {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.trust-anchor-heading svg {
  flex-shrink: 0;
}

.trust-anchor-item p {
  font-size: var(--font-size-md);
  color: var(--color-gray-dark);
  line-height: var(--line-height-base);
}

.trust-anchor-cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin-top: var(--space-sm);
}

.trust-anchor-cities li {
  position: relative;
  padding-right: var(--space-md);
  font-size: var(--font-size-md);
  color: var(--color-gray-dark);
}

.trust-anchor-cities li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: var(--radius-round);
}

.trust-anchor-steps {
  counter-reset: step-counter;
  margin-top: var(--space-sm);
  padding-right: 0;
}

.trust-anchor-steps li {
  padding: var(--space-xs) 0;
  padding-right: var(--space-xl);
  position: relative;
  font-size: var(--font-size-md);
  color: var(--color-gray-dark);
}

.trust-anchor-steps li strong {
  color: var(--color-navy);
}

/* Licenses Placeholder */
.licenses-placeholder {
  max-width: 800px;
  margin: var(--space-2xl) auto 0;
  background-color: var(--color-gray-light);
  border: 2px dashed var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.licenses-placeholder h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.licenses-placeholder p {
  font-size: var(--font-size-md);
  color: var(--color-gray-dark);
  opacity: 0.7;
  margin-bottom: 0;
}

/* Team */
.team-section {
  padding: var(--space-4xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

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

.team-card-image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-round);
  object-fit: cover;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--color-gold);
}

.team-card-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.team-card-role {
  font-size: var(--font-size-sm);
  color: var(--color-gold-dark);
  font-weight: var(--font-weight-medium);
}

/* --------------------------------------------------------------------------
   Thank You Page
   -------------------------------------------------------------------------- */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1B2A4A 0%, #0d1a30 100%);
  color: var(--color-white);
  padding: var(--space-xl);
  animation: fadeIn 0.6s ease both;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--color-gold);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  font-size: 2.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.thank-you-page h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  color: var(--color-gold);
  animation: fadeInUp 0.6s ease 0.3s both;
}

.thank-you-page p {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.thank-you-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-md);
  animation: fadeInUp 0.6s ease 0.5s both;
}

.thank-you-actions a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.thank-you-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.btn-home {
  background: var(--color-gold);
  color: var(--color-navy);
}

.thank-you-footer {
  margin-top: var(--space-3xl);
  opacity: 0.6;
  font-size: var(--font-size-sm);
  animation: fadeIn 0.6s ease 0.6s both;
}

/* --------------------------------------------------------------------------
   Skip Link (Accessibility)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  right: var(--space-md);
  background-color: var(--color-gold);
  color: var(--color-navy);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */

/* Focus states — gold outline for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  z-index: 1001;
  width: 0%;
  pointer-events: none;
}

/* ==========================================================================
   NEXT-LEVEL WOW ANIMATIONS
   ========================================================================== */


/* --- Animated Grid Background --- */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.07;
}

.hero-grid svg {
  width: 100%;
  height: 100%;
}

.hero-grid line {
  stroke: var(--color-gold);
  stroke-width: 0.5;
}

/* --- Glitch Text Effect on Hero Title --- */
.hero-title {
  position: relative;
}

@keyframes glitchFlash {
  0%, 90%, 100% { opacity: 0; }
  92% { opacity: 1; transform: translate(-2px, 1px); }
  94% { opacity: 0; }
  96% { opacity: 1; transform: translate(2px, -1px); }
  98% { opacity: 0; }
}

.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-title::before {
  color: rgba(212, 168, 67, 0.5);
  animation: glitchFlash 8s ease-in-out 3s infinite;
  clip-path: inset(0 0 50% 0);
}

.hero-title::after {
  color: rgba(42, 63, 106, 0.5);
  animation: glitchFlash 8s ease-in-out 3.1s infinite;
  clip-path: inset(50% 0 0 0);
}

/* --- Scanning Line Effect on Hero --- */
.hero-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  z-index: 5;
  opacity: 0.4;
  animation: scanLine 4s linear 2s infinite;
  pointer-events: none;
}

@keyframes scanLine {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { top: 100%; opacity: 0; }
}

/* --- Magnetic Hover Glow (applied via JS) --- */
.magnetic-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.service-card:hover .magnetic-glow,
.testimonial-card:hover .magnetic-glow,
.value-card:hover .magnetic-glow {
  opacity: 1;
}

/* --- Animated Counter Style --- */
.counter-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-xs);
  font-variant-numeric: tabular-nums;
}

/* --- Enhanced Hero Particles - More dramatic --- */
.hero-particles span {
  box-shadow: 0 0 6px rgba(212, 168, 67, 0.4);
}

/* --- Typing cursor for hero subtitle --- */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--color-gold);
  margin-right: 4px;
  animation: cursorBlink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Section Reveal - Full width gold wipe --- */
@keyframes sectionRevealLine {
  0% { width: 0; left: 50%; }
  50% { width: 100%; left: 0; }
  100% { width: 0; left: 50%; opacity: 0; }
}

.section-reveal-line {
  position: absolute;
  top: 0;
  height: 2px;
  background: var(--color-gold);
  pointer-events: none;
  z-index: 10;
}

/* --- Card Border Trace Animation --- */
@keyframes borderTrace {
  0% { background-position: 0% 0%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

.service-card:hover {
  border-image: linear-gradient(
    var(--border-angle, 0deg),
    var(--color-gold) 0%,
    transparent 40%,
    transparent 60%,
    var(--color-gold-light) 100%
  ) 1;
  animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* --- Hero CTA Buttons - Glow Effect --- */
.hero-cta .btn-primary {
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4), 0 0 40px rgba(212, 168, 67, 0.2);
  animation: ctaGlow 2s ease-in-out 2s infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 67, 0.4), 0 0 40px rgba(212, 168, 67, 0.2); }
  50% { box-shadow: 0 0 30px rgba(212, 168, 67, 0.6), 0 0 60px rgba(212, 168, 67, 0.3), 0 0 80px rgba(212, 168, 67, 0.15); }
}

/* --- Floating Icons in Trust Section --- */
.trust-icon {
  animation: floatIcon 3s ease-in-out infinite;
}

.trust-item:nth-child(2) .trust-icon { animation-delay: 0.3s; }
.trust-item:nth-child(3) .trust-icon { animation-delay: 0.6s; }
.trust-item:nth-child(4) .trust-icon { animation-delay: 0.9s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Process Step Pulse on Scroll --- */
.process-step.animate-in .process-step-number {
  animation: stepReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes stepReveal {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Testimonial Quote Marks Animation --- */
.testimonial-card.animate-in::before {
  animation: quoteReveal 0.8s ease 0.3s both;
}

@keyframes quoteReveal {
  0% { opacity: 0; transform: scale(0) rotate(-20deg); }
  100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
}

/* --- Footer Reveal --- */
.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer-col.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.footer-col:nth-child(2) { transition-delay: 0.1s; }
.footer-col:nth-child(3) { transition-delay: 0.2s; }
.footer-col:nth-child(4) { transition-delay: 0.3s; }

/* --- Spotlight effect on sections --- */
.services,
.testimonials,
.contact {
  position: relative;
  overflow: hidden;
}

.services::before,
.testimonials::before,
.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   UI/UX PREMIUM UPGRADE - Logo, Images, Enhanced Components
   ========================================================================== */

/* --- Logo Image in Header --- */
.logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 168, 67, 0.5);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo:hover .logo-img {
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.4);
}

.site-header.scrolled .logo-img {
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.3);
}

/* --- Logo in Footer --- */
.footer-logo-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 168, 67, 0.4);
  margin-bottom: 0.75rem;
}

/* --- Hero Background Image Overlay --- */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px) saturate(0.5);
}

/* --- About/Team Image Section --- */
.about-image-section {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
}

.about-image-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 168, 67, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image-section img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(212, 168, 67, 0.15);
}

/* --- Enhanced Service Cards with Icon Badges --- */
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.08) 0%, rgba(212, 168, 67, 0.12) 100%);
  border: 2px solid rgba(212, 168, 67, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.25);
}

/* --- Enhanced Service Card Hover --- */
.service-card:hover {
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(212, 168, 67, 0.25),
    0 0 30px rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-8px);
}

/* --- Service Card Top Border Accent --- */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* --- Trust Section Number Highlight --- */
.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Enhanced Trust Items --- */
.trust-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.4s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.2) rotate(-10deg);
}

.trust-item {
  transition: all 0.4s ease;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
}

.trust-item:hover {
  background: rgba(212, 168, 67, 0.05);
  border-color: rgba(212, 168, 67, 0.15);
}

/* --- Enhanced Testimonial Cards --- */
.testimonial-card {
  position: relative;
  padding-top: 2.5rem;
}

.testimonial-card::before {
  content: '\201D';
  position: absolute;
  top: -5px;
  right: 20px;
  font-size: 5rem;
  color: rgba(212, 168, 67, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* --- Enhanced Contact Form --- */
.contact-form {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 67, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:focus-within {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.08);
}

/* --- Form Input Focus Enhancement --- */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15) !important;
  outline: none;
}

/* --- Process Steps Enhanced --- */
.process-step {
  position: relative;
}

.process-step-number {
  transition: all 0.4s ease;
}

.process-step:hover .process-step-number {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
}

/* --- Section Background Patterns --- */
.services {
  background: linear-gradient(180deg, var(--color-white) 0%, rgba(245, 245, 245, 0.5) 100%);
}

.trust {
  background-size: 300% 300%;
  animation: gradientShift 20s ease infinite;
}

.testimonials {
  background: linear-gradient(180deg, var(--color-white) 0%, rgba(27, 42, 74, 0.03) 50%, var(--color-white) 100%);
}

/* --- Footer Enhanced --- */
.site-footer {
  position: relative;
  overflow: hidden;
}

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

/* --- Social Icons Enhanced --- */
.social-icon {
  transition: all 0.3s ease;
}

.footer-social a:hover .social-icon {
  color: var(--color-gold);
  transform: translateY(-3px) scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(212, 168, 67, 0.3));
}

/* --- Smooth Page Transitions --- */
main {
  animation: fadeIn 0.5s ease;
}

/* --- Enhanced Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.5);
}

/* --- Contact Info Enhanced Hover --- */
.contact-info-item {
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.contact-info-item:hover {
  background: rgba(212, 168, 67, 0.05);
  transform: translateX(-5px);
}

/* --- WhatsApp Button Enhanced --- */
.whatsapp-float {
  animation: slideInFromBottom 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s both;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  transform: scale(1.1) translateY(-3px);
}

/* --- Navbar Glass Effect on Scroll --- */
.site-header.scrolled .navbar {
  background-color: rgba(27, 42, 74, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* --- Custom Selection Color --- */
::selection {
  background-color: rgba(212, 168, 67, 0.3);
  color: var(--color-navy);
}

::-moz-selection {
  background-color: rgba(212, 168, 67, 0.3);
  color: var(--color-navy);
}

/* --- Smooth Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-navy-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

/* --- Links Hover Animation --- */
.service-card-link {
  position: relative;
  display: inline-block;
}

.service-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   Impact Numbers / Stats Counter Section
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #D4A843, #E5C36A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Professional SVG Icon Styles
   -------------------------------------------------------------------------- */
.service-icon-svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-icon-svg svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #D4A843;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-svg {
  background: linear-gradient(135deg, #D4A843, #E5C36A);
  border-color: #D4A843;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 25px rgba(212,168,67,0.3);
}

.service-card:hover .service-icon-svg svg {
  stroke: #1B2A4A;
}

/* --------------------------------------------------------------------------
   Testimonial Avatar Styles
   -------------------------------------------------------------------------- */
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B2A4A, #2A3F6A);
  border: 2px solid rgba(212,168,67,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #D4A843;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-header .testimonial-avatar {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Count-up Animation Helper
   -------------------------------------------------------------------------- */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Micro-interactions & Design Polish
   -------------------------------------------------------------------------- */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Gold focus rings for form inputs */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.25);
}

/* Contact info items hover */
.contact-info-item {
  transition: transform 0.25s ease, background 0.25s ease;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
}

.contact-info-item:hover {
  transform: translateX(-6px);
  background: rgba(212, 168, 67, 0.06);
}

/* Enhanced CTA button gradient animation */
.btn-primary {
  background-size: 200% auto;
  transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-position: right center;
}

/* Trust items enhanced hover */
.trust-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Testimonial card border accent */
.testimonial-card {
  border-right: 3px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-right-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Enhanced quote icon */
.testimonial-card::before {
  font-size: 3.5rem;
  opacity: 0.08;
}

/* Nav links hover underline */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Section title refined animation on scroll */
.section-title {
  position: relative;
}

/* Process step hover */
.process-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.2);
}

/* Footer link hover */
.footer-link {
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-gold);
  transform: translateX(-3px);
}

/* Stat item hover */
.stat-item {
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.stat-item:hover {
  transform: translateY(-4px);
}

/* Stats number plus/percent prefix */
.stat-number::before {
  content: '+';
  font-size: 0.6em;
  opacity: 0.7;
}

.stat-item:nth-child(3) .stat-number::before {
  content: '';
}

.stat-item:last-child .stat-number::after {
  content: '%';
  font-size: 0.6em;
  opacity: 0.7;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --color-gray-medium: #666666;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border-width: 3px;
  }

  .service-card {
    border-width: 2px;
    border-color: var(--color-navy);
  }
}

/* --------------------------------------------------------------------------
   Credentials Section (about page)
   -------------------------------------------------------------------------- */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  max-width: 800px;
  margin-inline: auto;
}

.credential-card {
  background-color: var(--color-gray-light);
  border: 2px dashed var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.credential-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  border-radius: var(--radius-round);
  color: var(--color-gold);
  font-size: 1.25rem;
}

.credential-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.credential-text {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  opacity: 0.7;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Desktop Breakpoint (min-width: 768px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .credentials-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  /* Typography scaling */
  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }

  /* Services Grid — 3 columns */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Trust Grid — 4 columns */
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Testimonials — 2 columns */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact — 2 columns */
  .contact-wrapper {
    grid-template-columns: 1fr 1.2fr;
  }

  .contact-form-container {
    order: 2;
  }

  .contact-info {
    order: 1;
  }

  /* Footer — multi-column */
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  /* Service Detail — 2 columns */
  .service-detail-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  /* Service Features — 2 columns */
  .service-features {
    grid-template-columns: 1fr 1fr;
  }

  /* About Grid — 2 columns */
  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  /* Values Grid — 3 columns */
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Team Grid — 4 columns */
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Large Desktop Breakpoint (min-width: 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Mobile Adjustments (max-width: 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
    --space-4xl: 3.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
  }

  .hero-title {
    font-size: var(--font-size-3xl);
    line-height: 1.2;
  }

  .hero-tagline {
    font-size: var(--font-size-lg);
  }

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

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    font-size: var(--font-size-md);
    padding: 0.875rem 1.5rem;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Footer tap targets */
  .footer-links a {
    display: flex;
    align-items: center;
    padding: 0.625rem 0;
    min-height: 44px;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  /* Disable heavy hero animations on mobile */
  .hero-ring,
  .hero-diamond {
    animation: none !important;
  }

  .hero-particle {
    display: none;
  }

  /* CTA banner mobile */
  .cta-banner-title {
    font-size: var(--font-size-xl);
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .cta-banner-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* --------------------------------------------------------------------------
   Small Phones (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
    --space-4xl: 2.5rem;
    --space-2xl: 1.5rem;
    --space-3xl: 2rem;
    --container-padding: 0.75rem;
  }

  .hero-logo-main { width: 100px; height: 100px; }
  .hero-logo-bg { width: 280px; height: 280px; }
  .hero-ring { width: 260px; height: 260px; }
  .hero-ring:nth-child(2) { width: 200px; height: 200px; }
  .hero-ring:nth-child(3) { width: 140px; height: 140px; }
  .hero-corner { width: 45px; height: 45px; }
  .hero-corner--tl, .hero-corner--tr { top: 10px; }
  .hero-corner--bl, .hero-corner--br { bottom: 10px; }
  .hero-corner--tl, .hero-corner--bl { right: 10px; }
  .hero-corner--tr, .hero-corner--br { left: 10px; }

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

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

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    direction: rtl;
    text-align: right;
  }

  .navbar,
  .hamburger,
  .whatsapp-float,
  .footer-social,
  .footer-bottom,
  .btn-phone,
  .cta-banner,
  .skip-link {
    display: none !important;
  }

  @page {
    size: A4;
    margin: 2cm;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
    break-after: avoid;
    color: #1B2A4A !important;
  }

  .service-card,
  .testimonial-card,
  .value-card,
  .team-card,
  img,
  figure {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666 !important;
  }

  .hero {
    min-height: auto;
    padding: 2cm 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-title {
    font-size: 24pt;
    color: #1B2A4A !important;
  }

  .hero-subtitle,
  .hero-tagline {
    color: #333 !important;
  }

  .services-grid,
  .testimonials-grid,
  .values-grid,
  .footer-grid,
  .trust-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    padding: 1cm 0;
    border-top: 2px solid #1B2A4A;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  .contact-form {
    display: none;
  }

  .services,
  .trust,
  .testimonials,
  .contact,
  .about-intro,
  .about-values,
  .team-section,
  .service-detail {
    padding: 1cm 0;
  }

  .section-title::after,
  .footer-col-title::after {
    background-color: #1B2A4A !important;
  }

  .btn {
    border: 1px solid #1B2A4A !important;
    padding: 0.3cm 0.6cm;
  }
}

