:root{--page-title-display:none;}/* Start custom CSS *//* =============================================
   DESIGN TOKENS & RESPONSIVE LAYOUT
   Palette: Deep Midnight Navy · Antique Gold · Ivory Parchment
   ============================================= */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162336;
  --navy-light:  #1E3250;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   #F5EDD8;
  --ivory:       #FAF7F2;
  --ivory-dark:  #F0EBE1;
  --crimson:     #9B2335;
  --white:       #FFFFFF;
  --text-dark:   #0D1B2A;
  --text-mid:    #3A4A5C;
  --text-light:  #6B7C93;
  --border:      rgba(201,168,76,0.25);
  --shadow-gold: 0 4px 32px rgba(201,168,76,0.18);
  --shadow-deep: 0 8px 48px rgba(13,27,42,0.22);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'DM Mono', monospace;

  --max-w: 1200px;
  --section-pad: 96px 24px;
}

.el-block-wrapper *, .el-block-wrapper *::before, .el-block-wrapper *::after { box-sizing: border-box; margin: 0; padding: 0; }
.el-block-wrapper img { max-width: 100%; display: block; }
.el-block-wrapper a { text-decoration: none; color: inherit; }
.el-block-wrapper ul { list-style: none; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: rgba(255,255,255,0.75); font-size: 12.5px; letter-spacing: 0.03em; padding: 9px 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--gold-light); transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-dot { color: var(--gold); }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(13,27,42,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; flex-shrink: 0; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--navy) !important; font-weight: 600 !important; padding: 10px 22px; border-radius: 4px; font-size: 13px !important; letter-spacing: 0.04em; transition: background 0.2s, box-shadow 0.2s !important; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light) !important; box-shadow: var(--shadow-gold); }

/* ── HERO ── */
.hero { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 55%, #1A2E4A 100%); position: relative; overflow: hidden; padding: 100px 24px 90px; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 1; }
.hero-globe-bg { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%); border-radius: 50%; border: 1px solid rgba(201,168,76,0.08); pointer-events: none; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; border: 1px solid rgba(201,168,76,0.3); padding: 6px 14px; border-radius: 3px; }
.hero h1 { font-family: var(--display); font-size: clamp(42px, 5.5vw, 70px); font-weight: 700; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.72; margin-bottom: 38px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); font-weight: 600; font-size: 14px; padding: 14px 28px; border-radius: 4px; letter-spacing: 0.03em; transition: background 0.2s, box-shadow 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); font-weight: 500; font-size: 14px; padding: 14px 28px; border-radius: 4px; letter-spacing: 0.03em; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.22); border-radius: 10px; padding: 36px 32px; backdrop-filter: blur(8px); }
.hero-card-title { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--gold-light); margin-bottom: 24px; letter-spacing: -0.01em; }
.hero-stat { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hero-stat:last-of-type { border-bottom: none; }
.hero-stat-num { font-family: var(--display); font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1; min-width: 80px; }
.hero-stat p { color: rgba(255,255,255,0.65); font-size: 13.5px; line-height: 1.55; padding-top: 4px; }
.hero-badge { margin-top: 24px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 4px; padding: 10px 14px; font-size: 13px; color: var(--gold-light); text-align: center; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); }
.trust-inner { max-width: var(--max-w); margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; padding: 8px 16px; }
.trust-check { width: 18px; height: 18px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--navy); font-weight: 700; }

/* ── SECTION STRUCTURES ── */
.section { padding: var(--section-pad); }
.section-alt { background: var(--ivory-dark); }
.section-dark { background: var(--navy); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 16px; }
.section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--display); font-size: clamp(32px, 4vw, 50px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--navy); }
.section-title.light { color: var(--white); }
.section-sub { font-size: 16.5px; color: var(--text-mid); max-width: 600px; line-height: 1.7; margin-bottom: 56px; }
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ── WHY CHOOSE US (BENEFITS) ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--white); border: 1px solid rgba(13,27,42,0.08); border-top: 3px solid var(--gold); border-radius: 8px; padding: 32px 28px; transition: box-shadow 0.25s, transform 0.2s; }
.benefit-card:hover { box-shadow: var(--shadow-deep); transform: translateY(-3px); }
.benefit-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.benefit-card h4 { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.benefit-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.68; }

/* ── GEOGRAPHIES GRID ── */
.countries-strip { padding: 48px 24px; background: var(--white); border-top: 1px solid rgba(13,27,42,0.06); border-bottom: 1px solid rgba(13,27,42,0.06); }
.countries-label { text-align: center; font-family: var(--mono); font-size: 11px; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.countries-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 1000px; margin: 0 auto; }
.country-badge { display: flex; align-items: center; gap: 7px; background: var(--ivory-dark); border: 1px solid rgba(13,27,42,0.09); border-radius: 4px; padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--text-mid); transition: border-color 0.2s, box-shadow 0.2s; }
.country-badge:hover { border-color: var(--gold); box-shadow: 0 2px 10px rgba(201,168,76,0.15); }

/* ── FORM & INQUIRY COMBO ── */
.inquiry-section { background: var(--ivory-dark); padding: var(--section-pad); }
.inquiry-grid { display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: start; }
.inquiry-left h2 { font-family: var(--display); font-size: clamp(30px, 3.5vw, 44px); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 18px; }
.inquiry-left p { font-size: 16px; color: var(--text-mid); line-height: 1.72; margin-bottom: 32px; }
.inquiry-promise { display: flex; flex-direction: column; gap: 14px; }
.promise-item { display: flex; align-items: flex-start; gap: 14px; font-size: 14.5px; color: var(--text-mid); }
.promise-icon { width: 32px; height: 32px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); border: 1.5px solid rgba(201,168,76,0.3); }
.inquiry-form-box { background: var(--white); border-radius: 10px; padding: 40px 36px; box-shadow: var(--shadow-deep); border: 1px solid rgba(201,168,76,0.15); }
.inquiry-form-box h3 { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.inquiry-form-box .form-sub { font-size: 13.5px; color: var(--text-light); margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(13,27,42,0.12); border-radius: 5px; font-family: var(--body); font-size: 14.5px; background: var(--ivory); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; background: var(--navy); color: var(--white); font-size: 15px; font-weight: 600; padding: 15px; border: none; border-radius: 5px; cursor: pointer; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: 10px; padding: 36px 30px; position: relative; border: 1px solid rgba(13,27,42,0.07); box-shadow: 0 2px 20px rgba(13,27,42,0.06); display: flex; flex-direction: column; }
.testimonial-card::before { content: '201C'; position: absolute; top: 20px; right: 24px; font-family: var(--display); font-size: 80px; color: var(--gold-pale); line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--ivory-dark); padding-top: 20px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testimonial-meta { font-size: 12.5px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }

/* ── FOOTER ── */
footer { background: #070F18; padding: 72px 24px 0; border-top: 1px solid rgba(201,168,76,0.12); }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); }
.footer-col h6 { font-family: var(--mono); font-size: 10.5px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.45); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-inner, .inquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .benefits-grid, .testimonials-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
}/* End custom CSS */