/* ============================================
   ALASMI CATERING LLC — Corporate Website
   Master Stylesheet
   ============================================ */

/* ----- CSS Custom Properties ----- */
:root {
  /* Primary Palette */
  --color-deep-navy: #0a0e27;
  --color-navy: #141834;
  --color-mid-navy: #1e2556;
  --color-gold: #c9a84c;
  --color-gold-light: #dfc278;
  --color-gold-pale: #f0e4be;
  --color-cream: #f7f3eb;
  --color-white: #ffffff;
  --color-off-white: #faf8f5;

  /* Text */
  --color-text-primary: #1a1a2e;
  --color-text-secondary: #4a4a5a;
  --color-text-muted: #7a7a8a;
  --color-text-light: #b0b0c0;
  --color-text-on-dark: #e8e6f0;

  /* Utils */
  --color-border: #e5e0d6;
  --color-success: #2d9f6e;
  --color-shadow: rgba(10, 14, 39, 0.08);
  --color-shadow-strong: rgba(10, 14, 39, 0.15);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 6rem 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-deep-navy);
}

ul { list-style: none; }

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

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-deep-navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-title.light {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.8;
}
.section-subtitle.light {
  color: var(--color-text-on-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-tag {
  padding-left: 0;
}
.section-header .section-tag::before {
  display: none;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-deep-navy);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  color: var(--color-deep-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}
.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-deep-navy);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-deep-navy);
  border: 2px solid var(--color-deep-navy);
}
.btn-outline-dark:hover {
  background: var(--color-deep-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.97);
  padding: 0.7rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-brand a {
  text-decoration: none;
  color: var(--color-white);
}
.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1px;
}
.navbar-brand .brand-tagline {
  font-size: 0.65rem;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  color: var(--color-text-on-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}
.nav-links a:hover {
  color: var(--color-gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-deep-navy) 0%, var(--color-navy) 40%, var(--color-mid-navy) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.15;
  animation: float-particle 20s infinite;
}
.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 3s; width: 6px; height: 6px; }
.hero-particles span:nth-child(3) { top: 30%; left: 50%; animation-delay: 6s; }
.hero-particles span:nth-child(4) { top: 70%; left: 20%; animation-delay: 9s; width: 3px; height: 3px; }
.hero-particles span:nth-child(5) { top: 40%; left: 70%; animation-delay: 12s; }
.hero-particles span:nth-child(6) { top: 80%; left: 40%; animation-delay: 15s; width: 5px; height: 5px; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.3; }
}

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

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--color-gold);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 4px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-on-dark);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-gold);
  font-weight: 700;
}
.hero-stat-item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--color-white);
}

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

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-deep-navy), var(--color-mid-navy));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
}

.about-image-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
}
.about-image-content .ac-initials {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 8px;
  opacity: 0.8;
}
.about-image-content .ac-sub {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.about-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-deep-navy);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.about-experience-badge .years {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-experience-badge .label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about-text .section-title {
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  font-weight: 500;
}
.about-feature-item .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--color-off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--color-shadow);
  border-color: var(--color-gold-pale);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  transition: all var(--transition-smooth);
}
.service-card:hover .service-icon {
  background: var(--color-gold);
  color: var(--color-white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-deep-navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--color-deep-navy), var(--color-navy));
  position: relative;
  overflow: hidden;
}
.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-gold);
  transition: all var(--transition-smooth);
}
.why-card:hover .why-icon {
  background: var(--color-gold);
  color: var(--color-deep-navy);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--color-text-on-dark);
  opacity: 0.7;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem 2rem;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--transition-smooth);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--color-shadow);
}

.testimonial-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.testimonial-card .quote-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-deep-navy);
  font-size: 1.1rem;
}
.testimonial-author .author-info h4 {
  font-size: 0.95rem;
  color: var(--color-deep-navy);
  font-weight: 600;
}
.testimonial-author .author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-item .ci-icon {
  width: 48px;
  height: 48px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-gold);
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 1rem;
  color: var(--color-deep-navy);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-item p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: var(--color-white);
  transition: border-color var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-deep-navy), var(--color-mid-navy));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: var(--color-text-on-dark);
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  position: relative;
}
.cta-section .btn {
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-deep-navy);
  color: var(--color-text-on-dark);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-deep-navy);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: var(--color-text-on-dark);
  opacity: 0.7;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
}
.footer-contact li .fc-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: var(--color-text-on-dark);
  opacity: 0.7;
}
.footer-bottom-links a:hover {
  color: var(--color-gold);
  opacity: 1;
}

/* ============================================
   INNER PAGE HERO (Privacy & Terms)
   ============================================ */
.page-hero {
  padding: 12rem 0 5rem;
  background: linear-gradient(135deg, var(--color-deep-navy), var(--color-mid-navy));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--color-text-on-dark);
  opacity: 0.7;
  font-size: 1.05rem;
}

/* ============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================ */
.legal-content {
  padding: 5rem 0;
  background: var(--color-white);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-section {
  margin-bottom: 3rem;
}
.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-deep-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gold-pale);
}

.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-section p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-section ul li,
.legal-section ol li {
  margin-bottom: 0.5rem;
}
.legal-section ul {
  list-style: disc;
}

.legal-section strong {
  color: var(--color-text-primary);
}

.legal-intro {
  background: var(--color-cream);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-gold);
  margin-bottom: 3rem;
}
.legal-intro p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-deep-navy);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    align-items: flex-start;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .experience-badge {
    display: none;
  }
  .page-hero h1 {
    font-size: 2.25rem;
  }
  .legal-section h2 {
    font-size: 1.4rem;
  }
  .legal-intro {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .container {
    padding: 0 16px;
  }
  .cta-section h2 {
    font-size: 1.7rem;
  }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ----- A11y ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
