@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@400;500&display=swap');

:root {
  --ink: #1a1714;
  --cream: #f5f0e8;
  --gold: #b87d2e;
  --gold-light: #e8c97a;
  --gold-muted: #d4aa5a;
  --border: rgba(184,125,46,0.2);
  --muted: #6b6560;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.wrap {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  padding-bottom: 3rem;
}

/* NAV */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem;
  border-bottom: 0.5px solid var(--border);
  background: var(--cream);
  position: sticky; top: 0; z-index: 10;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184,125,46,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 0.5px solid var(--gold-muted);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px); font-weight: 700; line-height: 1.12;
  color: var(--ink); max-width: 640px; margin: 0 auto 1.2rem;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 16px; color: var(--muted); max-width: 440px;
  margin: 0 auto 2.2rem; line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  background: var(--ink); color: var(--cream);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

/* STATS ROW */
.stats {
  display: flex; justify-content: center; gap: 3rem;
  padding: 2rem 2rem;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--ink);
}
.stat-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  padding: 3.5rem 2rem 2rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--ink);
  margin-bottom: 0.5rem;
}
.section-header p { font-size: 14px; color: var(--muted); }

.divider {
  width: 40px; height: 2px; background: var(--gold);
  margin: 0.8rem auto 0;
}

/* TEMPLATE GRID */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem 2rem;
  max-width: 1100px; margin: 0 auto;
}

.card {
  background: #fff;
  border: 0.5px solid rgba(26,23,20,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,23,20,0.1); }

.card-badge {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  padding: 4px 10px; border-radius: 100px;
  z-index: 2;
}

.card-img-wrap {
  width: 100%; height: 200px;
  overflow: hidden; position: relative;
  background: #e8e0d4;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.card:hover .card-img-wrap img {
  transform: scale(1.04);
}
.card-img-wrap .card-badge {
  position: absolute; top: 12px; left: 12px;
}

.card-body { padding: 1.1rem 1.25rem 1.25rem; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--ink);
  margin-bottom: 6px; line-height: 1.3;
}
.card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 1rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--gold);
}
.card-actions { display: flex; gap: 8px; }
.btn-ghost {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  border: 0.5px solid rgba(26,23,20,0.25); color: var(--muted);
  padding: 8px 14px; border-radius: 4px; text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-buy {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  padding: 8px 16px; border-radius: 4px; text-decoration: none;
  transition: background 0.15s;
}
.btn-buy:hover { background: var(--gold); }

/* PRICING */
.pricing-section { padding: 1rem 2rem 2.5rem; max-width: 700px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.price-card {
  background: #fff;
  border: 0.5px solid rgba(26,23,20,0.1);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  position: relative;
}
.price-card.featured { border: 1.5px solid var(--gold); }
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: #fff;
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.price-tier {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 700; color: var(--ink);
  margin-bottom: 6px;
}
.price-amount small { font-size: 18px; }
.price-desc { font-size: 13px; color: var(--muted); }

/* CONTACT */
.contact-section {
  margin: 0 2rem 2rem;
  max-width: 1060px;
  background: var(--ink); color: var(--cream);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; margin-bottom: 0.5rem;
}
.contact-left p { font-size: 14px; opacity: 0.65; }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.contact-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(14, 14, 14, 0.08);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}

/* FOOTER */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--ink);
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   BLOG LISTING PAGE
═══════════════════════════════════════ */

.blog-hero {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 70px 20px 60px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184,125,46,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero .hero-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
  border: 0.5px solid rgba(232,201,122,0.4);
  padding: 5px 16px; border-radius: 100px;
  margin-bottom: 18px;
}
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1.12;
  margin-bottom: 12px;
}
.blog-hero h1 em { color: var(--gold-light); font-style: normal; }
.blog-hero p {
  font-size: 15px; opacity: 0.6; max-width: 420px; margin: 0 auto; line-height: 1.7;
}

.blog-grid-wrap {
  max-width: 1140px; margin: 0 auto;
  padding: 20px 40px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  border: 0.5px solid rgba(26,23,20,0.08);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(26,23,20,0.11);
}
.blog-card-img {
  width: 100%; height: 210px; overflow: hidden;
  background: var(--cream);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
  padding: 22px 24px 26px;
  flex: 1; display: flex; flex-direction: column;
}
.blog-category {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,125,46,0.1);
  border: 0.5px solid rgba(184,125,46,0.25);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 12px;
}
.blog-card-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--ink);
  line-height: 1.35; margin-bottom: 10px;
}
.blog-card-body p {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; margin-bottom: 20px; flex: 1;
}
.blog-meta {
  font-size: 12px; color: var(--muted);
  margin-bottom: 16px; display: flex; gap: 14px; align-items: center;
}
.blog-meta span::before { content: ''; }
.read-more {
  display: inline-block;
  padding: 10px 20px;
  background: var(--ink); color: var(--cream);
  border-radius: 5px; font-size: 13px; letter-spacing: 0.05em;
  transition: background 0.2s;
  align-self: flex-start;
}
.read-more:hover { background: var(--gold); }

/* ═══════════════════════════════════════
   BLOG POST PAGE
═══════════════════════════════════════ */

.post-wrap {
  max-width: 780px;
  margin: 50px auto 80px;
  padding: 0 24px;
}

.post-header { margin-bottom: 32px; }
.post-header .blog-category { margin-bottom: 16px; }
.post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.18;
  color: var(--ink); margin-bottom: 16px;
}
.post-meta {
  font-size: 13px; color: var(--muted);
  display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 28px;
}
.post-cover {
  width: 100%; border-radius: 12px; overflow: hidden;
  margin-bottom: 36px;
}
.post-cover img {
  width: 100%; max-height: 420px;
  object-fit: cover; display: block;
}

/* POST BODY CONTENT */
.post-body { font-size: 16px; color: #2e2b27; line-height: 1.9; }
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--ink);
  margin: 40px 0 14px;
}
.post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--ink);
  margin: 28px 0 10px;
}
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol {
  padding-left: 24px; margin-bottom: 18px;
}
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body a { color: var(--gold); border-bottom: 1px solid var(--border); }
.post-body a:hover { color: var(--ink); }

/* Inline image inside post */
.post-body .post-img {
  margin: 28px 0; border-radius: 10px; overflow: hidden;
}
.post-body .post-img img {
  width: 100%; display: block; border-radius: 10px;
}
.post-body .post-img figcaption {
  font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px;
}

/* Video embed inside post */
.post-body .post-video {
  margin: 28px 0;
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 10px;
}
.post-body .post-video iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none; border-radius: 10px;
}

/* Blockquote */
.post-body blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(184,125,46,0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--muted);
}

/* Divider in post */
.post-divider {
  width: 50px; height: 2px; background: var(--gold);
  margin: 40px 0;
}

/* Back link */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); letter-spacing: 0.05em;
  margin-bottom: 32px; text-transform: uppercase;
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }
.back-link::before { content: '←'; }

/* Share strip */
.post-share {
  margin-top: 50px; padding-top: 28px;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.post-share span {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.share-btn {
  display: inline-block; padding: 8px 16px;
  border: 0.5px solid rgba(26,23,20,0.2); border-radius: 100px;
  font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* More posts strip */
.more-posts {
  margin-top: 60px; padding-top: 36px;
  border-top: 0.5px solid var(--border);
}
.more-posts h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 20px;
}
.more-posts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.mini-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  border: 0.5px solid rgba(26,23,20,0.08);
  transition: transform 0.2s;
}
.mini-card:hover { transform: translateY(-3px); }
.mini-card img { width: 100%; height: 130px; object-fit: cover; display: block; }
.mini-card-body { padding: 14px 16px; }
.mini-card-body .blog-category { font-size: 9px; margin-bottom: 8px; }
.mini-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3;
}

.urgency-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; max-width: 900px; margin: 0 auto;
  position: relative;
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: urgPulse 1.5s ease-out infinite;
}
@keyframes urgPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.urgency-inner p {
  font-size: 13px; color: rgba(245,240,232,0.85);
  text-align: center; line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}
.urgency-inner strong { color: var(--gold-light); }
.urgency-close {
  position: absolute; right: 0;
  background: none; border: none; cursor: pointer;
  color: rgba(245,240,232,0.4); font-size: 14px;
  padding: 4px 8px; line-height: 1;
  transition: color 0.2s;
}
.urgency-close:hover { color: var(--gold-light); }
 
/* ── HOW IT WORKS ───────────────────────────────── */
.how-it-works { padding: 0 2rem 2rem; }
 
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
 
.step-card {
  background: var(--white, #fff);
  border: 0.5px solid rgba(26,23,20,0.09);
  border-radius: 14px;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  margin: 0 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,23,20,0.1);
}
 
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: rgba(184,125,46,0.12);
  line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.step-icon { font-size: 36px; margin-bottom: 14px; }
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700; color: var(--ink);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px; color: var(--muted); line-height: 1.65;
}
 
.step-arrow {
  position: absolute;
  right: -22px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; color: var(--gold);
  font-weight: 700; z-index: 2;
}
.step-card.last .step-arrow { display: none; }
 
/* Gold bottom border on hover */
.step-card::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 0 0 14px 14px;
  transition: width 0.3s;
}
.step-card:hover::after { width: 60%; }
 
@media (max-width: 768px) {
  .step-arrow { display: none; }
  .steps-grid { gap: 16px; }
  .step-card { margin: 0; }
}
 
/* ── COMPARISON TABLE ───────────────────────────── */
.comparison { padding: 0 2rem 3rem; }
 
.comparison-wrap {
  max-width: 900px; margin: 0 auto;
  overflow-x: auto;
}
 
.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,23,20,0.09);
  background: #fff;
  margin-bottom: 24px;
}
 
.comp-table thead tr {
  background: var(--ink);
}
.comp-table th {
  padding: 16px 20px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  text-align: center; font-weight: 500;
}
.comp-table th.comp-feature { text-align: left; color: rgba(245,240,232,0.4); }
.comp-table th.comp-arattae { color: var(--gold-light); }
 
.comp-badge {
  background: rgba(184,125,46,0.2);
  border: 1px solid rgba(232,201,122,0.35);
  padding: 4px 12px; border-radius: 100px;
  font-size: 13px; color: var(--gold-light);
  letter-spacing: 0.06em;
}
 
.comp-table tbody tr {
  border-bottom: 0.5px solid rgba(26,23,20,0.06);
  transition: background 0.15s;
}
.comp-table tbody tr:hover { background: rgba(245,240,232,0.5); }
.comp-table tbody tr:last-child { border-bottom: none; }
 
.comp-table td {
  padding: 14px 20px;
  font-size: 14px; color: var(--muted);
  text-align: center; vertical-align: middle;
}
.comp-table td.comp-feature {
  text-align: left; color: var(--ink);
  font-weight: 500;
}
.comp-table td.comp-arattae {
  background: rgba(184,125,46,0.05);
  color: var(--ink);
  border-left: 2px solid rgba(184,125,46,0.2);
  border-right: 2px solid rgba(184,125,46,0.2);
}
.comp-table td.comp-arattae strong { color: var(--gold); }
 
/* Gold column header + footer border */
.comp-table thead th.comp-arattae {
  border-left: 2px solid rgba(232,201,122,0.3);
  border-right: 2px solid rgba(232,201,122,0.3);
}
.comp-table tbody tr:last-child td.comp-arattae {
  border-bottom: 2px solid rgba(184,125,46,0.2);
  border-radius: 0 0 0 0;
}
 
.comp-cta {
  text-align: center; padding: 24px;
  background: #fff;
  border: 0.5px solid rgba(26,23,20,0.09);
  border-radius: 12px;
}
.comp-cta p {
  font-size: 15px; color: var(--muted);
  margin-bottom: 16px; line-height: 1.6;
}
.comp-cta strong { color: var(--ink); }
 
@media (max-width: 600px) {
  .comp-table th, .comp-table td { padding: 12px 10px; font-size: 12px; }
  .comp-table th.comp-feature, .comp-table td.comp-feature { font-size: 12px; }
}

/* CONTACT PAGE */

.contact-page{
max-width:1200px;
margin:auto;
padding:80px 20px;
}

.contact-page h1{
text-align:center;
font-size:48px;
margin-bottom:15px;
}

.contact-subtitle{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:50px;
color:#666;
}

.contact-container{
display:grid;
grid-template-columns:1fr 2fr;
gap:40px;
}

.contact-info{
background:#f8fafc;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-info h2,
.contact-info h3{
margin-bottom:15px;
}

.contact-info p{
margin-bottom:10px;
}

.contact-form{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
padding:15px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;
}

.contact-form button{
padding:15px;
background:#111827;
color:white;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;
font-weight:600;
}

.contact-form button:hover{
opacity:.9;
}

.footer{
text-align:center;
padding:30px;
margin-top:50px;
border-top:1px solid #eee;
}

@media(max-width:768px){

.contact-container{
grid-template-columns:1fr;
}

.contact-page h1{
font-size:36px;
}

}

/* ==========================
   CONTACT PAGE FINAL DESIGN
========================== */

.contact-page{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.contact-page h1{
    text-align:center;
    font-size:48px;
    margin-bottom:15px;
    color:#111;
}

.contact-subtitle{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
    color:#666;
}

.contact-container{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
}

.contact-info-box{
    background:#111827;
    color:#fff;
    padding:35px;
    border-radius:20px;
}

.contact-info-box h2{
    margin-bottom:20px;
    font-size:28px;
}

.contact-info-item{
    margin-bottom:20px;
}

.contact-info-item strong{
    display:block;
    margin-bottom:5px;
    color:#fbbf24;
}

.contact-info-item a{
    color:white;
    text-decoration:none;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.contact-form button{
    background:#111827;
    color:white;
    border:none;
    padding:16px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.contact-form button:hover{
    background:#000;
}

@media(max-width:768px){

.contact-container{
    grid-template-columns:1fr;
}

.contact-page h1{
    font-size:36px;
}

}

/* FAQ SECTION */

.faq-section{
max-width:900px;
margin:80px auto;
padding:0 20px;
}

.faq-wrapper{
margin-top:40px;
}

.faq{
background:#fff;
border:1px solid rgba(0,0,0,.08);
border-radius:12px;
margin-bottom:15px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.faq-question{
width:100%;
background:white;
border:none;
padding:20px;
font-size:18px;
font-weight:600;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
text-align:left;
}

.faq-question span{
font-size:24px;
transition:0.3s;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.4s ease;
}

.faq-answer p{
padding:20px;
line-height:1.8;
color:#666;
}

.faq.active .faq-answer{
max-height:300px;
}

.faq.active .faq-question span{
transform:rotate(45deg);
}

/* MOBILE MENU */

.menu-btn{
display:none;
font-size:30px;
cursor:pointer;
color:#1a1714;
}

@media(max-width:768px){

.nav{
position:relative;
padding:15px 20px;
}

.menu-btn{
display:block;
}

.nav-links{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:#f5f0e8;
flex-direction:column;
padding:20px 0;
border-top:1px solid rgba(0,0,0,.1);
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.nav-links.active{
display:flex;
}

.nav-links li{
text-align:center;
padding:10px 0;
}

}

/* PROFESSIONAL FOOTER */

.footer{
background:#111827;
color:white;
margin-top:80px;
padding:0;
}

.footer-top{
max-width:1200px;
margin:auto;
padding:60px 30px;
display:flex;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.footer-brand{
flex:1;
min-width:280px;
}

.footer-brand h2{
font-size:36px;
margin-bottom:15px;
font-family:'Playfair Display',serif;
}

.footer-brand p{
color:#cbd5e1;
line-height:1.8;
max-width:400px;
}

.footer-links-wrap{
display:flex;
gap:60px;
flex-wrap:wrap;
}

.footer-column{
display:flex;
flex-direction:column;
gap:12px;
min-width:180px;
}

.footer-column h3{
margin-bottom:10px;
font-size:18px;
color:white;
}

.footer-column a{
color:#cbd5e1;
text-decoration:none;
transition:.3s;
}

.footer-column a:hover{
color:#d4aa5a;
padding-left:5px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.1);
padding:20px 30px;
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.footer-bottom p{
color:#94a3b8;
font-size:14px;
}

.social-links{
display:flex;
gap:15px;
}

.social-links a{
width:42px;
height:42px;
background:rgba(255,255,255,.08);
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
font-size:18px;
text-decoration:none;
transition:.3s;
}

.social-links a:hover{
background:#d4aa5a;
transform:translateY(-3px);
}

@media(max-width:768px){

.footer-top{
flex-direction:column;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-brand h2{
font-size:30px;
}

}