@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&display=swap');

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

:root {
  --blush: #f5e6e0;
  --dusty-rose: #c49090;
  --navy: #2d3d5a;
  --lavender: #c8c0d8;
  --cream: #fdf9f7;
  --warm-white: #faf5f0;
  --text: #2e2e3a;
  --muted: #8a8a9a;
  --gold: #c9a87c;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(253,249,247,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(45,61,90,0.08);
}
.nav-logo-link { display: flex; align-items: center; }
.nav-logo { height: 44px; object-fit: contain; max-width: 200px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); text-decoration: none; opacity: 0.7; transition: opacity 0.2s; cursor: pointer; font-weight: 400; }
.nav-links a:hover { opacity: 1; }
.nav-btn { background: var(--navy); color: white; border: none; padding: 10px 22px; border-radius: 50px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; font-weight: 500; }
.nav-btn:hover { background: var(--dusty-rose); }
.nav-hamburger { display: none; background: none; border: none; font-size: 22px; color: var(--navy); cursor: pointer; padding: 4px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--warm-white); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 18px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); text-decoration: none; font-weight: 400; }
.mobile-menu button { margin-top: 12px; background: var(--navy); color: white; border: none; padding: 14px 32px; border-radius: 50px; font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }

/* ── HERO ── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 120px 60px 80px 72px; position: relative; z-index: 2; background: var(--warm-white); }
.hero-star-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.55; pointer-events: none; }
.hero-cert-logo { width: min(520px, 92%); margin-bottom: 28px; position: relative; z-index: 2; }
.hero-p { font-size: 15px; line-height: 1.9; color: #5a5a6e; max-width: 420px; margin-bottom: 36px; font-weight: 300; position: relative; z-index: 2; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-pill { padding: 13px 28px; border-radius: 50px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; font-weight: 500; border: none; }
.btn-filled { background: var(--navy); color: white; }
.btn-filled:hover { background: var(--dusty-rose); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy) !important; }
.btn-outline:hover { background: var(--navy); color: white; }
.hero-right { position: relative; overflow: hidden; }
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center top; }
.hero-fade { position: absolute; inset: 0; background: linear-gradient(to right, var(--warm-white) 0%, transparent 18%); }
.hero-badge { position: absolute; bottom: 40px; right: 40px; width: 130px; height: 130px; z-index: 5; }
.hero-badge img { width: 100%; height: 100%; object-fit: contain; }
.hero-right-logo { background: var(--warm-white); display: flex; align-items: center; justify-content: center; }
.hero-right-logo .hero-star-bg { opacity: 0.6; }
.hero-logo-wrap { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 60px; }
.hero-circular-logo { width: min(420px, 80%); height: min(420px, 80%); object-fit: contain; animation: floatLogo 6s ease-in-out infinite; }
@keyframes floatLogo { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }

/* ── STATS ── */
.stats-strip { background: var(--navy); padding: 28px 72px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0; }
.stat { text-align: center; padding: 0 44px; }
.stat-n { font-family: 'Cormorant', serif; font-size: 44px; font-weight: 300; color: white; line-height: 1; }
.stat-l { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lavender); margin-top: 4px; }
.stat-div { width: 1px; height: 44px; background: rgba(200,192,216,0.2); }

/* ── ABOUT ── */
.about { background: var(--blush); padding: 100px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; overflow: hidden; }
.about-star-bg { position: absolute; inset: 0; background-size: cover; opacity: 0.2; pointer-events: none; }
.about-img-wrap { position: relative; z-index: 2; }
.about-circle { width: 100%; padding-bottom: 100%; border-radius: 50%; overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(200,150,150,0.2); background: linear-gradient(135deg, #f0ddd7 0%, #e8cfc8 100%); }
.about-circle img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-ring { position: absolute; inset: -14px; border-radius: 50%; border: 1.5px dashed var(--dusty-rose); opacity: 0.4; animation: spin 25s linear infinite; }
.about-badge { position: absolute; bottom: 4%; right: -4%; width: 96px; height: 96px; z-index: 5; }
.about-badge img { width: 100%; height: 100%; object-fit: contain; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-content { position: relative; z-index: 2; }

/* ── TYPOGRAPHY ── */
.eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dusty-rose); margin-bottom: 14px; font-weight: 500; display: block; }
.h2 { font-family: 'Cormorant', serif; font-weight: 300; font-style: italic; font-size: clamp(32px, 4vw, 52px); color: var(--navy); line-height: 1.15; margin-bottom: 22px; }
.h2-sm { font-size: 34px !important; margin-bottom: 28px !important; }
.body-t { font-size: 15px; line-height: 1.9; color: #5a5a6e; margin-bottom: 14px; font-weight: 300; }
.link-g { color: var(--gold); font-weight: 500; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; transition: color 0.2s; display: inline-block; margin-top: 8px; }
.link-g:hover { color: var(--navy); border-color: var(--navy); }

/* ── SERVICES ── */
.services { background: var(--cream); padding: 100px 72px; position: relative; overflow: hidden; }
.services-star-bg { position: absolute; inset: 0; background-size: cover; opacity: 0.3; pointer-events: none; }
.sec-hdr { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.scard { background: white; border-radius: 20px; padding: 36px 30px 30px; border: 1.5px solid transparent; box-shadow: 0 2px 20px rgba(45,61,90,0.04); transition: all 0.3s; position: relative; overflow: hidden; }
.scard.highlight { border-color: var(--dusty-rose); background: linear-gradient(160deg, #fff 60%, #fdf0ec 100%); }
.scard:hover { transform: translateY(-4px); border-color: rgba(196,144,144,0.4); box-shadow: 0 16px 48px rgba(200,150,150,0.15); }
.stag { display: inline-block; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dusty-rose); background: var(--blush); padding: 4px 10px; border-radius: 20px; margin-bottom: 14px; font-weight: 500; }
.scard.highlight .stag { background: var(--dusty-rose); color: white; }
.stitle { font-family: 'Cormorant', serif; font-weight: 400; font-size: 21px; color: var(--navy); margin-bottom: 6px; }
.sprice { font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.sdesc { font-size: 13.5px; line-height: 1.75; color: var(--muted); font-weight: 300; margin-bottom: 10px; }
.sdetail { font-size: 11.5px; line-height: 1.7; color: var(--dusty-rose); border-top: 1px solid var(--blush); padding-top: 10px; margin-top: 10px; }
.slink { display: inline-block; margin-top: 14px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dusty-rose); font-weight: 500; text-decoration: none; }
.slink:hover { color: var(--navy); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); padding: 100px 72px; position: relative; overflow: hidden; }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.tcard { background: rgba(255,255,255,0.06); border: 1px solid rgba(200,192,216,0.15); border-radius: 20px; padding: 36px 32px; transition: background 0.3s; }
.tcard:hover { background: rgba(255,255,255,0.1); }
.tmark { font-family: 'Cormorant', serif; font-size: 56px; color: var(--dusty-rose); line-height: 0.7; margin-bottom: 14px; display: block; }
.ttext { font-family: 'Cormorant', serif; font-style: italic; font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.88); margin-bottom: 20px; font-weight: 300; }
.tauthor { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lavender); font-weight: 500; }
.tsource { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 4px; letter-spacing: 0.06em; }
.trustpilot-link { display: inline-block; padding: 12px 28px; border-radius: 50px; border: 1.5px solid rgba(200,192,216,0.4); color: var(--lavender); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; font-weight: 500; }
.trustpilot-link:hover { border-color: white; color: white; }

/* ── CONTACT ── */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left { background: var(--blush); padding: 90px 70px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; min-height: 600px; }
.contact-star-bg { position: absolute; inset: 0; background-size: cover; opacity: 0.25; pointer-events: none; }
.contact-inner { position: relative; z-index: 2; }
.cdetails { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.citem { display: flex; gap: 14px; align-items: flex-start; }
.cico { width: 38px; height: 38px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(200,150,150,0.15); }
.clabel { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dusty-rose); margin-bottom: 3px; font-weight: 500; }
.cval { font-size: 14px; color: var(--navy); font-weight: 400; line-height: 1.5; }
.contact-right { background: var(--warm-white); padding: 90px 70px; }
.fsuccess { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; min-height: 500px; }

/* ── FORM ── */
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ffull { grid-column: 1 / -1; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.flabel { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.fi, .fsel, .fta { padding: 12px 16px; border: 1.5px solid #ede7e1; background: white; border-radius: 12px; font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text); transition: border-color 0.2s; outline: none; font-weight: 300; width: 100%; }
.fi:focus, .fsel:focus, .fta:focus { border-color: var(--dusty-rose); }
.fta { resize: vertical; min-height: 110px; }
.fsel { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a9a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.fsubmit { width: 100%; padding: 15px; background: var(--navy); color: white; border: none; border-radius: 50px; font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; font-weight: 500; margin-top: 4px; }
.fsubmit:hover { background: var(--dusty-rose); }

/* ── FOOTER ── */
.footer { background: #1e2840; padding: 48px 72px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { height: 44px; object-fit: contain; max-width: 180px; filter: brightness(0) invert(1); opacity: 0.8; }
.flinks { display: flex; gap: 24px; flex-wrap: wrap; }
.flinks a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.flinks a:hover { color: white; }
.fsoc-wrap { display: flex; gap: 12px; }
.fsoc { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,0.5); transition: all 0.2s; text-decoration: none; font-weight: 500; }
.fsoc:hover { border-color: var(--dusty-rose); color: var(--dusty-rose); }
.fcopy { width: 100%; text-align: center; font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sgrid { grid-template-columns: repeat(2, 1fr); }
  .tgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links, .nav-btn { display: none; }
  .nav-hamburger { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 28px 56px; }
  .hero-right { height: 55vw; min-height: 260px; }
  .stats-strip { padding: 28px 20px; }
  .stat { padding: 0 16px; }
  .stat-div { display: none; }
  .about { grid-template-columns: 1fr; padding: 70px 28px; gap: 40px; }
  .services { padding: 70px 28px; }
  .sgrid, .tgrid { grid-template-columns: 1fr; }
  .testimonials { padding: 70px 28px; }
  .contact { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 60px 28px; }
  .fgrid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
}
