/* ==========================================
   BIG WILLS SECURITY & ENTERTAINMENT
   styles.css — Complete Design System
   bwsellc.com | Ruston, LA
   ========================================== */

/* --- CSS Variables --- */
:root {
  --red: #C8102E;
  --red-dark: #9B0B22;
  --blue: #002868;
  --blue-light: #1a3a8f;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --dark: #111111;
  --gray: #555555;
  --light-gray: #E0E2E8;
  --purple: #7B2FBE;
  --purple-dark: #5A1A9B;
  --gold: #FFD700;
  --gold-dark: #C8A800;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 10px 35px rgba(0,0,0,0.22);
  --radius: 10px;
  --transition: all 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--gray); line-height: 1.75; }
p:last-child { margin-bottom: 0; }

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

/* --- Section Titles --- */
.section-title { text-align: center; margin-bottom: 55px; }
.section-title h2 { color: var(--dark); margin-bottom: 14px; }
.section-title p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.title-bar {
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  margin: 12px auto 0;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  line-height: 1;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(200,16,46,0.4); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,40,104,0.4); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); font-weight: 700; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,215,0,0.45); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,20,0.97);
  backdrop-filter: blur(12px);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { font-family: var(--font-heading); color: var(--white); line-height: 1.2; text-transform: uppercase; }
.nav-logo-text .brand-name { font-size: 1rem; font-weight: 700; display: block; }
.nav-logo-text .brand-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 2px; display: block; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 11px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-book-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius) !important;
  margin-left: 8px;
}
.nav-book-btn:hover { background: var(--red-dark) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 3px; background: var(--white); border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================
   FOOTER
   ========================================== */
.footer-ribbon {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--purple-dark));
  padding: 14px 20px;
  text-align: center;
}
.footer-ribbon p {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
}

.footer { background: #0a0a14; color: var(--white); padding: 60px 24px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img { height: 75px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: #888; font-size: 0.9rem; line-height: 1.7; }

.footer h4 { color: var(--gold); margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 2px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; font-size: 0.9rem; transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.fc-icon { font-size: 1rem; margin-top: 2px; }
.footer-contact-item p, .footer-contact-item a { color: #888; font-size: 0.88rem; margin: 0; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.qr-row { display: flex; gap: 12px; margin-top: 8px; }
.qr-box {
  width: 88px; height: 88px;
  background: #151520;
  border: 2px dashed var(--gold);
  border-radius: 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6px;
  gap: 4px;
}
.qr-box .qr-icon { font-size: 1.6rem; }
.qr-box span { font-size: 0.5rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; }
.qr-box.has-code { border-style: solid; background: #fff; padding: 6px; }
.qr-box.has-code img { width: 100%; height: 100%; object-fit: contain; }

.footer-bottom { border-top: 1px solid #1e1e2e; margin-top: 50px; padding: 22px 24px; text-align: center; }
.footer-bottom p { color: #555; font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: var(--gold); }

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.floating-buttons { position: fixed; bottom: 28px; right: 18px; z-index: 998; display: flex; flex-direction: column; gap: 11px; }
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: var(--transition);
  color: white;
  position: relative;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.call-btn { background: var(--red); }
.whatsapp-btn { background: #25D366; }
.float-label {
  position: absolute;
  right: 62px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.float-btn:hover .float-label { opacity: 1; }

/* ==========================================
   HERO — HOME PAGE
   ========================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--blue) 0%, #001040 45%, #6b0014 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.05) 0%, transparent 70%);
}
/* Star pattern overlay */
.hero::after {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute; top: 15%; left: 0; right: 0;
  font-size: 1rem; color: rgba(255,255,255,0.04);
  letter-spacing: 40px; text-align: center;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-logo { width: 165px; margin: 0 auto 28px; filter: brightness(0) invert(1); animation: fadeInDown 0.8s ease both; }
.hero h1 { color: var(--white); margin-bottom: 8px; animation: fadeInUp 0.8s ease 0.2s both; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-tagline {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease 0.35s both;
}
.hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 580px; margin: 0 auto 36px; animation: fadeInUp 0.8s ease 0.45s both; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.55s both; }
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 0 50%, 50% 0, 100% 50%, 100% 100%);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-home { padding: 90px 24px; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 26px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative; overflow: hidden;
  border-bottom: 4px solid var(--light-gray);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-bottom-color: var(--gold); }
.service-card:hover::before { background: linear-gradient(90deg, var(--gold), var(--purple)); }
.service-icon { font-size: 3rem; margin-bottom: 18px; display: block; }
.service-card h3 { color: var(--blue); margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; }
.service-card .btn { margin-top: 22px; }

/* ==========================================
   ABOUT PREVIEW
   ========================================== */
.about-preview { padding: 90px 24px; background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-img-box {
  background: linear-gradient(145deg, var(--blue), #001040, var(--red-dark));
  border-radius: 14px;
  padding: 50px 40px;
  text-align: center;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-hover);
}
.about-img-box img { max-width: 220px; filter: brightness(0) invert(1); }
.about-text h2 { color: var(--blue); margin-bottom: 20px; }
.about-text p { font-size: 1rem; }
.about-text .btn { margin-top: 10px; }

/* ==========================================
   STATS STRIP
   ========================================== */
.stats-strip { background: var(--blue); padding: 55px 24px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 900px; margin: 0 auto; text-align: center;
}
.stat-item h3 { font-size: 2.6rem; color: var(--gold); margin-bottom: 6px; }
.stat-item p { color: rgba(255,255,255,0.75); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin: 0; }

/* ==========================================
   PURPLE / GOLD RIBBON CTA
   ========================================== */
.ribbon-cta {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-dark) 100%);
  padding: 65px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.ribbon-cta::before, .ribbon-cta::after {
  content: '✦';
  position: absolute; font-size: 9rem; color: rgba(255,215,0,0.06);
  top: 50%; transform: translateY(-50%);
}
.ribbon-cta::before { left: 3%; }
.ribbon-cta::after { right: 3%; }
.ribbon-cta h2 { color: var(--gold); margin-bottom: 16px; position: relative; z-index: 1; }
.ribbon-cta p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 28px; font-size: 1.05rem; position: relative; z-index: 1; }
.ribbon-cta .btn { position: relative; z-index: 1; }

/* ==========================================
   GALLERY PREVIEW
   ========================================== */
.gallery-preview { padding: 90px 24px; background: var(--off-white); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  max-width: 1200px; margin: 0 auto 40px;
}
.gallery-thumb {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 10px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: var(--transition);
}
.gallery-thumb:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); text-align: center; padding: 16px; gap: 8px;
}
.gallery-ph .ph-icon { font-size: 2.2rem; opacity: 0.7; }
.gallery-ph span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.gallery-preview .center { text-align: center; }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  background: linear-gradient(145deg, var(--blue) 0%, #001040 50%, var(--red-dark) 100%);
  padding: 130px 24px 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; text-shadow: 0 2px 15px rgba(0,0,0,0.4); }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.page-hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 50px; background: var(--off-white);
  clip-path: polygon(0 100%, 0 60%, 50% 0, 100% 60%, 100% 100%);
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb { background: var(--dark); padding: 72px 24px 12px; font-size: 0.82rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: #555; margin: 0 8px; }
.breadcrumb .current { color: var(--white); }

/* ==========================================
   SERVICE DETAIL PAGES
   ========================================== */
.service-detail-section { padding: 80px 24px; background: var(--off-white); }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto 60px;
}
.service-img-box {
  background: linear-gradient(145deg, var(--blue), #001040, var(--red-dark));
  border-radius: 14px; min-height: 360px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white; text-align: center; padding: 50px 40px; gap: 15px;
  box-shadow: var(--shadow-hover);
}
.service-img-box .big-icon { font-size: 5.5rem; opacity: 0.8; }
.service-img-box p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; }
.service-img-box img { max-width: 200px; filter: brightness(0) invert(1); border-radius: 8px; }
/* Real event photos (not logo icons) fill the box in full color — no invert filter */
.service-img-box.has-photo { padding: 0; overflow: hidden; }
.service-img-box .service-photo { width: 100%; height: 100%; max-width: none; object-fit: cover; border-radius: 14px; filter: none; }

.service-detail-text h2 { color: var(--blue); margin-bottom: 18px; }
.service-features { margin: 22px 0; }
.service-features li {
  padding: 11px 0; border-bottom: 1px solid var(--light-gray);
  display: flex; align-items: center; gap: 13px; color: var(--gray);
  font-size: 0.95rem;
}
.service-features li::before {
  content: '✓';
  background: var(--red); color: white;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.service-detail-text .btn { margin-top: 14px; margin-right: 10px; }

/* Gold feature highlight box */
.highlight-box {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 12px; padding: 35px 30px;
  text-align: center; margin: 40px auto;
  max-width: 1100px;
}
.highlight-box h3 { color: var(--gold); margin-bottom: 12px; }
.highlight-box p { color: rgba(255,255,255,0.85); margin: 0; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-story { padding: 90px 24px; background: var(--off-white); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1100px; margin: 0 auto; }

.mission-section { background: var(--blue); padding: 70px 24px; text-align: center; }
.mission-section h2 { color: var(--gold); margin-bottom: 22px; }
.mission-section p { color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto; font-size: 1.05rem; line-height: 1.9; }

.values-section { padding: 90px 24px; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.value-card {
  background: var(--off-white); border-radius: 12px;
  padding: 32px 22px; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.value-card .icon { font-size: 2.6rem; margin-bottom: 16px; }
.value-card h4 { color: var(--blue); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; margin: 0; }

/* ==========================================
   GALLERY PAGE
   ========================================== */
.gallery-page { padding: 90px 24px; background: var(--off-white); }
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px; max-width: 1200px; margin: 0 auto;
}
.gallery-page-item {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--blue), var(--red));
  border-radius: 10px; overflow: hidden;
  position: relative; cursor: pointer; transition: var(--transition);
}
.gallery-page-item:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 10px 14px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color: #fff; font-size: 0.78rem; line-height: 1.3;
  font-family: var(--font-body);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-page { padding: 90px 24px; background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { color: var(--blue); margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 28px; }
.ci-icon {
  background: var(--red); color: white;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-text h4 { color: var(--dark); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.ci-text p, .ci-text a { color: var(--gray); margin: 0; font-size: 0.95rem; transition: var(--transition); }
.ci-text a:hover { color: var(--red); }

.form-card { background: var(--white); border-radius: 14px; padding: 44px; box-shadow: var(--shadow); }
.form-card h3 { color: var(--blue); margin-bottom: 28px; padding-bottom: 18px; border-bottom: 3px solid var(--gold); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); outline: none; color: var(--dark);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,40,104,0.08); }
.form-group textarea { min-height: 125px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ==========================================
   MAP
   ========================================== */
.map-section { height: 370px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ==========================================
   QUOTE PAGE
   ========================================== */
.quote-page { padding: 90px 24px; background: var(--off-white); }
.quote-card { background: var(--white); border-radius: 14px; padding: 52px; box-shadow: var(--shadow); max-width: 820px; margin: 0 auto; }
.quote-card h3 { color: var(--blue); margin-bottom: 28px; padding-bottom: 18px; border-bottom: 3px solid var(--gold); }
.book-now-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px; padding: 30px;
  text-align: center; margin-top: 30px;
}
.book-now-strip h4 { color: var(--dark); margin-bottom: 8px; font-size: 1.1rem; }
.book-now-strip p { color: rgba(0,0,0,0.7); font-size: 0.9rem; margin-bottom: 18px; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Logo Jump / Float Animation --- */
@keyframes logoFloat {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-14px) rotate(-2deg); }
  50%  { transform: translateY(-18px) rotate(0deg); }
  75%  { transform: translateY(-14px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes logoJump {
  0%   { transform: translateY(0) scale(1); }
  20%  { transform: translateY(-20px) scale(1.08) rotate(-4deg); }
  40%  { transform: translateY(-28px) scale(1.1) rotate(0deg); }
  60%  { transform: translateY(-16px) scale(1.05) rotate(3deg); }
  80%  { transform: translateY(-6px) scale(1.02) rotate(0deg); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes navLogoJump {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-10px) scale(1.1) rotate(-5deg); }
  60%  { transform: translateY(-5px) scale(1.05) rotate(3deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

/* Hero logo: fade in, then float forever */
.hero-logo {
  animation: fadeInDown 0.8s ease both, logoFloat 3.5s ease-in-out 0.8s infinite;
  cursor: pointer;
  transform-origin: center bottom;
}

/* Click the hero logo for a big jump */
.hero-logo.jumping {
  animation: logoJump 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) both !important;
}

/* Nav logo: jumps on hover */
.nav-logo img {
  transition: transform 0.1s ease;
  transform-origin: center bottom;
  cursor: pointer;
}
.nav-logo img.jumping {
  animation: navLogoJump 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner, .about-story-inner { grid-template-columns: 1fr; gap: 35px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,10,20,0.98);
    flex-direction: column; align-items: stretch;
    padding: 16px; gap: 4px;
    transform: translateX(-100%); transition: var(--transition);
    max-height: calc(100vh - 72px); overflow-y: auto;
    border-top: 1px solid #222;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { padding: 13px 18px; font-size: 0.9rem; text-align: left; border-radius: 8px; }
  .nav-book-btn { margin-left: 0 !important; text-align: center !important; margin-top: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-card { padding: 30px 22px; }
  .form-card { padding: 28px 20px; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 120px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .floating-buttons { bottom: 18px; right: 12px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item h3 { font-size: 2rem; }
}
