/* ==========================================================================
   PaSe Academic Consultants - High-End Luxury Educational Advisory Styles
   Fonts: 'EB Garamond' (Headings), 'Open Sans' (Body) & 'Roboto Condensed' (Menu/Nav)
   Colors: #001C4B (Navy), #00143A (Dark Navy), #C99B2E (Gold), #F5F0E4 (Cream)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Roboto+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
    --pase-navy: #001C4B;
    --pase-navy-dark: #00143A;
    --pase-navy-deep: #000E26;
    --pase-gold: #C99B2E;
    --pase-gold-hover: #B58724;
    --pase-gold-light: #FAF6EC;
    --pase-bg: #F5F0E4;
    --pase-bg-light: #FBF9F4;
    --pase-text-dark: #0F172A;
    --pase-text-muted: #475569;
    --pase-border: rgba(0, 28, 75, 0.1);
    --pase-gold-border: rgba(201, 155, 46, 0.35);
}

/* Global Reset & Typography */
body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--pase-text-muted);
    font-size: 16px;
    line-height: 1.75;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.section-title h2,
.slider-content h1,
.slider-content h2,
.breadcrumb-title h2,
.f-widget-title h2,
.quote-text {
    font-family: 'EB Garamond', Georgia, serif !important;
    color: var(--pase-navy);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: 54px; line-height: 1.15; }
h2 { font-size: 40px; line-height: 1.25; }
h3 { font-size: 28px; line-height: 1.3; }
h4 { font-size: 22px; line-height: 1.35; }
h5 { font-size: 18px; line-height: 1.4; }
h6 { font-size: 15px; line-height: 1.45; }

.gold-accent {
    color: var(--pase-gold) !important;
    font-style: italic !important;
}

/* Unified Section Subtitles / Kicker Tags Across All Sections */
.section-title > span {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    color: var(--pase-gold) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: 'EB Garamond', Georgia, serif !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
}

/* Eyebrow rules echo the gold lines flanking the logo tagline:
   leading rule by default, both sides when the heading is centred. */
.section-title > span::before,
.text-center .section-title > span::after,
.section-title.text-center > span::after,
.pv2-kicker::before,
.pv2-head .pv2-kicker::after {
    content: "";
    flex: 0 0 28px;
    height: 1px;
    background: var(--pase-gold);
}

.section-title h2 span {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
}

/* FIX 1: TOPBAR CLEANUP (NO SLANTED ORANGE STRIP) */
.second-header::before,
.header-two .second-header::before,
.header .second-header::before {
    display: none !important;
    content: none !important;
}

.header-top.second-header {
    background: var(--pase-navy-dark) !important;
    border-bottom: 1px solid rgba(201, 155, 46, 0.25) !important;
    padding: 9px 0 !important;
    position: relative;
    z-index: 10;
}

.header-top .header-cta ul li .text span {
    color: var(--pase-gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Open Sans', sans-serif;
}

.header-top .header-cta ul li .text strong a {
    color: #ffffff;
    font-size: 13.5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    transition: color 0.2s ease;
}
.header-top .header-cta ul li .text strong a:hover {
    color: var(--pase-gold);
}

.header-social span {
    color: #cbd5e1;
    font-size: 12.5px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}
.header-social span a {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    width: 30px;
    height: 30px;
    line-height: 28px;
    margin-left: 5px;
    transition: all 0.2s ease;
}
.header-social span a:hover {
    background: var(--pase-gold);
    color: #ffffff;
    border-color: var(--pase-gold);
}

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 11px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 155, 46, 0.35);
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.2;
    transition: all 0.25s ease;
    vertical-align: middle;
}
.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--pase-gold);
}
.lang-switcher a,
.lang-switcher .lang-btn {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 1px 3px;
    display: inline-block;
}
.lang-switcher a:hover,
.lang-switcher .lang-btn:hover {
    color: var(--pase-gold);
}
.lang-switcher a.active,
.lang-switcher .lang-btn.active {
    color: var(--pase-gold) !important;
    font-weight: 700;
}
.lang-switcher span,
.lang-switcher .lang-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    line-height: 1;
    user-select: none;
    margin: 0 1px;
}

@media (min-width: 768px) {
    .lang-switcher {
        margin-left: 20px;
        position: relative;
    }
    .lang-switcher::before {
        content: "";
        position: absolute;
        left: -11px;
        top: 3px;
        bottom: 3px;
        width: 1px;
        background: rgba(255, 255, 255, 0.18);
    }
}

/* FIX 2: NAVBAR OVERLAP RESOLUTION */
.second-menu .row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

.logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.logo img {
    height: 64px;
    max-height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.logo:hover img {
    transform: scale(1.02);
}

.main-menu {
    display: flex;
    justify-content: center;
}
.main-menu nav > ul {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    white-space: nowrap !important;
}
.main-menu ul li {
    display: inline-block !important;
    margin: 0 6px !important;
    position: relative;
}
.main-menu ul li a {
    display: block !important;
    color: var(--pase-navy) !important;
    padding: 22px 8px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    transition: color 0.2s ease !important;
}
.main-menu ul li:hover > a,
.main-menu ul li.active > a {
    color: var(--pase-gold) !important;
}

/* Submenu dropdown */
.main-menu ul li ul.submenu,
.main-menu ul li ul {
    background: #ffffff !important;
    border-top: 3px solid var(--pase-gold) !important;
    box-shadow: 0 12px 32px rgba(0, 14, 38, 0.12) !important;
    border-radius: 0 0 6px 6px !important;
    min-width: 260px !important;
}
.main-menu ul li ul li {
    display: block !important;
    margin: 0 !important;
}
.main-menu ul li ul li a {
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 12px 22px !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    letter-spacing: 0.3px !important;
    color: var(--pase-text-dark) !important;
    border-bottom: 1px solid #f1f5f9 !important;
}
.main-menu ul li ul li a:hover {
    color: var(--pase-gold) !important;
    background: var(--pase-gold-light) !important;
    padding-left: 24px !important;
}

/* Header Button */
.second-header-btn {
    white-space: nowrap !important;
}
.second-header-btn .btn {
    background: var(--pase-gold) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 11px 22px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 14px rgba(201, 155, 46, 0.28) !important;
    transition: all 0.25s ease !important;
}
.second-header-btn .btn:hover {
    background: var(--pase-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 28, 75, 0.3) !important;
}

/* Sticky Header */
.sticky-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 14, 38, 0.08) !important;
    z-index: 9999 !important;
    padding: 6px 0 !important;
}

/* FIX 3: LUXURY SPLIT HERO BANNER */
.hero-split-section {
    background: linear-gradient(135deg, #000E26 0%, #00143A 50%, #001C4B 100%);
    position: relative;
    padding: 85px 0 95px;
    overflow: hidden;
}
.hero-split-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201, 155, 46, 0.12), transparent 60%);
    pointer-events: none;
}
.hero-badge-tag {
    display: inline-block;
    color: var(--pase-gold);
    background: rgba(201, 155, 46, 0.14);
    border: 1px solid var(--pase-gold-border);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-family: 'Open Sans', sans-serif;
}
.hero-title-main {
    font-family: 'EB Garamond', Georgia, serif !important;
    font-size: 56px !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}
.hero-title-main .gold-accent {
    color: var(--pase-gold);
    font-style: italic;
}
.hero-subtitle-desc {
    color: #cbd5e1;
    font-size: 17.5px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-visual-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(201, 155, 46, 0.35);
}
.hero-visual-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}
.hero-float-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 14, 38, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid var(--pase-gold-border);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.hero-float-badge .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pase-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.hero-float-badge h5 {
    color: #ffffff !important;
    font-size: 18px !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}
.hero-float-badge p {
    color: var(--pase-gold);
    font-size: 12.5px;
    margin: 2px 0 0 !important;
    font-family: 'Open Sans', sans-serif;
}

/* FIX 4: NO CORAL COUNTERS - PURE REFINED CARDS */
.single-counter {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 10px !important;
    padding: 24px 18px !important;
    box-shadow: 0 4px 15px rgba(0, 14, 38, 0.04) !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}
.single-counter:hover {
    border-color: var(--pase-gold) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(201, 155, 46, 0.12) !important;
}
.single-counter i {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 10px !important;
    color: var(--pase-gold) !important;
    font-size: 26px !important;
    line-height: 1 !important;
}
.single-counter .count {
    font-family: 'EB Garamond', Georgia, serif !important;
    font-size: 44px !important;
    color: var(--pase-navy) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
    display: block !important;
}
.single-counter p {
    font-family: 'Open Sans', sans-serif !important;
    color: var(--pase-text-muted) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* FIX 5: SERVICE CARDS WITH HIGH-RES PHOTOS */
.service-photo-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 14, 38, 0.04);
}
.service-photo-card:hover {
    transform: translateY(-6px);
    border-color: var(--pase-gold);
    box-shadow: 0 20px 40px rgba(0, 28, 75, 0.1);
}
.service-photo-card .card-thumb {
    height: 205px;
    overflow: hidden;
    position: relative;
}
.service-photo-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-photo-card:hover .card-thumb img {
    transform: scale(1.08);
}
.service-photo-card .card-thumb .service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pase-navy);
    color: var(--pase-gold);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--pase-gold-border);
    font-family: 'Open Sans', sans-serif;
}
.service-photo-card .card-body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--pase-text-muted);
    font-size: 16px;
    line-height: 1.75;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}
.service-photo-card .card-body h3, 
.service-photo-card .card-body h4 {
    font-family: 'EB Garamond', Georgia, serif !important;
    font-size: 25px !important;
    color: var(--pase-navy) !important;
    margin-bottom: 12px !important;
    line-height: 1.25 !important;
}
.service-photo-card .card-body p {
    font-size: 14px;
    color: var(--pase-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-photo-card .card-link {
    font-family: 'Open Sans', sans-serif;
    color: var(--pase-gold);
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.service-photo-card:hover .card-link {
    gap: 10px;
    color: var(--pase-gold-hover);
}

/* Quote Card */
.pase-quote-card {
    background: var(--pase-navy);
    color: #ffffff;
    border-radius: 10px;
    padding: 35px 40px;
    border-left: 5px solid var(--pase-gold);
    box-shadow: 0 14px 30px rgba(0, 20, 58, 0.15);
}
.pase-quote-card blockquote {
    font-family: 'EB Garamond', Georgia, serif !important;
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 12px;
}
.pase-quote-card .cite-author {
    font-family: 'Open Sans', sans-serif;
    color: var(--pase-gold);
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* What We Offer Cards */
.offer-editorial-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 14, 38, 0.04);
}
.offer-editorial-card:hover {
    border-color: var(--pase-gold);
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 28, 75, 0.08);
}
.offer-editorial-card .card-photo {
    height: 180px;
    overflow: hidden;
}
.offer-editorial-card .card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.offer-editorial-card:hover .card-photo img {
    transform: scale(1.06);
}
.offer-editorial-card .card-content {
    padding: 26px 24px;
}
.offer-editorial-card .card-content h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 24px;
    color: var(--pase-navy);
    margin-bottom: 16px;
}
.offer-editorial-card .card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.offer-editorial-card .card-content ul li {
    font-size: 13.5px;
    color: var(--pase-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}
.offer-editorial-card .card-content ul li i {
    color: var(--pase-gold);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Destination Cards */
.destination-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 14, 38, 0.04);
}
.destination-card:hover {
    border-color: var(--pase-gold);
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 28, 75, 0.1);
}
.destination-card .dest-img {
    height: 170px;
    overflow: hidden;
    position: relative;
}
.destination-card .dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-card:hover .dest-img img {
    transform: scale(1.06);
}
.destination-card .dest-header {
    background: var(--pase-navy);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.destination-card .dest-header h4 {
    color: #ffffff !important;
    margin: 0;
    font-size: 22px;
}
.destination-card .dest-body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--pase-text-muted);
    font-size: 16px;
    line-height: 1.75;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}
.destination-card .dest-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.destination-card .dest-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
    font-size: 13.5px;
    color: var(--pase-text-muted);
}
.destination-card .dest-body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--pase-gold);
    font-size: 12px;
}

/* Testimonials */
.single-testimonial-pase {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 18px rgba(0, 14, 38, 0.04);
}
.single-testimonial-pase:hover {
    border-color: var(--pase-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 28, 75, 0.08);
}
.single-testimonial-pase p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 20px;
    line-height: 1.6;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 22px;
}
.single-testimonial-pase .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.single-testimonial-pase .testi-author img.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pase-gold);
}
.single-testimonial-pase .testi-author .author-info h5 {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: var(--pase-navy) !important;
}
.single-testimonial-pase .testi-author .author-info span {
    font-size: 12.5px;
    color: var(--pase-gold);
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

/* Call to Action */
.cta-area {
    background-color: var(--pase-navy-dark) !important;
}

/* Breadcrumb Area */
.breadcrumb-area {
    background-color: var(--pase-navy) !important;
    position: relative;
    padding: 85px 0 75px;
}
.breadcrumb-area::before {
    content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(135deg, rgba(0, 14, 38, 0.94) 0%, rgba(0, 28, 75, 0.88) 100%);
}

/* ==========================================================================
   MODERN LUXURY FOOTER (Unified & Redesigned)
   ========================================================================== */
.footer-bg {
    /* background-color is the fallback; the gradient must stay in background-image
       (the template's style.css sets a footer image that we override here) */
    background-color: #000E26 !important;
    background-image: linear-gradient(180deg, #000E26 0%, #07131F 55%, #04090F 100%) !important;
    position: relative;
    overflow: hidden;
    color: #94a3b8;
    border-top: 1px solid rgba(201, 155, 46, 0.32) !important;
}

/* Subtle luxury top ambient glow & hairline gold glow */
.footer-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 90%;
    height: 2px;
    background: radial-gradient(circle, rgba(201, 155, 46, 0.95) 0%, rgba(201, 155, 46, 0) 80%);
    z-index: 2;
}

.footer-bg::after {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 850px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 28, 75, 0.22) 0%, rgba(0, 14, 38, 0) 75%);
    pointer-events: none;
    z-index: 1;
}

.footer-top {
    position: relative;
    z-index: 3;
    padding-top: 85px;
    padding-bottom: 50px;
}

/* Brand Column */
.footer-brand-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
    font-family: 'Open Sans', sans-serif;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 155, 46, 0.08);
    border: 1px solid rgba(201, 155, 46, 0.3);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--pase-gold);
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Social Buttons */
.footer-social-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-modern a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.footer-social-modern a:hover {
    background: rgba(201, 155, 46, 0.15);
    border-color: var(--pase-gold);
    color: var(--pase-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 155, 46, 0.22);
}

/* Widget Headings */
.f-title-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--pase-gold);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 6px;
    line-height: 1.2;
}

.f-widget-title-modern {
    font-family: 'EB Garamond', Georgia, serif !important;
    font-size: 22px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    margin-bottom: 20px !important;
    position: relative;
    line-height: 1.3;
}

.f-widget-title-modern::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: var(--pase-gold);
    margin-top: 8px;
    border-radius: 2px;
}

/* Links */
.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 11px;
    line-height: 1.4;
}

.footer-links-modern li:last-child {
    margin-bottom: 0;
}

.footer-links-modern li a {
    color: #cbd5e1;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-links-modern li a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: var(--pase-gold);
    font-size: 11px;
    margin-right: 8px;
    opacity: 0.75;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-links-modern li a:hover {
    color: var(--pase-gold) !important;
    transform: translateX(3px);
}

.footer-links-modern li a:hover::before {
    transform: translateX(2px);
    opacity: 1;
}

/* Contact Items */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.22s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 155, 46, 0.4);
    transform: translateY(-1px);
}

.footer-contact-item .f-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(201, 155, 46, 0.12);
    border: 1px solid rgba(201, 155, 46, 0.25);
    color: var(--pase-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-item .f-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.footer-contact-item .f-info .f-label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.footer-contact-item .f-info .f-val {
    font-size: 13.5px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.35;
}

.footer-contact-item:hover .f-info .f-val {
    color: var(--pase-gold);
}

.footer-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: #94a3b8;
    font-family: 'Open Sans', sans-serif;
    margin-top: 6px;
    padding: 4px 11px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    width: fit-content;
}

.footer-status-pill .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 7px rgba(16, 185, 129, 0.7);
}

/* Copyright Strip */
.copyright-wrap {
    background: #03080e !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 20px 0 !important;
    position: relative;
    z-index: 3;
}

.copy-text p {
    color: #64748b !important;
    font-size: 13px !important;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.footer-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    background: var(--pase-gold);
    color: #000E26 !important;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    transition: all 0.22s ease;
}

.footer-cta-pill:hover {
    background: #ffffff;
    color: #000E26 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201, 155, 46, 0.3);
}

.footer-back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-left: 10px;
}

.footer-back-to-top:hover {
    background: var(--pase-gold);
    color: #000E26;
    border-color: var(--pase-gold);
}

/* Contact form: error alert, honeypot, privacy consent */
.form-alert-error {
    background: #fdf2f2;
    border: 1px solid #f5c2c2;
    color: #9b1c1c;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}
.form-alert-error[hidden] {
    display: none;
}
.form-alert-error a {
    color: inherit;
    text-decoration: underline;
}
.hp-field {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.consent-check input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--pase-gold);
}
.consent-check label {
    font-size: 13px;
    line-height: 1.55;
    color: var(--pase-text-muted);
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}
.consent-check label a {
    color: var(--pase-gold);
    text-decoration: underline;
}

/* Privacy policy page */
.legal-content h2 {
    color: var(--pase-navy);
    font-size: 28px;
    margin: 36px 0 12px;
}
.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pase-text-muted);
}
.legal-content a {
    color: var(--pase-gold);
    text-decoration: underline;
}
.legal-updated {
    font-size: 13.5px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-privacy-link {
    color: #94a3b8;
    text-decoration: underline;
    margin-left: 6px;
}
.footer-privacy-link:hover {
    color: var(--pase-gold);
}

/* Responsive & MeanMenu Styling */
.mean-container a.meanmenu-reveal {
    border: 1px solid var(--pase-gold) !important;
    color: var(--pase-gold) !important;
}
.mean-container a.meanmenu-reveal span {
    background: var(--pase-gold) !important;
}
.mean-container .mean-nav {
    background: #ffffff !important;
    border-top: 2px solid var(--pase-gold) !important;
    box-shadow: 0 10px 25px rgba(0, 14, 38, 0.1) !important;
}
.mean-container .mean-nav ul li a {
    color: var(--pase-navy) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.mean-container .mean-nav ul li a:hover {
    color: var(--pase-gold) !important;
    background: var(--pase-gold-light) !important;
}
.mean-container .mean-nav ul li a.mean-expand {
    background: rgba(201, 155, 46, 0.1) !important;
    color: var(--pase-gold) !important;
    border-color: rgba(201, 155, 46, 0.2) !important;
}

@media (max-width: 991px) {
    /* The header row is nowrap for desktop; on mobile the col-12 menu must wrap
       to its own line, otherwise the hamburger is pushed off-screen */
    .menu-area .second-menu > .row {
        flex-wrap: wrap !important;
    }
    .hero-title-main {
        font-size: 38px !important;
    }
    .hero-visual-card img {
        height: 320px;
    }
    .hero-split-section {
        padding: 50px 0 60px;
    }
    .breadcrumb-area {
        padding: 55px 0 50px;
    }
}

@media (max-width: 767px) {
    .hero-title-main {
        font-size: 32px !important;
    }
    .hero-visual-card img {
        height: 250px;
    }
    .hero-float-badge {
        position: static;
        margin-top: 15px;
    }
    .single-counter .count {
        font-size: 34px !important;
    }
    .lang-switcher {
        margin-left: 0;
        font-size: 11px;
        padding: 2px 8px;
    }
    .lang-switcher::before {
        display: none !important;
    }
}

/* ==========================================================================
   LUXURY INNER PAGE HERO SECTION (SEO OPTIMIZED & PRESTIGIOUS)
   ========================================================================== */
.page-hero-luxury {
    background: linear-gradient(135deg, #071322 0%, #0F223D 50%, #001C4B 100%);
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 155, 46, 0.25);
}

.page-hero-luxury::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 85% 20%, rgba(201, 155, 46, 0.15), transparent 55%),
                radial-gradient(circle at 10% 90%, rgba(0, 28, 75, 0.35), transparent 50%);
    pointer-events: none;
}

/* Elegant Breadcrumb */
.hero-breadcrumb-nav {
    position: relative;
    z-index: 2;
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    list-style: none;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    backdrop-filter: blur(6px);
}

.hero-breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 13px;
    background: transparent !important;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    display: none !important; /* override bootstrap/template pipe */
}

.hero-breadcrumb .breadcrumb-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: var(--pase-gold);
}

.hero-breadcrumb .breadcrumb-separator {
    color: var(--pase-gold);
    font-size: 11px;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: var(--pase-gold);
    font-weight: 700;
}

/* Hero CTA Button Group - Perfectly Symmetrical & Harmonized */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-cta-group .btn {
    height: 50px !important;
    padding: 0 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    line-height: 1 !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.hero-cta-group .btn-hero-primary {
    background: var(--pase-gold) !important;
    border: 1px solid var(--pase-gold) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(201, 155, 46, 0.32) !important;
}

.hero-cta-group .btn-hero-primary:hover {
    background: var(--pase-navy) !important;
    border-color: var(--pase-gold) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 28, 75, 0.4) !important;
}

.hero-cta-group .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    color: #ffffff !important;
    backdrop-filter: blur(4px);
}

.hero-cta-group .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: var(--pase-gold) !important;
    color: var(--pase-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25) !important;
}

.hero-cta-group .btn i {
    margin-right: 8px !important;
    margin-left: 0 !important;
    font-size: 15px !important;
}

/* ==========================================================================
   EXECUTIVE LUXURY BUTTONS (SITE-WIDE CONSISTENCY)
   ========================================================================== */
.btn-luxury-primary,
.process-action-wrap .btn,
.cta-area .btn {
    height: 50px !important;
    padding: 0 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    line-height: 1 !important;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    white-space: nowrap !important;
    background: var(--pase-gold) !important;
    border: 1px solid var(--pase-gold) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(201, 155, 46, 0.32) !important;
    position: relative !important;
}

.btn-luxury-primary::before,
.process-action-wrap .btn::before,
.cta-area .btn::before {
    display: none !important;
}

.btn-luxury-primary:hover,
.process-action-wrap .btn:hover,
.cta-area .btn:hover {
    background: var(--pase-navy) !important;
    border-color: var(--pase-gold) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 28, 75, 0.35) !important;
}

.btn-luxury-primary i,
.process-action-wrap .btn i,
.cta-area .btn i {
    margin-right: 8px !important;
    margin-left: 0 !important;
    font-size: 15px !important;
    position: static !important;
    transform: none !important;
    color: #ffffff !important;
}

/* Executive Hero Trust Badges - Spacious, Structured & Luxury */
.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-badge-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 155, 46, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.trust-badge-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--pase-gold);
    transform: translateY(-2px);
}

.trust-badge-card .badge-icon-box {
    width: 38px;
    height: 38px;
    min-width: 38px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: rgba(201, 155, 46, 0.14);
    border: 1px solid var(--pase-gold-border);
    color: var(--pase-gold);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-card .badge-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.trust-badge-card .badge-text strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.25;
    white-space: nowrap;
}

.trust-badge-card .badge-text span {
    color: #94a3b8;
    font-size: 11.5px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.25;
    margin-top: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 991px) {
    .page-hero-luxury {
        padding: 45px 0 55px;
    }
    .hero-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-breadcrumb {
        font-size: 12px;
        padding: 4px 12px;
    }
    .hero-trust-badges {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ==========================================================================
   PARENT CONCERNS & VALUE CARDS (SECTION 1)
   ========================================================================== */
.why-parents-section {
    background: #ffffff;
    position: relative;
}

.parent-concern-card {
    background: #ffffff;
    border: 1px solid rgba(0, 28, 75, 0.1);
    border-radius: 12px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 20, 58, 0.04);
    position: relative;
    overflow: hidden;
}

.parent-concern-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--pase-gold);
    transition: height 0.3s ease;
}

.parent-concern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 20, 58, 0.09);
    border-color: rgba(201, 155, 46, 0.4);
}

.parent-concern-card:hover::before {
    height: 100%;
}

.parent-concern-card .concern-icon-wrap {
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 12px;
    background: var(--pase-gold-light);
    color: var(--pase-gold);
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--pase-gold-border);
    transition: all 0.3s ease;
}

.parent-concern-card:hover .concern-icon-wrap {
    background: var(--pase-gold);
    color: #ffffff;
}

.parent-concern-card h4 {
    color: var(--pase-navy);
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.parent-concern-card p {
    color: var(--pase-text-muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   MODERN 4-STAGE PROCESS SECTION (SECTION 2)
   ========================================================================== */
.process-luxury-section {
    background: var(--pase-bg-light);
    position: relative;
}

.modern-process-card {
    background: #ffffff;
    border: 1px solid rgba(201, 155, 46, 0.22);
    border-top: 3px solid var(--pase-gold);
    border-radius: 12px;
    padding: 28px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 26px rgba(0, 20, 58, 0.05);
    position: relative;
}

.modern-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 20, 58, 0.12);
    border-color: var(--pase-gold);
}

.process-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 28, 75, 0.08);
}

.process-step-header .step-num {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--pase-gold);
    line-height: 1;
}

.process-step-header .step-badge {
    background: rgba(201, 155, 46, 0.12);
    color: var(--pase-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--pase-gold-border);
    font-family: 'Open Sans', sans-serif;
}

.modern-process-card .process-icon-wrap {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 10px;
    background: #000E26;
    color: var(--pase-gold);
    font-size: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.modern-process-card:hover .process-icon-wrap {
    background: var(--pase-gold);
    color: #ffffff;
}

.modern-process-card h4 {
    color: var(--pase-navy);
    font-size: 18.5px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
    font-family: 'Open Sans', sans-serif !important;
}

.modern-process-card .process-desc {
    color: var(--pase-text-muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

.process-deliverables {
    list-style: none;
    padding: 14px 0 0 0;
    margin: 0;
    border-top: 1px dashed rgba(0, 28, 75, 0.12);
}

.process-deliverables li {
    font-size: 12.5px;
    color: var(--pase-navy);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 7px;
    display: flex;
    align-items: flex-start;
}

.process-deliverables li:last-child {
    margin-bottom: 0;
}

.process-deliverables li i {
    color: var(--pase-gold);
    font-size: 12px;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   COMMITMENTS SECTION (EXECUTIVE SPLIT REDESIGN)
   ========================================================================== */
.commitments-section {
    background: #ffffff;
    position: relative;
    padding: 95px 0 90px;
}

/* Left Column: Visual Wrap & Floating Badge */
.commitment-visual-wrap {
    position: relative;
    padding-bottom: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 14, 38, 0.12);
    border: 1.5px solid rgba(201, 155, 46, 0.25);
    background: var(--pase-navy);
    height: 100%;
    min-height: 520px;
}

.commitment-img-box img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.commitment-visual-wrap:hover .commitment-img-box img {
    transform: scale(1.025);
}

.commitment-floating-badge {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 1.5px solid rgba(201, 155, 46, 0.35);
    border-radius: 12px;
    padding: 15px 18px;
    box-shadow: 0 14px 35px rgba(0, 14, 38, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.commitment-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pase-navy) 0%, #001C4B 100%);
    color: var(--pase-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 155, 46, 0.4);
}

.commitment-badge-icon i {
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    color: var(--pase-gold) !important;
}

.commitment-badge-text strong {
    display: block;
    color: var(--pase-navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.commitment-badge-text span {
    display: block;
    color: var(--pase-text-muted);
    font-size: 12px;
    line-height: 1.35;
    margin-top: 2px;
}

/* Right Column: Content & Structured List */
.commitment-content-wrap {
    padding-left: 15px;
}

.commitment-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.commitment-row-card {
    background: #ffffff;
    border: 1px solid rgba(0, 28, 75, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 20, 58, 0.02);
}

.commitment-row-card:hover {
    transform: translateX(6px);
    border-color: rgba(201, 155, 46, 0.4);
    box-shadow: 0 8px 22px rgba(0, 20, 58, 0.06);
    background: #fdfbf7;
}

.commitment-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pase-gold-light);
    border: 1px solid var(--pase-gold-border);
    color: var(--pase-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
    position: relative;
}

.commitment-icon-circle i {
    position: static !important;
    right: auto !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    color: var(--pase-gold) !important;
    font-size: 19px !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.commitment-row-card:hover .commitment-icon-circle {
    background: var(--pase-gold);
    border-color: var(--pase-gold);
}

.commitment-row-card:hover .commitment-icon-circle i {
    color: #ffffff !important;
}

.commitment-row-content {
    flex: 1;
}

.commitment-row-content h4 {
    color: var(--pase-navy);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.commitment-row-content p {
    color: var(--pase-text-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.commitment-footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 28, 75, 0.08);
}

.commitment-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(201, 155, 46, 0.08);
    border: 1px solid rgba(201, 155, 46, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--pase-navy);
}

.commitment-pill i {
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    color: var(--pase-gold) !important;
    font-size: 13px !important;
}

@media (max-width: 991px) {
    .commitment-visual-wrap {
        margin-bottom: 45px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .commitment-img-box,
    .commitment-img-box img {
        min-height: 400px;
        height: 400px;
    }
    .commitment-content-wrap {
        padding-left: 0;
    }
    .commitment-row-card:hover {
        transform: translateY(-3px);
    }
}

/* ==========================================================================
   CORE VALUES SECTION (ABOUT PAGE — EXECUTIVE PILLAR CARDS)
   ========================================================================== */
.core-values-section {
    background: var(--pase-bg-light);
    padding: 95px 0 85px;
    position: relative;
}

.value-pillar-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 34px 28px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 28, 75, 0.07);
    box-shadow: 0 4px 18px rgba(0, 20, 58, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 20, 58, 0.1);
    border-color: rgba(201, 155, 46, 0.3);
}

.pillar-number {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    color: rgba(201, 155, 46, 0.12);
    line-height: 1;
    margin-bottom: -8px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.value-pillar-card:hover .pillar-number {
    color: rgba(201, 155, 46, 0.22);
}

.pillar-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pase-navy) 0%, #001C4B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(201, 155, 46, 0.35);
}

.pillar-icon-wrap i {
    color: var(--pase-gold) !important;
    font-size: 20px !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    line-height: 1 !important;
}

.value-pillar-card:hover .pillar-icon-wrap {
    background: var(--pase-gold);
    border-color: var(--pase-gold);
    transform: scale(1.08);
}

.value-pillar-card:hover .pillar-icon-wrap i {
    color: #ffffff !important;
}

.value-pillar-card h4 {
    color: var(--pase-navy);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.value-pillar-card p {
    color: var(--pase-text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 18px 0;
    flex: 1;
}

.pillar-accent-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--pase-gold), rgba(201, 155, 46, 0.3));
    border-radius: 3px;
    margin: auto auto 0;
    transition: width 0.3s ease;
}

.value-pillar-card:hover .pillar-accent-line {
    width: 60px;
}

@media (max-width: 991px) {
    .core-values-section {
        padding: 70px 0 60px;
    }
    .value-pillar-card {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   ABOUT FOUNDER SECTION (BREAKOUT PHOTO + HORIZONTAL QUOTE BAND)
   ========================================================================== */
.about-founder-section {
    padding: 90px 0 80px;
    background: #ffffff;
    position: relative;
}

/* Right Column: Breakout Photo */
.founder-photo-wrap {
    position: relative;
    padding-left: 30px;
    padding-bottom: 28px;
}

.founder-photo-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0, 14, 38, 0.14);
    border: 2px solid rgba(201, 155, 46, 0.25);
    background: var(--pase-navy);
}

.founder-photo-frame::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--pase-gold);
    border-left: 3px solid var(--pase-gold);
    border-radius: 16px 0 0 0;
    z-index: 2;
    pointer-events: none;
}

.founder-photo-frame::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--pase-gold);
    border-right: 3px solid var(--pase-gold);
    border-radius: 0 0 16px 0;
    z-index: 2;
    pointer-events: none;
}

.founder-photo-frame img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.founder-photo-wrap:hover .founder-photo-frame img {
    transform: scale(1.02);
}

/* Floating Name Badge */
.founder-name-badge {
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 20px;
    max-width: 320px;
    background: #ffffff;
    border: 1.5px solid rgba(201, 155, 46, 0.35);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 12px 30px rgba(0, 14, 38, 0.14);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.founder-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pase-navy) 0%, #001C4B 100%);
    color: var(--pase-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 155, 46, 0.4);
}

.founder-badge-icon i {
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    color: var(--pase-gold) !important;
}

.founder-badge-text strong {
    display: block;
    color: var(--pase-navy);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.founder-badge-text span {
    display: block;
    color: var(--pase-text-muted);
    font-size: 12.5px;
    line-height: 1.35;
    margin-top: 2px;
}

/* Full-Width Horizontal Quote Band */
.founder-quote-band {
    background: linear-gradient(135deg, #000E26 0%, #00143A 60%, #001C4B 100%);
    border-radius: 14px;
    padding: 40px 45px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 155, 46, 0.2);
    box-shadow: 0 14px 35px rgba(0, 14, 38, 0.12);
}

.founder-quote-band::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 155, 46, 0.1), transparent 70%);
    pointer-events: none;
}

.quote-icon-left {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201, 155, 46, 0.12);
    border: 1px solid rgba(201, 155, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon-left i {
    color: var(--pase-gold) !important;
    font-size: 20px !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
}

.quote-band-content {
    flex: 1;
}

.quote-band-content blockquote {
    font-family: 'EB Garamond', Georgia, serif !important;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.55;
    color: #ffffff;
    margin: 0 0 14px 0;
    padding: 0;
    border: none;
}

.quote-band-author {
    font-family: 'Open Sans', sans-serif;
    color: var(--pase-gold);
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 991px) {
    .founder-photo-wrap {
        padding-left: 0;
        max-width: 420px;
        margin: 0 auto 40px;
    }
    .founder-photo-frame img {
        max-height: 420px;
    }
    .founder-name-badge {
        left: 20px;
    }
    .founder-quote-band {
        padding: 30px 28px;
        flex-direction: column;
        gap: 18px;
    }
    .quote-band-content blockquote {
        font-size: 20px;
    }
}

/* ==========================================================================
   UNIVERSITY CONSULTING PAGE SPECIFIC STYLES
   ========================================================================== */

/* Advisory Pillar Cards */
.uni-pillar-card {
    background: #ffffff;
    border: 1px solid rgba(0, 28, 75, 0.09);
    border-radius: 14px;
    padding: 32px 26px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 18px rgba(0, 20, 58, 0.03);
    position: relative;
    overflow: hidden;
}

.uni-pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pase-gold), rgba(201, 155, 46, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uni-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 155, 46, 0.45);
    box-shadow: 0 16px 36px rgba(0, 20, 58, 0.09);
}

.uni-pillar-card:hover::before {
    opacity: 1;
}

.uni-pillar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.uni-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--pase-gold-light);
    border: 1px solid var(--pase-gold-border);
    color: var(--pase-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.uni-pillar-icon i {
    position: static !important;
    transform: none !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.uni-pillar-card:hover .uni-pillar-icon {
    background: var(--pase-gold);
    color: #ffffff;
    border-color: var(--pase-gold);
}

.uni-pillar-card:hover .uni-pillar-icon i {
    color: #ffffff !important;
}

.uni-pillar-badge {
    background: rgba(0, 28, 75, 0.05);
    color: var(--pase-navy);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 28, 75, 0.1);
    font-family: 'Open Sans', sans-serif;
}

.uni-pillar-card h4 {
    color: var(--pase-navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
    font-family: 'Open Sans', sans-serif !important;
}

.uni-pillar-desc {
    color: var(--pase-text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.uni-pillar-deliverables {
    list-style: none;
    padding: 14px 0 0 0;
    margin: 0;
    border-top: 1px dashed rgba(0, 28, 75, 0.12);
}

.uni-pillar-deliverables li {
    font-size: 12.5px;
    color: var(--pase-navy);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 7px;
    display: flex;
    align-items: flex-start;
}

.uni-pillar-deliverables li:last-child {
    margin-bottom: 0;
}

.uni-pillar-deliverables li i {
    color: var(--pase-gold);
    font-size: 12px;
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Modern European University Destination Cards */
.uni-dest-card {
    background: #ffffff;
    border: 1px solid rgba(0, 28, 75, 0.08);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 18px rgba(0, 20, 58, 0.04);
}

.uni-dest-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 155, 46, 0.45);
    box-shadow: 0 16px 36px rgba(0, 20, 58, 0.1);
}

.uni-dest-img-wrap {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: var(--pase-navy);
}

.uni-dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.uni-dest-card:hover .uni-dest-img-wrap img {
    transform: scale(1.06);
}

.uni-dest-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 14, 38, 0.82);
    backdrop-filter: blur(6px);
    color: var(--pase-gold);
    border: 1px solid rgba(201, 155, 46, 0.35);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    z-index: 2;
}

.uni-dest-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.uni-dest-body h4 {
    color: var(--pase-navy);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uni-dest-body .country-flag {
    font-size: 22px;
}

.uni-dest-sub {
    color: var(--pase-gold);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
}

.uni-dest-body p {
    color: var(--pase-text-muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 16px;
    flex-grow: 1;
}

.uni-dest-features {
    list-style: none;
    padding: 12px 0 0 0;
    margin: 0 0 16px 0;
    border-top: 1px dashed rgba(0, 28, 75, 0.1);
}

.uni-dest-features li {
    font-size: 12.5px;
    color: var(--pase-navy);
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.uni-dest-features li:last-child {
    margin-bottom: 0;
}

.uni-dest-features li i {
    color: var(--pase-gold);
    font-size: 11.5px;
    margin-right: 8px;
}

.uni-dest-pill-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 28, 75, 0.06);
}

.uni-dest-pill {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--pase-bg-light);
    color: var(--pase-text-muted);
    font-weight: 600;
    border: 1px solid rgba(0, 28, 75, 0.08);
}

/* ==========================================================================
   DESTINATIONS PAGE SPECIFIC STYLES
   ========================================================================== */

/* Destination Metric Badges Bar */
.dest-metrics-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: var(--pase-bg-light);
    border: 1px solid rgba(0, 28, 75, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 14px 0 16px;
}

.dest-metric-item {
    display: flex;
    flex-direction: column;
}

.dest-metric-item span.label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--pase-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.2;
}

.dest-metric-item span.value {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--pase-navy);
    font-family: 'Open Sans', sans-serif;
    margin-top: 2px;
    line-height: 1.3;
}

@media (max-width: 575px) {
    .dest-metrics-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Luxury Destination Comparison Table */
.dest-table-wrap {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 28, 75, 0.1);
    box-shadow: 0 10px 30px rgba(0, 14, 38, 0.06);
}

.dest-comparison-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.dest-comparison-table thead {
    background: linear-gradient(135deg, var(--pase-navy-dark) 0%, var(--pase-navy) 100%);
    color: #ffffff;
}

.dest-comparison-table thead th {
    padding: 18px 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    color: #ffffff;
    vertical-align: middle;
}

.dest-comparison-table tbody tr {
    border-bottom: 1px solid rgba(0, 28, 75, 0.07);
    transition: background-color 0.2s ease;
}

.dest-comparison-table tbody tr:hover {
    background-color: var(--pase-gold-light);
}

.dest-comparison-table tbody td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--pase-text-muted);
    vertical-align: middle;
    border: none;
}

.dest-comparison-table td.country-cell {
    font-weight: 700;
    color: var(--pase-navy);
    font-size: 15px;
    white-space: nowrap;
}

.dest-comparison-table td.country-cell span.flag {
    margin-right: 8px;
    font-size: 18px;
}

.dest-comparison-table td.highlight-cell {
    font-weight: 600;
    color: var(--pase-navy);
}

.dest-comparison-table span.badge-pill-fee {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11.5px;
    font-weight: 700;
    background: rgba(201, 155, 46, 0.12);
    color: var(--pase-gold);
    border: 1px solid var(--pase-gold-border);
}

/* ==========================================================================
   PSYCHOMETRIC ASSESSMENT PAGE SPECIFIC STYLES
   ========================================================================== */

.psych-feature-box {
    background: #ffffff;
    border: 1px solid rgba(0, 28, 75, 0.09);
    border-radius: 14px;
    padding: 30px 26px;
    height: 100%;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 20, 58, 0.03);
}

.psych-feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 155, 46, 0.45);
    box-shadow: 0 14px 32px rgba(0, 20, 58, 0.08);
}

.psych-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--pase-gold-light);
    border: 1px solid var(--pase-gold-border);
    color: var(--pase-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.psych-feature-box:hover .psych-feature-icon {
    background: var(--pase-gold);
    color: #ffffff;
    border-color: var(--pase-gold);
}

.psych-feature-box:hover .psych-feature-icon i {
    color: #ffffff !important;
}

.psych-feature-text h4 {
    color: var(--pase-navy);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Open Sans', sans-serif !important;
}

.psych-feature-text p {
    color: var(--pase-text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
}

.psych-package-card {
    background: linear-gradient(135deg, #000E26 0%, #00143A 60%, #001C4B 100%);
    border-radius: 16px;
    padding: 45px 40px;
    border: 1px solid rgba(201, 155, 46, 0.35);
    box-shadow: 0 20px 45px rgba(0, 14, 38, 0.16);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.psych-package-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 155, 46, 0.12), transparent 70%);
    pointer-events: none;
}

.psych-package-card h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
}

.psych-package-card p.lead-text {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.psych-package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.psych-package-list li {
    font-size: 14.5px;
    color: #f1f5f9;
    display: flex;
    align-items: center;
}

.psych-package-list li i {
    color: var(--pase-gold);
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .psych-package-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .psych-package-card {
        padding: 30px 22px;
    }
}

/* Psychometric Package CTA Button */
.psych-package-card .btn-package-cta,
.psych-package-card .btn-luxury-primary {
    height: 52px !important;
    padding: 0 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    font-family: 'Roboto Condensed', sans-serif !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    background: var(--pase-gold) !important;
    border: 1.5px solid var(--pase-gold) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 22px rgba(201, 155, 46, 0.42) !important;
    transition: all 0.28s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    margin-top: 10px !important;
    position: relative !important;
    overflow: hidden !important;
}

.psych-package-card .btn-package-cta::before,
.psych-package-card .btn-luxury-primary::before {
    display: none !important;
}

.psych-package-card .btn-package-cta:hover,
.psych-package-card .btn-luxury-primary:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--pase-navy) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35) !important;
}

.psych-package-card .btn-package-cta i,
.psych-package-card .btn-luxury-primary i {
    color: inherit !important;
    font-size: 16px !important;
    margin-right: 10px !important;
    position: static !important;
    transform: none !important;
}




/* ==========================================================================
   SHARED SECTION HELPERS (replace repeated inline styles)
   ========================================================================== */
.section-title .pase-h2 {
    color: var(--pase-navy);
    font-size: 40px;
    line-height: 1.2;
    margin-top: 10px;
}
.section-title .pase-h2-light {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.25;
}
.section-title .pase-lead {
    max-width: 720px;
    margin: 15px auto 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--pase-text-muted);
}
.section-title .pase-lead-light {
    color: #cbd5e1;
    font-size: 17px;
    margin: 10px 0 0;
}
.pase-section-alt {
    background: var(--pase-bg-light);
    border-top: 1px solid rgba(201, 155, 46, 0.18);
    border-bottom: 1px solid rgba(201, 155, 46, 0.18);
}
.pase-cta-dark {
    background: var(--pase-navy-dark);
}
@media (max-width: 767px) {
    .section-title .pase-h2,
    .section-title .pase-h2-light {
        font-size: 30px;
    }
}

/* Glass panel inside dark package cards */
.pase-badge-on-dark {
    background: rgba(201, 155, 46, 0.15);
    border-color: rgba(201, 155, 46, 0.35);
}
.pase-glass-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(201, 155, 46, 0.35);
    border-radius: 14px;
    padding: 32px 26px;
    backdrop-filter: blur(8px);
}
.pase-glass-panel h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}
.pase-glass-panel p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.pase-glass-icon {
    font-size: 54px;
    color: var(--pase-gold);
    margin-bottom: 18px;
    display: inline-block;
}
.pase-pill-row {
    gap: 8px;
}
.pase-pill-row .uni-dest-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* FAQ accordion (native <details>, no JS) */
.pase-faq details {
    background: #ffffff;
    border: 1px solid var(--pase-border);
    border-radius: 10px;
    margin-bottom: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pase-faq details[open] {
    border-color: var(--pase-gold-border);
    box-shadow: 0 10px 28px rgba(0, 14, 38, 0.06);
}
.pase-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    position: relative;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--pase-navy);
    line-height: 1.35;
}
.pase-faq summary::-webkit-details-marker {
    display: none;
}
.pase-faq summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--pase-gold-border);
    color: var(--pase-gold);
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.pase-faq details[open] summary::after {
    content: "\2212";
    background: var(--pase-gold);
    color: #ffffff;
}
.pase-faq summary:focus-visible {
    outline: 2px solid var(--pase-gold);
    outline-offset: 2px;
    border-radius: 10px;
}
.pase-faq details p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--pase-text-muted);
}
.pase-faq details p a {
    color: var(--pase-gold);
    text-decoration: underline;
}
