:root {
  --navy: #0B1F3A;
  --navy-2: #0E2647;
  --navy-3: #08152A;
  --gold: #C9A961;
  --gold-soft: #E0DBC8;
  --cream: #F7F4ED;
  --cream-2: #E8E2D3;
  --ink: #1A1A1A;
  --muted: #5F5E5A;
  --muted-2: #8A8578;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.6; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: var(--serif); font-weight: 500; }
.small-caps { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; font-weight: 500; }

/* NAVBAR */
.nav { background: var(--navy); border-bottom: 1px solid rgba(201,169,97,0.2); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1180px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--serif); font-size: 18px; overflow: hidden; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { color: white; font-family: var(--serif); font-size: 17px; line-height: 1.1; }
.logo-text small { display: block; color: var(--gold); font-size: 9px; letter-spacing: 1.5px; font-family: var(--sans); margin-top: 2px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #E8E2D3; font-size: 14px; cursor: pointer; padding-bottom: 4px; border-bottom: 1px solid transparent; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 8px 16px !important; border-radius: 4px; font-weight: 500; border-bottom: none !important; }
.nav-cta:hover { background: #d4b676 !important; }
.menu-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 24px; cursor: pointer; }

/* HERO */
.hero { background: var(--navy); color: white; padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.hero h1 { font-family: var(--serif); font-size: 48px; font-weight: 500; line-height: 1.15; margin: 16px auto 18px; max-width: 720px; }
.hero p { color: #C8C5BE; font-size: 16px; max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s; border: 1px solid transparent; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #d4b676; }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: rgba(201,169,97,0.1); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #20bf5b; }
.btn-navy { background: var(--navy); color: var(--gold); }
.btn-navy:hover { background: var(--navy-2); }

/* STATS */
.stats { background: var(--navy-2); padding: 24px 0; border-top: 1px solid rgba(201,169,97,0.15); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.stat { text-align: center; padding: 0 20px; border-left: 1px solid rgba(201,169,97,0.2); }
.stat:first-child { border-left: none; }
.stat-num { color: var(--gold); font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1; }
.stat-lbl { color: #C8C5BE; font-size: 12px; margin-top: 4px; }

/* SECTIONS */
section.block { padding: 80px 0; }
.block-light { background: white; }
.block-cream { background: var(--cream); }
.block-navy { background: var(--navy); color: white; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--navy); margin-top: 10px; }
.block-navy .section-head h2 { color: white; }

/* CARDS */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.area-card { background: white; padding: 28px 24px; border-left: 3px solid var(--gold); border-radius: 4px; transition: all .2s; cursor: pointer; }
.area-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(11,31,58,0.08); }
.area-card i.ti { font-size: 32px; color: var(--navy); margin-bottom: 14px; display: block; }
.area-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.area-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.area-card .link { color: var(--gold); font-size: 13px; font-weight: 500; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; }
.step-num { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--serif); font-size: 22px; }
.step h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value { padding: 24px; background: var(--cream); border-radius: 6px; }
.value i.ti { font-size: 28px; color: var(--gold); margin-bottom: 12px; display: block; }
.value h3 { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.value p { font-size: 13px; color: var(--muted); }

/* RESOURCES */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.resource { background: white; padding: 22px; border-radius: 6px; border: 1px solid var(--gold-soft); }
.resource i.ti { font-size: 30px; color: var(--gold); margin-bottom: 12px; display: block; }
.resource h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.resource a { color: var(--navy); font-size: 13px; font-weight: 500; cursor: pointer; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--gold-soft); border-radius: 4px; margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-q span { font-size: 15px; font-weight: 500; color: var(--navy); }
.faq-q i.ti { color: var(--gold); transition: transform .2s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; padding: 0 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }
.faq-item.open .faq-q i.ti { transform: rotate(45deg); }

/* FOOTER */
footer { background: var(--navy-3); color: #C8C5BE; padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 30px; border-bottom: 1px solid rgba(201,169,97,0.15); }
footer h4 { color: var(--gold); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; font-weight: 500; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; font-size: 13px; }
footer a { transition: color .2s; cursor: pointer; }
footer a:hover { color: var(--gold); }
.social { display: flex; gap: 12px; margin-top: 12px; }
.social a { width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.copyright { padding-top: 20px; text-align: center; font-size: 11px; color: var(--muted-2); }

/* CTA */
.cta-block { background: var(--navy); color: white; padding: 60px 0; text-align: center; }
.cta-block h2 { font-family: var(--serif); font-size: 32px; margin-bottom: 12px; font-weight: 500; }
.cta-block p { color: #C8C5BE; margin-bottom: 24px; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; color: white; font-size: 32px; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform .2s; cursor: pointer; }
.wa-float:hover { transform: scale(1.05); }

/* BREADCRUMB */
.breadcrumb { font-size: 12px; color: var(--muted-2); padding: 16px 0; }
.breadcrumb a { color: var(--gold); cursor: pointer; }

/* SERVICE DETAIL */
.service-hero { background: var(--navy); color: white; padding: 60px 0; }
.service-hero-grid { display: flex; gap: 24px; align-items: flex-start; }
.service-hero i.ti { font-size: 54px; color: var(--gold); flex-shrink: 0; }
.service-hero h1 { font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1.2; margin: 12px 0; }
.service-hero p { color: #C8C5BE; max-width: 600px; line-height: 1.7; }
.when-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.when-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: white; border-radius: 4px; border: 1px solid var(--gold-soft); }
.when-item i.ti { color: var(--gold); flex-shrink: 0; font-size: 22px; margin-top: 2px; }
.when-item span { font-size: 14px; color: var(--muted); line-height: 1.55; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.included { background: white; padding: 18px; border-radius: 4px; }
.included h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.included p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 30px; }
.contact-card { background: white; padding: 22px; border-radius: 6px; border: 1px solid var(--gold-soft); text-align: center; }
.contact-card i.ti { font-size: 28px; color: var(--gold); margin-bottom: 10px; display: block; }
.contact-card h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.contact-card .data { color: var(--navy); font-size: 13px; font-weight: 500; }
.form { background: white; padding: 32px; border-radius: 8px; border: 1px solid var(--gold-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 5px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 10px 14px; background: var(--cream); border: 1px solid transparent; border-radius: 4px; font-family: var(--sans); font-size: 14px; color: var(--navy); transition: border .2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--gold); background: white; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { background: var(--cream); color: var(--navy); padding: 6px 14px; border-radius: 20px; font-size: 12px; cursor: pointer; transition: all .2s; }
.chip.active, .chip:hover { background: var(--navy); color: var(--gold); }
.form-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--gold-soft); margin-top: 8px; flex-wrap: wrap; gap: 12px; }
.form-footer .privacy { font-size: 11px; color: var(--muted-2); }
.phone-wrap { display: flex; gap: 6px; align-items: stretch; }
.phone-country { flex: 0 0 140px; width: 140px; max-width: 140px; min-width: 0; padding: 10px 8px; background: var(--cream); border: 1px solid transparent; border-radius: 4px; font-family: var(--sans); font-size: 13px; color: var(--navy); cursor: pointer; }
.phone-country:focus { outline: none; border-color: var(--gold); background: white; }
.phone-num { flex: 1 1 0; min-width: 0; }

/* FORM STATES */
.alert { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); background: white; border-left: 4px solid var(--gold); padding: 14px 22px; border-radius: 6px; font-size: 14px; color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,0.12); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s; max-width: 480px; width: 90%; }
.alert.show { opacity: 1; pointer-events: auto; }
.btn-submit { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s; border: none; background: var(--gold); color: var(--navy); }
.btn-submit:hover { background: #d4b676; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.btn-spinner { display: none; width: 14px; height: 14px; border: 2px solid rgba(11,31,58,.2); border-top-color: var(--navy); border-radius: 50%; animation: spin .8s linear infinite; }
.btn-submit.loading .btn-spinner { display: inline-block; }
.btn-submit.loading .btn-text { opacity: .6; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 3rem; gap: 1.5rem; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(201,169,97,0.15); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 28px; }

/* BLOG */
.blog-filters { padding: 18px 0; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.blog-filters .lbl { font-size: 13px; color: var(--muted); margin-right: 6px; }
.featured-article { background: white; padding: 24px; border-radius: 8px; border: 1px solid var(--gold-soft); display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; }
.featured-img { background: var(--cream-2); height: 160px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.featured-img i.ti { font-size: 56px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 14px; }
.blog-card { background: white; border-radius: 6px; border: 1px solid var(--gold-soft); overflow: hidden; cursor: pointer; transition: transform .2s; }
.blog-card:hover { transform: translateY(-2px); }
.blog-img { height: 120px; background: var(--cream-2); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.blog-img i.ti { font-size: 40px; }
.blog-body { padding: 16px; }
.blog-tag { display: inline-block; background: var(--cream); color: var(--navy); padding: 3px 8px; border-radius: 3px; font-size: 10px; font-weight: 500; margin-bottom: 8px; }
.blog-title { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.blog-meta { font-size: 11px; color: var(--muted-2); }
.downloads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.download { background: var(--navy-2); padding: 20px; border-radius: 6px; border-left: 2px solid var(--gold); }
.download i.ti { font-size: 28px; color: var(--gold); margin-bottom: 10px; display: block; }
.download h4 { color: white; font-size: 14px; font-weight: 500; margin-bottom: 4px; line-height: 1.35; }
.download .meta { color: var(--muted-2); font-size: 11px; }
.newsletter { background: var(--cream); padding: 28px; border-radius: 8px; display: flex; align-items: center; gap: 20px; margin-top: 24px; }
.newsletter i.ti { font-size: 38px; color: var(--gold); flex-shrink: 0; }
.newsletter-content { flex: 1; }
.newsletter h3 { font-family: var(--serif); color: var(--navy); font-size: 19px; margin-bottom: 4px; font-weight: 500; }
.newsletter p { font-size: 13px; color: var(--muted); }

/* MISSION/VISION */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.mv-card { background: white; padding: 28px; border-radius: 8px; border: 1px solid var(--gold-soft); border-top: 3px solid var(--gold); }
.mv-card h4 { color: var(--gold); font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; font-weight: 500; text-transform: uppercase; }
.mv-card .quote { font-family: var(--serif); font-style: italic; color: var(--navy); font-size: 18px; line-height: 1.6; }

/* STORY */
.story { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: center; }
.story-img { background: var(--cream); height: 280px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.story-img i.ti { font-size: 80px; }
.story h2 { margin-top: 8px; text-align: left; }
.story p { margin-bottom: 12px; color: var(--muted); line-height: 1.7; }

/* RESPONSIVE GRID HELPERS — used to override inline grid styles cleanly */
.grid-4col { display: grid; grid-template-columns: repeat(4, 1fr) !important; gap: 16px; }
.grid-2col { display: grid; grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }

/* RESPONSIVE */
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 1024px) {
  .logo-text { font-size: 15px; }
}
@media (max-width: 880px) {
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px; gap: 16px; display: none; border-top: 1px solid rgba(201,169,97,0.2); z-index: 99; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .logo-text { font-size: 14px; }
  .logo-text small { font-size: 8px; letter-spacing: 1px; }
  .hero h1 { font-size: 32px; }
  .service-hero h1 { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .stat { border-left: none; }
  .areas-grid, .process-grid, .values-grid, .resources-grid, .blog-grid, .downloads-grid, .contact-grid, .included-grid, .when-grid, .footer-grid, .form-grid, .mv-grid { grid-template-columns: 1fr; }
  .grid-4col, .grid-2col { grid-template-columns: 1fr !important; }
  .featured-article, .story { grid-template-columns: 1fr; }
  .phone-wrap { flex-direction: column; }
  .phone-country { flex: none; width: 100%; max-width: 100%; }
  section.block { padding: 50px 0; }
  .section-head h2 { font-size: 26px; }
  .service-hero-grid { flex-direction: column; }
  .area-card { flex-direction: column; align-items: flex-start !important; }
  .area-card .btn { align-self: flex-start; }
  .newsletter { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .logo-mark { width: 34px; height: 34px; }
  .logo-text { font-size: 13px; }
  .logo-text small { display: none; }
  .hero h1 { font-size: 26px; }
  .service-hero h1 { font-size: 22px; }
  .hero p { font-size: 14px; }
  .nav-inner { padding: 14px 16px; }
  .container { padding: 0 16px; }
}
