/*
Theme Name: Expat Global Medical
Theme URI: https://viddl.online/
Author: Hassan Baig
Author URI: https://www.facebook.com/hasnbg/
Description: A premium, modern, and professional WordPress theme for international insurance companies.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: expat-global-medical
*/

:root {
    --navy: #0a1628;
    --navy-mid: #122040;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-pale: #f5e9c4;
    --cream: #faf7f0;
    --slate: #5a6a7a;
    --white: #ffffff;
    --red-accent: #c0392b;
    --radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--navy);
    color: var(--gold-pale);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.topbar a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo span {
    color: var(--gold);
}

.nav-logo .badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    background: var(--gold);
    color: var(--navy);
    padding: 3px 7px;
    border-radius: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 11px 24px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}
/* Dropdown menu */

.nav-links li {
    position: relative;
}

/* hide submenu */
.nav-links .sub-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: #0a1628;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(201,168,76,0.2);
}

/* submenu links */
.nav-links .sub-menu a {
    padding: 8px 18px;
    display: block;
    font-size: 13px;
}

/* show dropdown */
.nav-links li:hover > .sub-menu {
    display: block;
}
/* Logo size control */
.custom-logo-link img {
    max-height: 50px;
    width: auto;
    display: block;
}
/* Mobile menu */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile layout */

@media (max-width: 900px) {

.nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0a1628;
    flex-direction: column;
    padding: 25px;
    display: none;
}

.nav-links.active {
    display: flex;
}

.menu-toggle {
    display: block;
}

.nav-cta {
    display: none;
}

}
/* ── HERO ── */
.hero {
    min-height: 90vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse at 10% 90%, rgba(201, 168, 76, 0.07) 0%, transparent 50%);
}

.hero-globe {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 680px;
    height: 680px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    animation: rotateSlow 40s linear infinite;
}

.hero-globe::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 50%;
}

.hero-globe::after {
    content: '';
    position: absolute;
    inset: 120px;
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: 50%;
}

@keyframes rotateSlow {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px 80px 80px;
    animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.btn-ghost:hover {
    color: var(--gold);
}

.btn-ghost .arrow {
    transition: transform .2s;
}

.btn-ghost:hover .arrow {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Hero right: lead form */
.hero-form-wrap {
    position: relative;
    z-index: 2;
    padding: 80px 80px 80px 20px;
    animation: fadeUp .8s .2s ease both;
}

.lead-card {
    background: var(--white);
    border-radius: 8px;
    padding: 48px 44px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.15);
    max-width: 440px;
}

.lead-card-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.lead-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.25;
}

.lead-card p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde3ea;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--navy);
    background: #fafbfc;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
}

.form-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--slate);
    font-size: 12px;
}

.form-trust .lock {
    color: var(--gold);
    font-size: 14px;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--gold);
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.trust-bar-item .icon {
    font-size: 18px;
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.section-header h2 em {
    font-style: italic;
    color: var(--gold);
}

.section-header p {
    color: var(--slate);
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
    margin: 16px auto 0;
}

.divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 24px auto 0;
}

/* ── PLANS ── */
.plans {
    padding: 100px 80px;
    background: var(--cream);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plan-card {
    background: var(--white);
    border: 1px solid #e8ecf0;
    border-radius: 6px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card.featured {
    background: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 24px 60px rgba(10, 22, 40, 0.25);
}

.plan-card.featured::before {
    transform: scaleX(1);
}

.plan-card.featured .plan-title,
.plan-card.featured .plan-desc,
.plan-card.featured .feature-item {
    color: rgba(255, 255, 255, 0.8);
}

.plan-card.featured .plan-icon {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.plan-card.featured h3 {
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: var(--gold-pale);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.plan-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.plan-desc {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--slate);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card.featured .feature-item {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .2s;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
}

.plan-card:hover .plan-cta,
.plan-card.featured .plan-cta {
    background: var(--gold);
    color: var(--navy);
}

/* ── HOW IT WORKS ── */
.process {
    padding: 100px 80px;
    background: var(--navy);
}

.process .section-header h2 {
    color: var(--white);
}

.process .section-header p {
    color: rgba(255, 255, 255, 0.55);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.step {
    background: rgba(255, 255, 255, 0.04);
    padding: 44px 36px;
    position: relative;
    transition: background .2s;
}

.step:hover {
    background: rgba(255, 255, 255, 0.07);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.step h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    right: -1px;
    top: 50%;
    width: 2px;
    height: 40px;
    transform: translateY(-50%);
    background: var(--gold);
    opacity: 0.3;
}

/* ── WHY US ── */
.why {
    padding: 100px 80px;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-visual-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 48px 44px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-visual-card::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
}

.why-stat {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.why-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 32px;
}

.why-carriers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.carrier-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 2px;
}

.why-floating {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 6px;
    padding: 20px 24px;
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.3);
}

.why-floating .num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.why-floating .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

.why-points {}

.why-point {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #e8ecf0;
}

.why-point:first-child {
    padding-top: 0;
}

.why-point-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--gold-pale);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-point-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.why-point-text p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 100px 80px;
    background: #f2ede4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 6px;
    padding: 40px 36px;
    border: 1px solid #e8ecf0;
    transition: transform .2s, box-shadow .2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: .8;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--navy);
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
}

.author-role {
    color: var(--slate);
    font-size: 12px;
    margin-top: 2px;
}

.stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.author-avatar img{
    width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
}
/* ── RETIRE CTA ── */
.retire-section {
    padding: 100px 80px;
    background: var(--cream);
}

.retire-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.retire-card {
    background: var(--white);
    border-radius: 6px;
    padding: 24px 20px;
    border: 1px solid #e8ecf0;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
}

.retire-card:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.retire-card:hover .retire-num {
    color: var(--gold);
}

.retire-card:hover .retire-country {
    color: var(--white);
}

.retire-card:hover .retire-flag {
    filter: none;
}

.retire-flag {
    font-size: 32px;
    margin-bottom: 10px;
}

.retire-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.retire-country {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

/* ── LEAD MAGNET DOWNLOAD ── */
.lead-magnet {
    background: var(--navy);
    padding: 100px 80px;
}

.lead-magnet-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-magnet h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.lead-magnet h2 em {
    font-style: italic;
    color: var(--gold);
}

.lead-magnet p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.guide-features {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.guide-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.guide-feature .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.magnet-form {}

.magnet-card {
    background: var(--white);
    border-radius: 8px;
    padding: 44px 40px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.magnet-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.magnet-card .sub {
    color: var(--slate);
    font-size: 14px;
    margin-bottom: 28px;
}

.magnet-input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1.5px solid #dde3ea;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--navy);
    background: #fafbfc;
    transition: border-color .2s;
}

.magnet-input:focus {
    outline: none;
    border-color: var(--gold);
}

.magnet-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 16px;
}

.magnet-btn:hover {
    background: var(--gold-light);
}

.privacy-note {
    color: var(--slate);
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* ── FAQ ── */
.faq {
    padding: 100px 80px;
    background: var(--cream);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #dde3ea;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-answer {
    color: var(--slate);
    font-size: 15px;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ── CONTACT ── */
.contact {
    padding: 80px 80px;
    background: var(--navy);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.contact>.contact-inner>div>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-detail-text .label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-detail-text .val {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 44px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    transition: border-color .2s;
    resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form-card select option {
    background: var(--navy);
}

.contact-submit {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}

.contact-submit:hover {
    background: var(--gold-light);
}

/* ── FOOTER ── */
.site-footer {
    background: #070f1c;
    padding: 60px 80px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h5 {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin: 0;
}

/* ── STICKY PHONE ── */
.sticky-phone {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 200;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    animation: pulse 2.5s ease-in-out infinite;
}

.sticky-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.5);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(201, 168, 76, 0.7);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 60px 24px 40px;
    }

    .hero-form-wrap {
        padding: 0 24px 60px;
    }

    .hero-globe {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid,
    .lead-magnet-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .retire-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    section,
    .plans,
    .process,
    .why,
    .testimonials,
    .retire-section,
    .lead-magnet,
    .faq,
    .contact {
        padding-left: 24px;
        padding-right: 24px;
    }

    .trust-bar {
        padding: 20px 24px;
    }

    footer {
        padding: 48px 24px 28px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* Standard WP classes styling */
.wp-block-group {
    margin-bottom: 24px;
}

.post-card {
    background: var(--white);
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.post-title {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 12px;
}

.post-title a {
    color: var(--navy);
    text-decoration: none;
}

.post-title a:hover {
    color: var(--gold);
}

.post-meta {
    font-size: 12px;
    color: var(--slate);
    margin-bottom: 16px;
}

.post-content {
    line-height: 1.7;
    color: var(--slate);
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 24px;
}

.pagination {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.pagination .page-numbers {
    padding: 8px 16px;
    background: var(--white);
    border-radius: 4px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--gold);
    color: var(--navy);
}
/* Fix images inside post content */

.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.entry-content figure {
    max-width: 100%;
    margin: 24px 0;
}

.entry-content .wp-block-image img {
    max-width: 100%;
    height: auto;
}
/* Improve blog readability */

.entry-content p {
    margin-bottom: 22px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 36px;
    margin-bottom: 16px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 22px;
    padding-left: 22px;
}

.entry-content li {
    margin-bottom: 8px;
}
.post-navigation {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
}

.post-navigation a {
    text-decoration: none;
    color: #faf7f0;
    font-weight: 600;
}

.post-navigation a:hover {
    color: var(--gold);
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    width: 50%;
}
/* Prevent overflow from wide images */
.entry-content {
    overflow-wrap: break-word;
}
.entry-content img {
    border-radius: 6px;
    margin: 20px 0;
}
/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-header {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 48px;
}

.site-main {
    padding: 80px 0;
}

/*book shop css*/

.book-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
padding:40px;
}

.book-card{
background:white;
border-radius:4px;
padding:20px;
text-align:center;
border:1px solid rgba(201,168,76,0.2);
}

.book-card img{
width:100%;
height:auto;
margin-bottom:15px;
}

.book-card h3{
color:var(--navy);
font-size:18px;
margin-bottom:10px;
}