/* ─── VARIABLES ─── */
:root {
  --navy: #1a3a5c;
  --blue: #2563a8;
  --gold: #d97706;
  --gold-light: #f59e0b;
  --gray-dark: #2d2d2d;
  --gray-mid: #555;
  --gray-light: #f5f5f3;
  --white: #ffffff;
  --border: #e0e0dc;
  --text: #333;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

/* ─── HEADER ─── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 28px; height: 28px; }
.logo-text h1 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); line-height: 1; }
.logo-text h1 span { color: var(--blue); }
.logo-text p { font-size: 10px; letter-spacing: 2px; color: var(--gray-mid); text-transform: uppercase; margin-top: 2px; }

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { background: var(--gray-light); color: var(--navy); }
nav a.cta { background: var(--gold); color: var(--white); font-weight: 600; }
nav a.cta:hover { background: var(--gold-light); }

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

#mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
  gap: 0;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
#mobile-nav a:last-child { border-bottom: none; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #f7f7f5 0%, #eef2f7 100%);
  border-bottom: 3px solid var(--gold);
  padding: 80px 24px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero h2 em { font-style: normal; color: var(--blue); }
.hero p { font-size: 18px; color: var(--gray-mid); margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.hero-visual {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(26,58,92,0.10);
  overflow: hidden;
  position: relative;
}
.hero-img-wrap { width: 100%; height: 380px; position: relative; overflow: hidden; }
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-img-badge-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-badge-icon svg { width: 22px; height: 22px; color: white; }
.hero-img-badge-text strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.hero-img-badge-text span { font-size: 12px; color: var(--gray-mid); }

.trust-strip {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-mid); }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ─── SECTIONS ─── */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.section-sub { font-size: 17px; color: var(--gray-mid); max-width: 580px; line-height: 1.7; }

/* ─── SERVICES ─── */
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  background: var(--white);
}
.service-card:hover { box-shadow: 0 8px 32px rgba(26,58,92,0.10); transform: translateY(-3px); }
.service-img {
  width: 100%; height: 180px;
  overflow: hidden; background: #dde4ee;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body { padding: 24px; }
.service-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.service-body p { font-size: 15px; color: var(--gray-mid); line-height: 1.65; margin-bottom: 16px; }
.service-body a { font-size: 14px; color: var(--blue); text-decoration: none; font-weight: 600; }
.service-body a:hover { text-decoration: underline; }

/* ─── WHY US ─── */
.bg-light { background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features { display: grid; gap: 24px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-num {
  min-width: 40px; height: 40px;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 15px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.why-feature h4 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-feature p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }
.why-visual {
  background: var(--navy); border-radius: 12px;
  padding: 44px 36px; color: var(--white);
}
.why-visual h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 24px; color: var(--white); }
.stat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--gold-light); line-height: 1; }
.stat-item .lbl { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ─── PRICING ─── */
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  border: 2px solid var(--border); border-radius: 12px;
  padding: 36px 28px; text-align: center;
  transition: box-shadow 0.25s; position: relative;
  background: var(--white);
}
.pricing-card.featured { border-color: var(--navy); box-shadow: 0 8px 40px rgba(26,58,92,0.12); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
}
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--gray-mid); margin-bottom: 24px; }
.pricing-price { margin-bottom: 28px; }
.pricing-price .amount { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--navy); line-height: 1; }
.pricing-price .from, .pricing-price .unit { font-size: 14px; color: var(--gray-mid); }
.pricing-features { list-style: none; margin-bottom: 32px; text-align: left; }
.pricing-features li {
  font-size: 15px; padding: 8px 0;
  border-bottom: 1px solid var(--border); color: var(--gray-mid);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { min-width: 18px; color: var(--gold); }
.btn-book {
  display: block; background: var(--navy); color: var(--white);
  padding: 14px 24px; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: opacity 0.2s; text-align: center;
}
.pricing-card.featured .btn-book { background: var(--gold); }
.btn-book:hover { opacity: 0.88; }
.pricing-note { text-align: center; margin-top: 32px; font-size: 14px; color: var(--gray-mid); }
.pricing-note a { color: var(--blue); }

/* ─── BLOG ─── */
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.blog-header a { color: var(--blue); font-weight: 600; text-decoration: none; font-size: 14px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: 10px;
  overflow: hidden; border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(26,58,92,0.10); }
.blog-img { height: 180px; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.blog-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.65; margin-bottom: 16px; }
.blog-card a { font-size: 13px; color: var(--blue); font-weight: 600; text-decoration: none; }

/* ─── TESTIMONIALS ─── */
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { border: 1px solid var(--border); border-radius: 10px; padding: 28px 26px; background: var(--white); }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { font-size: 15px; color: var(--gray-mid); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; background: var(--gray-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy); font-size: 16px; flex-shrink: 0;
}
.testi-author-info strong { display: block; font-size: 14px; color: var(--navy); }
.testi-author-info span { font-size: 12px; color: var(--gray-mid); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--navy); margin-bottom: 16px; }
.contact-info p.intro { color: var(--gray-mid); font-size: 16px; margin-bottom: 32px; }
.contact-details { display: grid; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--white); }
.contact-item-body strong { display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 2px; }
.contact-item-body a, .contact-item-body span { font-size: 16px; color: var(--gray-mid); text-decoration: none; }
.contact-item-body a:hover { color: var(--blue); }
.contact-form-box { background: var(--white); border-radius: 12px; padding: 36px; border: 1px solid var(--border); }
.contact-form-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 6px;
  padding: 12px 14px; font-family: 'Source Sans 3', sans-serif;
  font-size: 15px; color: var(--text); background: var(--white);
  transition: border-color 0.2s; outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,168,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; padding: 16px; border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--blue); }
.form-success {
  display: none; background: #ecfdf5; border: 1px solid #6ee7b7;
  border-radius: 8px; padding: 16px 20px; margin-top: 16px;
  color: #065f46; font-weight: 500;
}

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--navy); color: var(--white);
  padding: 64px 24px; text-align: center;
  border-bottom: 4px solid var(--gold);
}
.page-header h2 { font-family: 'Playfair Display', serif; font-size: 40px; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 17px; }
.breadcrumb { max-width: 1200px; margin: 0 auto 0; padding: 0; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 14px; }

/* ─── POLICY PAGES ─── */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin: 36px 0 12px; }
.policy-content h3:first-child { margin-top: 0; }
.policy-content p { font-size: 16px; color: var(--gray-mid); line-height: 1.85; margin-bottom: 14px; }
.policy-content ul { padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li { font-size: 16px; color: var(--gray-mid); line-height: 1.8; margin-bottom: 6px; }
.policy-content a { color: var(--blue); }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 60px 24px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo-text h1 { color: white; font-size: 20px; }
.footer-brand .logo-text h1 span { color: var(--gold-light); }
.footer-brand .logo-text p { color: rgba(255,255,255,0.5); }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 16px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .services-grid, .pricing-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero h2 { font-size: 34px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-list { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 28px; }
  .page-header h2 { font-size: 30px; }
  .hero h2 { font-size: 28px; }
  .hero-img-wrap { height: 260px; }
}
