.elementor-749 .elementor-element.elementor-element-484dc02{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}/* Start custom CSS *//* ====== GLOBAL DESIGN SYSTEM ====== */
:root {
  --navy: #0B2C4A;
  --navy-light: #14436E;
  --gold: #C8973A;
  --gold-light: #E8B86B;
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --teal: #1B6B72;
  --teal-light: #E6F4F5;
  --section-alt: #F0F4F8;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(11,44,74,0.08);
  --shadow-hover: 0 8px 32px rgba(11,44,74,0.15);
}

/* Typography Overrides for HTML Blocks */
.iv-block {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}
.iv-block h1, .iv-block h2, .iv-block h3, .iv-block h4 { 
  font-family: 'Lora', serif; 
  line-height: 1.3; 
}
.iv-block a { text-decoration: none; color: inherit; }

/* Layout Helpers */
.iv-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.iv-section { padding: 80px 0; }
.iv-section-alt { background: var(--section-alt); }
.iv-section-cream { background: var(--cream); }

/* Common UI Elements */
.iv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  background: #FFF8ED;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.iv-section-title {
  font-size: clamp(26px, 4vw, 36px);
  color: var(--navy);
  margin-bottom: 14px;
}
.iv-section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
}
.iv-section-header { margin-bottom: 52px; }

/* Buttons */
.iv-btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.iv-btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.iv-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.iv-btn-outline:hover { background: var(--navy); color: var(--white) !important; }

/* ====== NAVIGATION ====== */
.iv-nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.iv-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.iv-nav-logo { font-family: 'Lora', serif; font-size: 22px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.iv-nav-logo span { color: var(--gold); }
.iv-nav-flag { font-size: 20px; line-height: 1; }
.iv-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.iv-nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color 0.15s; }
.iv-nav-links a:hover { color: var(--navy); }

/* ====== HERO ====== */
.iv-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1B5E8A 100%); padding: 100px 0 90px; position: relative; overflow: hidden; }
.iv-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.iv-hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.iv-hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.iv-hero h1 { font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 22px; line-height: 1.2; }
.iv-hero h1 em { color: var(--gold-light); font-style: normal; }
.iv-hero-desc { font-size: 17px; color: rgba(255,255,255,0.80); margin-bottom: 36px; line-height: 1.75; max-width: 480px; }
.iv-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.iv-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.10); border-radius: var(--radius); margin-top: 52px; overflow: hidden; }
.iv-hero-stat { background: rgba(255,255,255,0.05); padding: 22px 20px; text-align: center; }
.iv-hero-stat-num { font-family: 'Lora', serif; font-size: 28px; font-weight: 600; color: var(--gold-light); display: block; }
.iv-hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.60); margin-top: 4px; display: block; }
.iv-hero-visual { display: flex; flex-direction: column; gap: 14px; }
.iv-hero-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 16px; transition: background 0.2s; }
.iv-hero-card:hover { background: rgba(255,255,255,0.12); }
.iv-hero-card-icon { width: 44px; height: 44px; background: rgba(200,151,58,0.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.iv-hero-card-title { font-weight: 600; color: var(--white); font-size: 15px; display: block; }
.iv-hero-card-sub { font-size: 13px; color: rgba(255,255,255,0.60); display: block; margin-top: 2px; }

/* ====== TRUST BAR ====== */
.iv-trust-bar { background: var(--navy); padding: 20px 0; }
.iv-trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.iv-trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.70); font-size: 13px; font-weight: 500; }
.iv-trust-item span:first-child { font-size: 18px; }

/* ====== SERVICES ====== */
.iv-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.iv-service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all 0.25s; position: relative; overflow: hidden; }
.iv-service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); transform: scaleY(0); transition: transform 0.25s; transform-origin: top; }
.iv-service-card:hover { box-shadow: var(--shadow-hover); border-color: transparent; transform: translateY(-2px); }
.iv-service-card:hover::before { transform: scaleY(1); }
.iv-service-icon { width: 52px; height: 52px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.iv-service-title { font-family: 'Lora', serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.iv-service-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.iv-service-link { font-size: 13px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.iv-service-link:hover { color: var(--navy); }
.iv-service-link::after { content: '→'; }

/* ====== GEOGRAPHIES GRID (CATEGORIES) ====== */
.iv-categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.iv-cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all 0.2s; cursor: pointer; display: block; }
.iv-cat-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.iv-cat-card:hover .iv-cat-name { color: var(--white); }
.iv-cat-card:hover .iv-cat-sub { color: rgba(255,255,255,0.65); }
.iv-cat-card:hover .iv-cat-icon-wrap { background: rgba(255,255,255,0.12); }
.iv-cat-icon-wrap { width: 56px; height: 56px; background: var(--teal-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; transition: background 0.2s; }
.iv-cat-name { font-family: 'Lora', serif; font-size: 16px; color: var(--navy); margin-bottom: 4px; transition: color 0.2s; }
.iv-cat-sub { font-size: 12px; color: var(--text-light); transition: color 0.2s; }

/* ====== HOW IT WORKS ====== */
.iv-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.iv-step { text-align: center; padding: 0 12px; }
.iv-step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold-light); font-family: 'Lora', serif; font-size: 20px; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.iv-step-title { font-family: 'Lora', serif; font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.iv-step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ====== WHY CHOOSE US & FORM COMBO ====== */
.iv-lead-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0; }
.iv-lead-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.iv-lead-text h2 { color: var(--white); margin-bottom: 16px; }
.iv-lead-text p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.iv-lead-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.iv-lead-bullets li { color: rgba(255,255,255,0.80); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.iv-lead-bullets li::before { content: '✓'; width: 22px; height: 22px; background: rgba(200,151,58,0.25); border-radius: 50%; color: var(--gold-light); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.iv-lead-form-wrap { background: var(--white); border-radius: 14px; padding: 40px 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.iv-form-title { font-family: 'Lora', serif; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.iv-form-sub { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.iv-form-group { margin-bottom: 18px; }
.iv-form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; }
.iv-form-input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--white); outline: none; transition: border-color 0.2s; }
.iv-form-input:focus { border-color: var(--navy); }
.iv-form-select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--white); outline: none; 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='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.iv-form-btn { width: 100%; padding: 14px; background: var(--gold); color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px; border: none; border-radius: 8px; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.iv-form-btn:hover { background: var(--navy); }
.iv-form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 14px; }

/* ====== TESTIMONIALS ====== */
.iv-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.iv-testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.iv-testimonial-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.iv-testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.iv-testimonial-author { display: flex; align-items: center; gap: 14px; }
.iv-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; color: var(--white); flex-shrink: 0; }
.iv-author-name { font-weight: 600; font-size: 14px; color: var(--navy); display: block; }
.iv-author-loc { font-size: 12px; color: var(--text-light); display: block; margin-top: 2px; }

/* ====== BLOG ====== */
.iv-posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.iv-post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.2s; }
.iv-post-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.iv-post-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
.iv-post-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,44,74,0.6) 100%); }
.iv-post-category { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.iv-post-body { padding: 22px 22px 24px; }
.iv-post-title { font-family: 'Lora', serif; font-size: 17px; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.iv-post-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.iv-post-read-more { font-size: 13px; font-weight: 600; color: var(--gold); }
.iv-post-read-more:hover { color: var(--navy); }

/* ====== NEWSLETTER ====== */
.iv-newsletter { background: var(--teal); padding: 60px 0; text-align: center; }
.iv-newsletter h2 { color: var(--white); margin-bottom: 10px; }
.iv-newsletter p { color: rgba(255,255,255,0.80); margin-bottom: 32px; font-size: 16px; }
.iv-newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.iv-newsletter-input { flex: 1; min-width: 240px; padding: 13px 18px; border-radius: 8px; border: none; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; }

/* ====== FOOTER ====== */
.iv-footer { background: var(--navy); padding: 60px 0 30px; color: rgba(255,255,255,0.65); }
.iv-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.iv-footer-brand-name { font-family: 'Lora', serif; font-size: 22px; color: var(--white); margin-bottom: 12px; }
.iv-footer-brand-name span { color: var(--gold); }
.iv-footer-brand-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.iv-footer-col-title { font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.iv-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.iv-footer-links a { font-size: 14px; color: rgba(255,255,255,0.60); transition: color 0.15s; }
.iv-footer-links a:hover { color: var(--gold-light); }
.iv-footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; }

/* ====== RESPONSIVE REFS ====== */
@media (max-width: 900px) {
  .iv-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .iv-hero-visual { display: none; }
  .iv-lead-inner { grid-template-columns: 1fr; gap: 44px; }
  .iv-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .iv-hero-stats { grid-template-columns: 1fr; }
  .iv-nav-links { display: none; }
  .iv-footer-grid { grid-template-columns: 1fr; }
  .iv-lead-form-wrap { padding: 28px 20px; }
  .iv-trust-inner { gap: 24px; }
}/* End custom CSS */