:root {
  --navy: #0d1f3c;
  --navy-mid: #1a3260;
  --navy-light: #243f75;
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --gold-pale: #f5e9c8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --text-light: #8a9ab8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-logo img {
  height: 44px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-text {
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}

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

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero image / before-after */
.hero-visual {
  animation: fadeUp 0.8s 0.2s ease both;
  position: relative;
}

.before-after-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,168,76,0.2);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
}

.ba-label.before {
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);
  display: none;
}

.ba-label.after {
  right: 20px;
  background: var(--gold);
  color: var(--navy);
}

.hero-img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 6;
}

/* ===== SECTION GLOBALS ===== */
section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 560px;
}

/* ===== SERVICES ===== */
#services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e8e3d8;
  border-radius: 10px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13,31,60,0.1);
  border-color: var(--gold);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== QUOTE MATCH ===== */
#quote-match {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#quote-match::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}

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

.qm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.qm-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.qm-text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.qm-offer-box {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 28px 32px;
}

.qm-offer-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.qm-offer-label {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.qm-offer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

.qm-right {
  position: relative;
}

.qm-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 40px;
}

.qm-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
}

.qm-requirements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.qm-requirements li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.qm-requirements li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.qm-disclaimer {
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
#why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.why-card {
  padding: 40px 32px;
  border: 1px solid #eae6dc;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s;
}

.why-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(13,31,60,0.15);
}

.why-card:hover .why-title { color: var(--white); }
.why-card:hover .why-text { color: rgba(255,255,255,0.6); }
.why-card:hover .why-num { color: rgba(255,255,255,0.08); }

.why-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--off-white);
  font-weight: 900;
  line-height: 1;
  transition: color 0.3s;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.why-text {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  transition: color 0.3s;
}

/* ===== PORTFOLIO ===== */
#portfolio {
  background: var(--off-white);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

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

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-caption {
  color: var(--white);
}

.portfolio-cap-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.portfolio-cap-tag {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-item.featured {
  grid-column: span 2;
  aspect-ratio: auto;
}

/* ===== PROCESS ===== */
#process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 0px);
  right: calc(10% + 0px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  box-shadow: 0 0 0 6px var(--white);
  transition: all 0.3s;
}

.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

.step-icon {
  font-size: 1.6rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== BOOKING ===== */
#booking {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.booking-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.booking-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 48px;
}

.booking-calendar {
  background: #ffffff;
  border: 3px solid rgba(201,168,76,0.4);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.booking-calendar iframe {
  display: block;
  border: none;
  width: 100%;
  min-height: 650px;
  background: #ffffff;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--off-white);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid #e8e3d8;
  border-radius: 12px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

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

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

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.form-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
footer {
  background: #080e1a;
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 20px;
  display: block;
}

.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold); }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-gold-text {
  color: var(--gold);
  font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .qm-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.featured { grid-column: span 2; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav { padding: 0 16px; height: 64px; }
  section { padding: 60px 16px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    padding: 32px 24px;
    gap: 24px;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-links.open .nav-cta {
    text-align: center;
    padding: 14px;
    font-size: 1rem;
  }
  .hamburger { display: flex; }
  .nav-logo img { height: 36px; }

  /* Hero */
  .hero-inner { 
    grid-template-columns: 1fr; 
    gap: 32px;
    padding: 0 16px;
  }
  .hero-visual { order: -1; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.98rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; width: 100%; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.6rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }

  /* Quote match */
  .qm-inner { grid-template-columns: 1fr; gap: 40px; }
  .qm-title { font-size: 2rem; }
  .qm-offer-num { font-size: 2.8rem; }
  .qm-card { padding: 28px 24px; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 24px; }
  .why-num { font-size: 2.5rem; top: 16px; right: 20px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-item.featured { grid-column: 1; aspect-ratio: 4/3; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .portfolio-overlay { opacity: 1; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  .process-step { 
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
    text-align: left;
    padding: 0;
  }
  .step-circle { 
    width: 52px; height: 52px; 
    flex-shrink: 0; 
    margin: 0;
    font-size: 1.2rem;
  }

  /* Booking */
  .booking-calendar iframe { min-height: 700px; }
  #booking { padding: 60px 12px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-title { font-size: 1.3rem; }

  /* Section text */
  .section-title { font-size: 1.8rem; }
  .qm-card-title { font-size: 1.1rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer { padding: 48px 16px 24px; }

  /* Buttons */
  .btn-primary, .btn-outline { 
    padding: 14px 24px; 
    font-size: 0.9rem;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 390px) {
  .hero-h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-item { display: flex; align-items: center; gap: 12px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { margin-top: 0; }
}
/* ===== ANIMATION ENHANCEMENTS ===== */

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes draw-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes badge-pop {
  0%   { opacity: 0; transform: scale(0.8) translateY(10px); }
  70%  { transform: scale(1.05) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes hero-img-reveal {
  from { opacity: 0; transform: scale(1.04) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* Nav animation on load */
nav {
  animation: nav-drop 0.5s ease both;
}

/* Hero text stagger */
.hero-badge {
  animation: badge-pop 0.6s 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hero-h1 {
  animation: fadeUp 0.7s 0.35s ease both;
}
.hero-sub {
  animation: fadeUp 0.7s 0.5s ease both;
}
.hero-btns {
  animation: fadeUp 0.7s 0.65s ease both;
}
.hero-stats {
  animation: fadeUp 0.7s 0.8s ease both;
}
.hero-visual {
  animation: hero-img-reveal 0.9s 0.4s ease both;
}

/* Gold text shimmer on hover */
.hero-h1 .gold-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Hero badge dot pulse */
.hero-badge::before {
  animation: pulse-gold 2s ease infinite;
}

/* CTA button shine effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 160%;
}

/* Nav CTA pulse */
.nav-cta {
  animation: pulse-gold 3s ease infinite;
}

/* Scroll reveal variants */
.reveal { 
  opacity: 0; 
  transform: translateY(24px); 
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), 
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.from-left.visible,
.reveal.from-right.visible { transform: translateX(0); }
.reveal.scale-in { transform: scale(0.94); }
.reveal.scale-in.visible { transform: scale(1); }

/* Service cards hover */
.service-card {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.02);
}
.service-icon {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .service-icon {
  transform: scale(1.2) rotate(-5deg);
}

/* Why cards */
.why-card {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px) scale(1.02);
}
.why-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
}
.why-card:hover .why-icon {
  transform: scale(1.15) rotate(8deg);
  background: rgba(201,168,76,0.2);
}

/* Process step circles */
.step-circle {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s, color 0.3s;
}
.process-step:hover .step-circle {
  transform: scale(1.15);
  animation: pulse-gold 1.5s ease infinite;
}

/* Portfolio image zoom */
.portfolio-item img {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.portfolio-item:hover img {
  transform: scale(1.07);
}
.portfolio-overlay {
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}

/* Before-after container */
.before-after-container {
  transition: box-shadow 0.3s ease;
}
.before-after-container:hover {
  box-shadow: 0 48px 96px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.4);
}

/* Quote match offer box */
.qm-offer-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qm-offer-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.15);
}

/* Footer links */
.footer-links a {
  position: relative;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  padding-left: 8px;
}

/* Contact items */
.contact-icon {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
}
.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gold);
}

/* Form inputs focus animation */
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: translateY(-1px);
}

/* Submit button */
.form-submit {
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.form-submit:hover::before { left: 160%; }
.form-submit:hover {
  box-shadow: 0 8px 24px rgba(13,31,60,0.3);
}

/* Stat number count animation */
.stat-number {
  transition: color 0.3s;
}
.stat-item:hover .stat-number {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
}

/* Section label animated underline */
.section-label {
  position: relative;
  display: inline-block;
}

/* Logo float */
.nav-logo img {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
.nav-logo:hover img {
  transform: scale(1.08);
}

/* Booking calendar section */
.booking-calendar {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.booking-calendar:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 3px rgba(201,168,76,0.5);
}

/* Smooth page-load body fade */
body {
  animation: fadeIn 0.4s ease both;
}

/* Active nav link indicator */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links .nav-cta::after { display: none; }

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

/* ===== HERO GALLERY — CINEMATIC ===== */
.hero-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(201,168,76,0.3),
    0 24px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(201,168,76,0.06);
  background: #080e1a;
}

.gallery-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Ken Burns zoom on active slide */
.gallery-slide.active img {
  animation: kenburns 6s ease-out both;
}

@keyframes kenburns {
  from { transform: scale(1.08) translateZ(0); }
  to   { transform: scale(1.0) translateZ(0); }
}

/* Crossfade transition */
.gallery-slide {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

/* Gradient overlay for text legibility */
.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(13,31,60,0.5) 0%, transparent 50%),
    linear-gradient(to top, rgba(13,31,60,0.8) 0%, transparent 45%);
  z-index: 1;
}

/* Caption */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 24px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.gallery-slide.active .gallery-caption {
  animation: captionUp 0.6s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

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

.gcap-tag {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.gcap-title {
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Progress bar */
.gallery-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 4;
}

.gallery-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0s linear;
}

.gallery-progress-bar.running {
  width: 100%;
  transition: width 4.5s linear;
}

/* Slide counter */
.gallery-counter {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 4;
  background: rgba(13,31,60,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
}

.gallery-counter .current { color: var(--gold); }

/* Nav buttons — floating pill style */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,31,60,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: 
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
}

.gallery-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.25);
  transform: translateY(-50%) scale(1.1);
}

.gallery-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

/* Dot indicators */
.gallery-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 4;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gallery-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
  transform: none;
}

/* ===== SHARP IMAGES GLOBALLY — FIX MOBILE BLUR ===== */
img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: auto;
}

/* Portfolio: ensure crisp rendering, no over-scaling */
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

.portfolio-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
}

/* ===== MOBILE GALLERY ===== */
@media (max-width: 768px) {
  .hero-gallery {
    aspect-ratio: 4/3;
    border-radius: 10px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }

  .gcap-title { font-size: 0.82rem; }

  /* Portfolio mobile: single column, full width, sharp */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portfolio-item {
    aspect-ratio: 16/10;
    border-radius: 8px;
  }

  /* Prevent any transform blur on mobile */
  .portfolio-item:hover img {
    transform: none;
  }

  /* Hero section padding on mobile */
  #hero {
    padding: 76px 0 48px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  /* Text tightening */
  .hero-h1 { font-size: 2.2rem; line-height: 1.1; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }

  /* Buttons full width on mobile */
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns a { 
    text-align: center; 
    width: 100%; 
    padding: 16px;
    font-size: 1rem;
  }

  /* Stats row */
  .hero-stats {
    gap: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    padding-top: 28px;
  }
  .stat-item { text-align: center; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.68rem; }

  /* Why cards */
  .why-card { padding: 24px 20px; }
  .why-num { font-size: 2rem; }

  /* Section padding */
  section { padding: 56px 16px; }

  /* QM card */
  .qm-card { padding: 24px 20px; }

  /* Contact form */
  .contact-form { padding: 24px 18px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevent iOS zoom on focus */
  }

  /* Nav logo size */
  .nav-logo img { height: 40px; }

  /* Booking */
  .booking-calendar iframe { min-height: 680px; }
}

@media (max-width: 390px) {
  .hero-h1 { font-size: 1.9rem; }
  .gallery-btn { width: 36px; height: 36px; font-size: 1.2rem; }
}

/* ===== GLOBAL ANIMATION ENHANCEMENTS V2 ===== */

/* Magnetic button effect base */
.btn-primary, .btn-outline, .nav-cta {
  transition: 
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s ease;
}

/* Staggered service card entrance */
.services-grid .service-card:nth-child(1) { transition-delay: 0ms; }
.services-grid .service-card:nth-child(2) { transition-delay: 60ms; }
.services-grid .service-card:nth-child(3) { transition-delay: 120ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 180ms; }
.services-grid .service-card:nth-child(5) { transition-delay: 240ms; }
.services-grid .service-card:nth-child(6) { transition-delay: 300ms; }

/* Why card stagger */
.why-grid .why-card:nth-child(1) { transition-delay: 0ms; }
.why-grid .why-card:nth-child(2) { transition-delay: 80ms; }
.why-grid .why-card:nth-child(3) { transition-delay: 160ms; }
.why-grid .why-card:nth-child(4) { transition-delay: 240ms; }
.why-grid .why-card:nth-child(5) { transition-delay: 320ms; }
.why-grid .why-card:nth-child(6) { transition-delay: 400ms; }

/* Portfolio stagger */
.portfolio-grid .portfolio-item:nth-child(1) { transition-delay: 0ms; }
.portfolio-grid .portfolio-item:nth-child(2) { transition-delay: 80ms; }
.portfolio-grid .portfolio-item:nth-child(3) { transition-delay: 160ms; }
.portfolio-grid .portfolio-item:nth-child(4) { transition-delay: 240ms; }
.portfolio-grid .portfolio-item:nth-child(5) { transition-delay: 320ms; }
.portfolio-grid .portfolio-item:nth-child(6) { transition-delay: 400ms; }

/* Portfolio item hover */
.portfolio-item {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.portfolio-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  z-index: 2;
}

/* Section title underline draw animation */
.section-title {
  position: relative;
  display: inline-block;
}

/* QM offer box number pop */
.qm-offer-num {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.3s;
}
.qm-offer-box:hover .qm-offer-num {
  transform: scale(1.08) translateY(-2px);
  color: var(--gold-light);
}

/* Why card icon bounce */
.why-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, box-shadow 0.3s;
}
.why-card:hover .why-icon {
  transform: scale(1.2) rotate(8deg);
  background: rgba(201,168,76,0.2);
  box-shadow: 0 4px 16px rgba(201,168,76,0.2);
}

/* Process step hover lift */
.process-step {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.process-step:hover {
  transform: translateY(-4px);
}

/* Nav hover pill */
.nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links .nav-cta::after { display: none; }

/* Hero stats bounce in on view */
.stat-item {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.stat-item:hover { transform: translateY(-3px); }

/* Gold shimmer on section labels */
@keyframes shimmer-label {
  0%   { background-position: -100% center; }
  100% { background-position: 200% center; }
}
.section-label {
  background: linear-gradient(90deg, var(--gold) 40%, var(--gold-light) 55%, var(--gold) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-label 3s linear infinite;
}

/* Contact icon spin on hover */
.contact-icon {
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
}
.contact-item:hover .contact-icon {
  transform: rotate(-10deg) scale(1.12);
  background: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
}

/* Footer link chevron */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  transition: gap 0.2s ease, color 0.2s;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  font-size: 1rem;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 0;
  gap: 4px;
}

/* Booking section shimmer border */
@keyframes border-shimmer {
  0%   { box-shadow: 0 0 0 2px rgba(201,168,76,0.2), 0 24px 64px rgba(0,0,0,0.4); }
  50%  { box-shadow: 0 0 0 2px rgba(201,168,76,0.5), 0 24px 64px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.1); }
  100% { box-shadow: 0 0 0 2px rgba(201,168,76,0.2), 0 24px 64px rgba(0,0,0,0.4); }
}
.booking-calendar {
  animation: border-shimmer 3s ease infinite;
}

/* Hero badge shine */
@keyframes badge-shine {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%  { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* Form submit ripple */
.form-submit {
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.form-submit:hover::after { opacity: 1; }

/* Scroll-to-top button */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  -webkit-tap-highlight-color: transparent;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}

/* Page load stagger for nav items */
.nav-links li {
  animation: fadeUp 0.5s ease both;
}
.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.15s; }
.nav-links li:nth-child(3) { animation-delay: 0.2s; }
.nav-links li:nth-child(4) { animation-delay: 0.25s; }
.nav-links li:nth-child(5) { animation-delay: 0.3s; }
.nav-links li:nth-child(6) { animation-delay: 0.35s; }
