@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700;800&display=swap');

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

:root {
  --navy: #0c1b33;
  --navy-light: #14284a;
  --blue: #1a5fb4;
  --blue-bright: #3584e4;
  --gold: #d4a843;
  --gold-light: #f0d68a;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-100: #f4f3f1;
  --gray-200: #e8e6e1;
  --gray-400: #9a9689;
  --gray-600: #5c584e;
  --gray-800: #2d2a24;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(12,27,51,0.08);
  --shadow-md: 0 4px 16px rgba(12,27,51,0.10);
  --shadow-lg: 0 8px 32px rgba(12,27,51,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
}
header.scrolled { box-shadow: var(--shadow-lg); }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--gold); }

.header-info {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-200);
}
.header-info a { color: var(--gold-light); text-decoration: none; }
.header-info a:hover { color: var(--gold); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

nav {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.06);
}
nav ul {
  display: flex;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}
nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  color: var(--gray-200);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ─── HERO BANNER (homepage image) ─── */
.hero-banner {
  margin-top: 110px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 2rem;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.hero-text h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-text p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--gray-200);
  font-size: 1rem;
  line-height: 1.7;
}
.hero-text .hero-badges { margin-top: 0; }

/* ─── HERO (gradient, inner pages) ─── */
/* ─── HERO ─── */
.hero {
  margin-top: 110px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  color: var(--gray-200);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* Page hero (smaller) */
.hero-page { padding: 3.5rem 1.5rem 3rem; }
.hero-page h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold-light);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* Breadcrumbs */
.breadcrumbs {
  margin-top: 110px;
  background: var(--gray-100);
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
  color: var(--gray-400);
}
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 0.4rem; }
.breadcrumbs + .hero-page { margin-top: 0; }

/* ─── SECTIONS ─── */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-wide { max-width: 1100px; }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.25;
}
h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--navy-light);
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}
p + p { margin-top: 1rem; }

.section-intro {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 720px;
}

.highlight-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}
.highlight-box strong { color: var(--navy); }

.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 3rem 0;
}
.cta-box h3 { color: var(--gold-light); margin-top: 0; }
.cta-box p { color: var(--gray-200); margin-bottom: 1.5rem; }
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.service-card .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-card h3 { margin-top: 0; font-size: 1.1rem; }
.service-card p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; }

/* ─── FAQ ─── */
.faq { margin: 3rem 0; }
.faq > h3 { margin-bottom: 1.5rem; font-size: 1.3rem; color: var(--navy); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--blue-bright); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 400;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-question::after { content: '−'; color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}
.faq-answer p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.7; }

/* ─── DOCS ─── */
.docs-needed {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.docs-needed h3 { margin-top: 0; }
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.92rem;
  color: var(--gray-800);
}
.doc-item::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── POINTCODE ─── */
.pointcode-highlight {
  background: linear-gradient(135deg, #0d6e3f 0%, #148a50 100%);
  color: white;
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}
.pointcode-highlight h3 { color: #a8e6c3; margin-top: 0; }
.pointcode-highlight p { color: rgba(255,255,255,0.9); }

/* ─── PHOTO SPECS ─── */
.photo-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.spec-card .spec-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.spec-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
.spec-card p { color: var(--gray-600); font-size: 0.88rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: var(--gray-200);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 2rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
footer h4 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
footer p, footer a { font-size: 0.88rem; color: var(--gray-200); line-height: 1.8; }
footer a { text-decoration: none; }
footer a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ─── MOBILE CALL BUTTON (floating) ─── */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,168,67,0.45);
  transition: var(--transition);
  animation: pulse-ring 2s ease-out infinite;
}
.mobile-call-btn:hover { transform: scale(1.08); }

@keyframes pulse-ring {
  0% { box-shadow: 0 4px 20px rgba(212,168,67,0.45), 0 0 0 0 rgba(212,168,67,0.3); }
  70% { box-shadow: 0 4px 20px rgba(212,168,67,0.45), 0 0 0 12px rgba(212,168,67,0); }
  100% { box-shadow: 0 4px 20px rgba(212,168,67,0.45), 0 0 0 0 rgba(212,168,67,0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .header-info .header-hours, .header-info .header-loc { display: none; }
  .header-info { gap: 0; }
  .hamburger { display: block; }
  nav ul { flex-direction: column; display: none; padding: 0; }
  nav.open ul { display: flex; }
  nav a { padding: 0.8rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .hero-banner { margin-top: 70px; }
  .hero-text { padding: 1.5rem 1.25rem; }
  .hero-text h1 { font-size: 1.4rem; }
  .hero { margin-top: 70px; padding: 3rem 1.5rem; }
  .breadcrumbs { margin-top: 70px; }
  .hero h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pointcode-highlight { padding: 2rem 1.5rem; }
  .mobile-call-btn { display: flex; }
  footer { padding-bottom: 5rem; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
