/* =============================================
   EAGLE I SECURITY — Premium Website Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&family=Rajdhani:wght@500;600;700&display=swap');

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

:root {
  --navy:    #080D1A;
  --navy2:   #0E1629;
  --navy3:   #131d35;
  --gold:    #C9A84C;
  --gold2:   #e6c96a;
  --gold-dim:#8a6f2e;
  --white:   #ffffff;
  --gray:    #a0a8c0;
  --gray2:   #5a6380;
  --red:     #c0392b;
  --font-h:  'Bebas Neue', sans-serif;
  --font-sub:'Rajdhani', sans-serif;
  --font-b:  'Inter', sans-serif;
  --trans:   all 0.35s cubic-bezier(.4,0,.2,1);
}

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

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-b);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ── Gold Accent Line ── */
.gold-line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans);
}

#navbar.scrolled {
  background: rgba(8, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--navy);
  border-radius: 6px;
}

.logo-icon svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-family: var(--font-h);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--white);
}

.logo-text span:last-child {
  font-family: var(--font-sub);
  font-size: .7rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sub);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--trans);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--trans);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--trans);
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(201,168,76,.04) 0%, transparent 60%),
    linear-gradient(160deg, #080D1A 0%, #0d1527 50%, #080D1A 100%);
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-shield {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  opacity: .04;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-badge span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .95;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero-title .gold { color: var(--gold); }
.hero-title .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.2);
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8903e 100%);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-sub);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--trans);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-sub);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--trans);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.stat-item {}

.stat-num {
  font-family: var(--font-h);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: 2px;
  color: var(--gray2);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray2);
  font-family: var(--font-sub);
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1s 1s both;
}

.scroll-cue::before {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(transparent, var(--gold-dim));
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   TICKER / ALERT BAR
   ============================================ */
#ticker {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.ticker-track {
  display: flex;
  gap: 80px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-sub);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-track span::before {
  content: '▸';
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION BASE
   ============================================ */
section { position: relative; z-index: 1; }

.section-label {
  font-family: var(--font-sub);
  font-size: .78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
}

/* ============================================
   SERVICES
   ============================================ */
#services {
  padding: 120px 0;
  background: var(--navy2);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  gap: 40px;
  flex-wrap: wrap;
}

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

.service-card {
  background: var(--navy3);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: var(--trans);
}

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

.service-card:hover {
  background: #182038;
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--trans);
}

.service-card:hover .service-icon {
  background: rgba(201,168,76,.2);
  border-color: var(--gold);
}

.service-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-h);
  font-size: 4rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  letter-spacing: 2px;
}

.service-title {
  font-family: var(--font-sub);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.service-desc {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.75;
}

/* ============================================
   WHY US
   ============================================ */
#why {
  padding: 130px 0;
  overflow: hidden;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy3);
}

.why-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #131d35, #080D1A);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-img-placeholder svg {
  width: 120px;
  height: 120px;
  stroke: rgba(201,168,76,.2);
  fill: none;
  stroke-width: .8;
}

.why-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 4px;
  pointer-events: none;
}

.why-corner {
  position: absolute;
  width: 50px; height: 50px;
  border-color: var(--gold);
  border-style: solid;
}

.why-corner.tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.why-corner.br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }

.why-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(201,168,76,.4);
}

.why-badge .big {
  font-family: var(--font-h);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 1px;
}

.why-badge .small {
  font-family: var(--font-sub);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.why-feature h4 {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.why-feature p {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.7;
}

/* ============================================
   PROCESS
   ============================================ */
#process {
  padding: 120px 0;
  background: var(--navy2);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header .section-label { justify-content: center; }
.process-header .section-label::before { display: none; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.process-card {
  background: var(--navy3);
  padding: 48px 32px;
  position: relative;
  transition: var(--trans);
}

.process-card:hover { background: #182038; }

.step-num {
  font-family: var(--font-h);
  font-size: 5rem;
  color: rgba(201,168,76,.08);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 2; }

.step-title {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.7;
}

/* ============================================
   BOOKING / SCHEDULE
   ============================================ */
#booking {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.05), transparent 70%);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-info .section-title { margin-bottom: 24px; }

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.booking-feature {
  display: flex;
  gap: 14px;
  align-items: center;
}

.booking-feature svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.booking-feature span { color: var(--gray); font-size: .95rem; }

/* FORM */
.form-card {
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 8px;
  padding: 48px 40px;
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-title {
  font-family: var(--font-sub);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-sub {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 36px;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: .95rem;
  transition: var(--trans);
  outline: none;
  appearance: none;
}

.form-group select {
  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 d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy2);
  color: var(--white);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray2); }

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 1rem;
  padding: 18px;
  letter-spacing: 3px;
}

.form-note {
  text-align: center;
  color: var(--gray2);
  font-size: .8rem;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note svg { width: 14px; height: 14px; stroke: var(--gray2); fill: none; stroke-width: 2; }

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  padding: 120px 0;
  background: var(--navy2);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }

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

.testimonial-card {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  transition: var(--trans);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,.2);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 20px;
  opacity: .6;
}

.testimonial-text {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-sub);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.author-title {
  font-size: .8rem;
  color: var(--gray2);
  margin-top: 2px;
}

.stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ============================================
   CTA BAND
   ============================================ */
#cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1828, #131d35);
  position: relative;
  overflow: hidden;
}

#cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-content .section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 24px;
}

.cta-content .section-title .gold { color: var(--gold); }

.cta-content p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

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

.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 1rem;
  letter-spacing: 2px;
}

.cta-phone svg { stroke: var(--gold); fill: none; stroke-width: 2; width: 20px; height: 20px; }

/* ============================================
   CONTACT
   ============================================ */
#contact {
  padding: 130px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 24px; }
.contact-info .section-desc { margin-bottom: 48px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.detail-label {
  font-family: var(--font-sub);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.detail-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.detail-sub {
  font-size: .85rem;
  color: var(--gray2);
  margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 70px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--gray2);
  font-size: .9rem;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(201,168,76,.15);
  border-color: var(--gold);
}

.social-btn svg { width: 18px; height: 18px; fill: var(--gray); transition: var(--trans); }
.social-btn:hover svg { fill: var(--gold); }

.footer-col h5 {
  font-family: var(--font-sub);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.footer-col ul li a {
  color: var(--gray2);
  font-size: .9rem;
  transition: var(--trans);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray2);
  font-size: .85rem;
}

.footer-bottom a {
  color: var(--gold-dim);
  transition: var(--trans);
}

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

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.77,0,.175,1);
}

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

.mobile-nav a {
  font-family: var(--font-h);
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--white);
  transition: var(--trans);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 1.5rem;
  transition: var(--trans);
}

.mobile-nav-close:hover { color: var(--gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible { opacity: 1; }

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .why-visual { display: none; }
  .booking-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .form-card { padding: 32px 24px; }
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  width: 64px; height: 64px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-h);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray);
  font-size: .95rem;
}

/* Notification dot */
/* Real logo image */
.nav-logo-img {
  height: 52px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;   /* kills the white box, leaves only the bird */
  transition: var(--trans);
}

.nav-logo-img:hover {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(1.1);
  mix-blend-mode: screen;
}

.nav-notify {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: super;
  animation: pulse 2s infinite;
}
