/* ============================================================
   Luxury House Renew — Custom Theme
   Domain : luxuryhouserenew.com
   ============================================================ */

:root {
  --brand: #05D3BF;
  --brand-dark: #03B7A6;
  --brand-deep: #8E3E1B;
  --brand-soft: #F8EBE1;
  --brand-glow: rgba(192, 91, 46, .16);
  --ink: #1E2B39;
  --body: #4F5E6D;
  --muted: #7B8895;
  --cream: #F7F3EC;
  --white: #ffffff;
  --line: #E9E1D5;
  --dark: #141E28;
  --dark-2: #1C2935;
  --gold: #E8A13B;
  --green: #2F7D5B;
  --green-soft: #E4F1EA;
  --shadow-sm: 0 6px 18px rgba(20, 30, 40, .07);
  --shadow-md: 0 16px 40px rgba(20, 30, 40, .12);
  --radius: 1.15rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--body);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.22;
}

a { text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; }

.text-brand { color: var(--brand) !important; }
.bg-cream { background: var(--cream); }

/* ---------- Buttons ---------- */
.btn { font-weight: 700; letter-spacing: .01em; border-radius: 50rem; }
.btn-brand {
  background: var(--brand); color: #fff; border: 2px solid var(--brand);
  padding: .8rem 1.9rem; box-shadow: 0 10px 24px rgba(192, 91, 46, .28);
  transition: all .25s ease;
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--brand-dark); border-color: var(--brand-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 14px 30px rgba(192, 91, 46, .36);
}
.btn-outline-brand {
  color: var(--brand); border: 2px solid var(--brand); background: transparent;
  padding: .8rem 1.9rem;
}
.btn-outline-brand:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.btn-cream { background: #fff; color: var(--ink); border: 2px solid #fff; padding: .8rem 1.9rem; }
.btn-cream:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); transform: translateY(-2px); }
.btn-outline-light { color: #fff; border: 2px solid rgba(255,255,255,.55); background: transparent; padding: .8rem 1.9rem; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Topbar ---------- */
.topbar { background: #101923; color: rgba(255,255,255,.82); font-size: .83rem; padding: .55rem 0; }
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: #fff; }
.topbar .tb-ico { color: var(--gold); margin-right: .4rem; vertical-align: -2px; }
.topbar .tb-sep { opacity: .3; margin: 0 .8rem; }

/* ---------- Navbar ---------- */
.navbar-main {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  padding: .9rem 0;
  transition: box-shadow .3s ease, padding .3s ease;
  z-index: 1030;
}
.navbar-main.scrolled { box-shadow: 0 8px 30px rgba(20,30,40,.10); padding: .55rem 0; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px; background: var(--brand);
  display: inline-grid; place-items: center; color: #fff; flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(192,91,46,.35);
}
.brand-text {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.42rem; color: var(--ink);
  line-height: 1.1; letter-spacing: -.01em;
}
.brand-text em { font-style: normal; color: var(--brand); }
.brand-tag { display: block; font-family: 'Manrope', sans-serif; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.navbar-main .nav-link {
  color: var(--ink); font-weight: 600; font-size: .95rem; padding: .5rem 1rem !important;
  position: relative;
}
.navbar-main .nav-link::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .2rem; height: 2px;
  background: var(--brand); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.navbar-main .nav-link:hover::after, .navbar-main .nav-link.active::after { transform: scaleX(1); }
.navbar-main .nav-link.active { color: var(--brand); }
.nav-sub-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line);
  display: inline-grid; place-items: center; color: var(--ink); background: #fff;
  transition: all .25s ease;
}
.nav-sub-btn:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
  padding: 8.5rem 0 6rem; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12, 19, 27, .92) 0%, rgba(12, 19, 27, .68) 46%, rgba(12, 19, 27, .30) 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background: linear-gradient(0deg, rgba(12,19,27,.55), transparent);
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25);
  color: #F6E7DB; backdrop-filter: blur(6px);
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 50rem; padding: .55rem 1.2rem; margin-bottom: 1.5rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #6FCF97; box-shadow: 0 0 0 4px rgba(111,207,151,.25); }
.hero h1 {
  color: #fff; font-size: clamp(2.5rem, 5vw, 4.3rem); font-weight: 600;
  letter-spacing: -.015em; margin-bottom: 1.4rem; max-width: 860px;
}
.hero h1 .accent { color: #F0A674; font-style: italic; }
.hero .lead {
  color: rgba(255,255,255,.86); font-size: 1.13rem; max-width: 640px; margin-bottom: 2.3rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .9rem 1.9rem; }
.trust-chip { display: inline-flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 600; }
.trust-chip svg { color: var(--gold); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.75); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.hero-scroll .line { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.8), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity:.25 } 50% { opacity:1 } }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--brand); font-weight: 800; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: .9rem;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--brand); border-radius: 2px; }
.kicker-light { color: var(--gold); }
.kicker-light::before { background: var(--gold); }
.sec-title { font-size: clamp(1.85rem, 3.1vw, 2.65rem); letter-spacing: -.01em; margin-bottom: 1rem; }
.sec-sub { color: var(--body); font-size: 1.05rem; max-width: 660px; }

/* ---------- Feature / icon cards ---------- */
.icon-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.7rem; height: 100%;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.icon-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(192,91,46,.35); }
.icon-card .ico {
  width: 62px; height: 62px; border-radius: 1rem; background: var(--brand-soft);
  color: var(--brand); display: grid; place-items: center; margin-bottom: 1.25rem;
  transition: all .3s ease;
}
.icon-card:hover .ico { background: var(--brand); color: #fff; }
.icon-card h5 { font-size: 1.14rem; margin-bottom: .55rem; }
.icon-card p { font-size: .93rem; margin-bottom: 0; color: var(--body); }

/* ---------- Service cards ---------- */
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(192,91,46,.4); }
.service-card .media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--cream); }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.service-card:hover .media img { transform: scale(1.08); }
.service-card .body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-card h5 { font-size: 1.2rem; margin-bottom: .6rem; }
.service-card p { font-size: .93rem; flex: 1; }
.service-card .more {
  color: var(--brand); font-weight: 700; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .45rem; margin-top: .9rem;
}
.service-card .more svg { transition: transform .25s ease; }
.service-card:hover .more svg { transform: translateX(5px); }
.service-card .feat-list { list-style: none; padding: 0; margin: .4rem 0 .8rem; }
.service-card .feat-list li {
  position: relative; padding-left: 1.7rem; font-size: .9rem; color: var(--body); margin-bottom: .35rem;
}
.service-card .feat-list li svg { position: absolute; left: 0; top: .3rem; color: var(--green); }

/* ---------- About split ---------- */
.about-media { position: relative; padding-bottom: 3.2rem; }
.about-media .img-main { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.about-media .img-sub {
  position: absolute; right: -6%; bottom: 0; width: 56%; border-radius: 1rem;
  border: 8px solid #fff; box-shadow: var(--shadow-md);
}
.exp-badge {
  position: absolute; left: -8px; top: 1.4rem; background: var(--brand); color: #fff;
  border-radius: 1rem; padding: 1.05rem 1.35rem; box-shadow: 0 16px 34px rgba(192,91,46,.4);
  text-align: center; line-height: 1.15;
}
.exp-badge .num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; display: block; }
.exp-badge .lbl { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .85rem; color: var(--ink); font-weight: 600; font-size: .97rem; }
.check-list li .ck {
  width: 24px; height: 24px; border-radius: 50%; background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; flex: 0 0 auto; margin-top: .15rem;
}
.mini-stat { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.6rem; }
.mini-stat .ms { text-align: left; }
.mini-stat .ms b { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--brand); display: block; line-height: 1.1; }
.mini-stat .ms span { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }

/* ---------- Process steps ---------- */
.step { text-align: center; padding: 0 1.2rem; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: #fff; border: 2px dashed var(--brand); color: var(--brand);
  font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 700;
  display: grid; place-items: center; position: relative; z-index: 2;
  transition: all .3s ease;
}
.step:hover .step-num { background: var(--brand); color: #fff; border-style: solid; transform: scale(1.07); }
.step h5 { font-size: 1.08rem; margin-bottom: .5rem; }
.step p { font-size: .9rem; margin-bottom: 0; }
.step-line { position: absolute; top: 32px; left: calc(50% + 44px); width: calc(100% - 88px); border-top: 2px dashed var(--line); z-index: 1; }

/* ---------- Gallery ---------- */
.gallery-tile { position: relative; border-radius: 1rem; overflow: hidden; display: block; }
.gallery-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s ease; }
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-tile .cap {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem 1.2rem 1.1rem;
  background: linear-gradient(0deg, rgba(12,19,27,.88), transparent);
  color: #fff;
}
.gallery-tile .cap b { display: block; font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; }
.gallery-tile .cap span { font-size: .78rem; opacity: .85; letter-spacing: .06em; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem; height: 100%; position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card .q-mark {
  font-family: 'Fraunces', serif; font-size: 3.6rem; line-height: 1; color: var(--brand-soft);
  position: absolute; top: 1.2rem; right: 1.5rem;
}
.testi-card .stars { color: var(--gold); display: flex; gap: .18rem; margin-bottom: 1rem; }
.testi-card blockquote { font-size: .97rem; color: var(--ink); font-style: italic; border: 0; padding: 0; margin: 0 0 1.3rem; }
.testi-card .who { display: flex; align-items: center; gap: .9rem; }
.testi-card .av {
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem; letter-spacing: .02em;
}
.testi-card .who b { display: block; color: var(--ink); font-size: .95rem; }
.testi-card .who span { font-size: .8rem; color: var(--muted); }

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(115deg, var(--dark) 0%, var(--dark-2) 60%, #243341 100%);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.stat-item { text-align: center; }
.stat-item .stat-ico {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 1rem;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.22);
  color: var(--gold); display: grid; place-items: center;
}
.stat-item .stat-lbl { color: #fff; font-weight: 800; font-size: 1.02rem; }
.stat-item .stat-sub { color: rgba(255,255,255,.58); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; margin-top: .35rem; }

/* ---------- Blog cards ---------- */
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform .32s ease, box-shadow .32s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card .media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: var(--cream); }
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.blog-card:hover .media img { transform: scale(1.07); }
.blog-card .cat {
  position: absolute; top: 1rem; left: 1rem; background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 50rem; z-index: 2;
}
.blog-card .body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { display: flex; gap: 1.1rem; font-size: .8rem; color: var(--muted); font-weight: 600; margin-bottom: .7rem; }
.blog-card .meta span { display: inline-flex; align-items: center; gap: .35rem; }
.blog-card h5 { font-size: 1.13rem; line-height: 1.4; margin-bottom: .6rem; }
.blog-card h5 a { color: var(--ink); }
.blog-card h5 a:hover { color: var(--brand); }
.blog-card p { font-size: .91rem; flex: 1; }
.blog-card .more { color: var(--brand); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: .45rem; }
.blog-card .more svg { transition: transform .25s ease; }
.blog-card:hover .more svg { transform: translateX(5px); }

.blog-feature { display: grid; grid-template-columns: 1.05fr 1fr; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.blog-feature .media { position: relative; min-height: 320px; overflow: hidden; }
.blog-feature .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.blog-feature:hover .media img { transform: scale(1.06); }
.blog-feature .body { padding: 2.4rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 991.98px) { .blog-feature { grid-template-columns: 1fr; } .blog-feature .media { min-height: 240px; position: relative; } .blog-feature .media img { position: static; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand-deep) 0%, var(--brand) 52%, #D97E42 100%);
  border-radius: 1.4rem; padding: 3.2rem 3rem; color: #fff; position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.16);
}
.cta-band::before { width: 320px; height: 320px; right: -90px; top: -140px; }
.cta-band::after { width: 210px; height: 210px; right: 130px; bottom: -120px; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: .8rem; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 1.8rem; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .note { display: block; margin-top: 1rem; font-size: .82rem; color: rgba(255,255,255,.75); position: relative; z-index: 1; }

/* ---------- Page head (breadcrumb + title) ---------- */
.page-head {
  background: linear-gradient(115deg, #131D28 0%, #1B2733 60%, #223140 100%);
  padding: 5.6rem 0 3.4rem; position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0; opacity: .45;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.page-head::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px;
  border-radius: 50%; border: 2px solid rgba(192,91,46,.28);
}
.page-head .breadcrumb { --bs-breadcrumb-divider: "›"; --bs-breadcrumb-divider-color: rgba(255,255,255,.35); margin-bottom: .7rem; position: relative; z-index: 1; }
.page-head .breadcrumb a { color: rgba(255,255,255,.72); font-weight: 600; font-size: .88rem; }
.page-head .breadcrumb a:hover { color: #fff; }
.page-head .breadcrumb .active { color: var(--gold); font-weight: 700; font-size: .88rem; }
.page-head h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 0; position: relative; z-index: 1; }
.page-head .lead { color: rgba(255,255,255,.72); margin: .8rem 0 0; max-width: 640px; position: relative; z-index: 1; }

/* ---------- FAQ ---------- */
.accordion .accordion-item {
  border: 1px solid var(--line); border-radius: 1rem !important; margin-bottom: .9rem; overflow: hidden;
}
.accordion .accordion-button {
  font-weight: 700; color: var(--ink); background: #fff; padding: 1.2rem 1.4rem;
  font-size: 1rem; border-radius: 1rem !important;
}
.accordion .accordion-button:not(.collapsed) { color: var(--brand); background: #fff; box-shadow: none; }
.accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23C05B2E' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23C05B2E' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.accordion .accordion-body { color: var(--body); font-size: .95rem; padding: 0 1.4rem 1.3rem; }

/* ---------- Forms ---------- */
.form-label { font-weight: 700; color: var(--ink); font-size: .88rem; margin-bottom: .45rem; }
.form-control, .form-select {
  border: 1px solid var(--line); border-radius: .8rem; padding: .78rem 1rem;
  font-size: .95rem; color: var(--ink); background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand); box-shadow: 0 0 0 .25rem var(--brand-glow);
}
textarea.form-control { min-height: 140px; }
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
.input-group .form-control { border-right: 0; }
.input-group-text { background: #fff; border: 1px solid var(--line); border-left: 0; border-radius: 0 .8rem .8rem 0; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: .6rem; }

/* ---------- Contact ---------- */
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; height: 100%; transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card .ico { width: 54px; height: 54px; border-radius: .95rem; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 1rem; }
.contact-card h6 { font-size: 1rem; margin-bottom: .35rem; }
.contact-card p, .contact-card a { font-size: .92rem; color: var(--body); margin-bottom: 0; word-break: break-word; }
.contact-card a:hover { color: var(--brand); }
.map-wrap { border-radius: 1.2rem; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.area-chip {
  display: inline-block; background: #fff; border: 1px solid var(--line); color: var(--body);
  border-radius: 50rem; padding: .5rem 1.15rem; font-size: .88rem; font-weight: 600; margin: 0 .45rem .7rem 0;
  transition: all .25s ease;
}
.area-chip:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* ---------- Subscribe page ---------- */
.sub-tabs .nav-pills { background: var(--cream); border-radius: 50rem; padding: .4rem; display: inline-flex; gap: .3rem; }
.sub-tabs .nav-link {
  border-radius: 50rem !important; color: var(--body); font-weight: 700; font-size: .92rem;
  padding: .65rem 1.6rem;
}
.sub-tabs .nav-link.active { background: var(--brand); color: #fff; box-shadow: 0 8px 18px rgba(192,91,46,.3); }
.sub-card { background: #fff; border: 1px solid var(--line); border-radius: 1.3rem; padding: 2.6rem; box-shadow: var(--shadow-sm); }
.sub-benefit { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1rem; }
.sub-benefit .ico { width: 42px; height: 42px; border-radius: .8rem; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: 0 0 auto; }
.sub-benefit b { color: var(--ink); display: block; font-size: .95rem; }
.sub-benefit span { font-size: .86rem; }

/* ---------- Footer ---------- */
.footer { background: #121B25; color: #9FB0BF; padding: 4.5rem 0 0; }
.footer h6 {
  color: #fff; font-family: 'Manrope', sans-serif; font-size: .82rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.footer a { color: #9FB0BF; font-size: .93rem; }
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .7rem; }
.footer .f-about { font-size: .93rem; max-width: 320px; }
.footer .f-contact li { display: flex; gap: .8rem; align-items: flex-start; }
.footer .f-contact svg { color: var(--gold); flex: 0 0 auto; margin-top: .25rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: inline-grid; place-items: center; color: #cfd8e0; margin-right: .5rem; transition: all .25s ease;
}
.social-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: 3.5rem; padding: 1.4rem 0; font-size: .85rem; }
.footer-bottom a { font-size: .85rem; }

/* ---------- Newsletter modal ---------- */
.newsletter-modal .modal-content { border: none; border-radius: 1.3rem; overflow: hidden; }
.newsletter-modal .modal-header { border: 0; background: linear-gradient(120deg, var(--brand-deep), var(--brand)); color: #fff; padding: 2rem 2.2rem 3.4rem; }
.newsletter-modal .modal-body { padding: 0 2.2rem 1.6rem; margin-top: -1.9rem; }
.newsletter-modal .modal-footer { border: 0; justify-content: center; padding-bottom: 1.8rem; }
.newsletter-modal .nm-icon {
  width: 74px; height: 74px; border-radius: 50%; background: #fff; color: var(--brand);
  display: grid; place-items: center; margin: 0 auto 1rem; box-shadow: var(--shadow-md);
}
.newsletter-modal .modal-title { font-family: 'Fraunces', serif; }
.newsletter-modal .modal-header p { color: rgba(255,255,255,.85); font-size: .85rem; margin: .4rem 0 0; }

/* ---------- Post (blog detail) ---------- */
.post-content p { color: var(--body); font-size: 1.02rem; line-height: 1.9; margin-bottom: 1.3rem; }
.post-content h2 { font-size: 1.55rem; margin: 2.4rem 0 1rem; }
.post-content h3 { font-size: 1.25rem; margin: 1.8rem 0 .8rem; }
.post-content ul { margin-bottom: 1.5rem; }
.post-content ul li { color: var(--body); margin-bottom: .55rem; padding-left: .4rem; }
.post-content blockquote {
  font-family: 'Fraunces', serif; font-size: 1.28rem; font-style: italic; color: var(--ink);
  border-left: 4px solid var(--brand); background: var(--cream); border-radius: 0 .9rem .9rem 0;
  padding: 1.4rem 1.8rem; margin: 2rem 0;
}
.key-takeaways { background: var(--brand-soft); border-left: 4px solid var(--brand); border-radius: .9rem; padding: 1.6rem 1.8rem; margin: 2rem 0; }
.key-takeaways h6 { color: var(--brand-deep); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; font-family: 'Manrope', sans-serif; margin-bottom: .9rem; }
.key-takeaways ul { margin: 0; padding-left: 1.2rem; }
.key-takeaways li { color: var(--ink); font-weight: 600; font-size: .93rem; margin-bottom: .5rem; }
.tag-pill {
  display: inline-block; background: #fff; border: 1px solid var(--line); color: var(--body);
  border-radius: 50rem; padding: .4rem 1rem; font-size: .8rem; font-weight: 700; margin: 0 .4rem .5rem 0;
  transition: all .25s ease;
}
.tag-pill:hover { border-color: var(--brand); color: var(--brand); }
.share-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-grid; place-items: center; color: var(--ink); background: #fff; margin-right: .5rem;
  transition: all .25s ease;
}
.share-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.author-box { display: flex; gap: 1.2rem; background: var(--cream); border-radius: 1.1rem; padding: 1.7rem; margin-top: 2.6rem; }
.author-box .av {
  width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: #fff; flex: 0 0 auto;
  display: grid; place-items: center; font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700;
}
.author-box b { color: var(--ink); display: block; font-size: 1rem; }
.author-box span { font-size: .8rem; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.author-box p { font-size: .92rem; margin: .5rem 0 0; }

/* ---------- Misc ---------- */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #fff; border: none; display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s ease; z-index: 1050;
  box-shadow: 0 12px 26px rgba(192,91,46,.4);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--brand-dark); }
.call-float {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 1049;
  background: var(--brand); color: #fff; border-radius: 50rem; padding: .8rem 1.3rem;
  display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .92rem;
  box-shadow: 0 12px 26px rgba(192,91,46,.4); transition: transform .25s ease;
}
.call-float:hover { color: #fff; transform: translateY(-3px); }
.badge-soft { background: var(--brand-soft); color: var(--brand-deep); border-radius: 50rem; padding: .45rem 1.05rem; font-size: .8rem; font-weight: 800; letter-spacing: .06em; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* success alert box */
.alert-success-soft {
  background: var(--green-soft); border: 1px solid rgba(47,125,91,.3); color: #1F5C41;
  border-radius: 1rem; padding: 1.6rem;
}
.alert-success-soft b { color: #16452F; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-main .navbar-collapse { background: #fff; border-radius: 1rem; box-shadow: var(--shadow-md); padding: 1rem 1.2rem; margin-top: .8rem; }
  .about-media .img-sub { right: 0; }
  .step-line { display: none; }
}
@media (max-width: 575.98px) {
  .hero { min-height: 78vh; padding: 7rem 0 5rem; }
  .cta-band { padding: 2.4rem 1.6rem; }
  .sub-card { padding: 1.8rem 1.3rem; }
  .exp-badge { left: 4px; }
}

.blog-content {
  text-align: justify;
}


.unsubscribe-container{
    width:100%;
    max-width:500px;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.unsubscribe-container h2{
    color:#222;
    margin-bottom:10px;
    text-align:center;
}

.unsubscribe-container p{
    color:#666;
    text-align:center;
    margin-bottom:25px;
    line-height:1.6;
}

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

label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

input[type="text"],
input[type="email"],
input[type="date"]{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

input:focus{
    border-color:#0d6efd;
}

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:20px;
}

.checkbox input{
    margin-top:3px;
}

.checkbox label{
    font-size:14px;
    font-weight:400;
    line-height:1.5;
    color:#555;
}

button{
    width:100%;
    background:#dc3545;
    color:#fff;
    border:none;
    padding:15px;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#bb2d3b;
}

.success-message{
    display:none;
    margin-top:20px;
    background:#d1e7dd;
    color:#0f5132;
    border:1px solid #badbcc;
    padding:15px;
    border-radius:8px;
    text-align:center;
}

.success-message h3{
    margin-bottom:8px;
}

.navbar-brand img{
  width: 250px;
}