/* 
   ============================================================
   MANDALA PILGRIMAGE TOUR - PREMIUM CUSTOM DESIGN SYSTEM (LIGHT THEME)
   Theme: Bright, Pure Spiritual Space (Pure White, Cream, Rich Gold, Charcoal)
   Fonts: Cinzel (Headers), Cormorant Garamond (Serif storytelling)
   ============================================================
*/

:root {
    --color-bg-light: #faf8f5;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #ffffff;
    --color-gold-primary: #b89343;
    --color-gold-light: #d4af37;
    --color-gold-dark: #8c6b23;
    --color-text-dark: #1e1e24;
    --color-text-muted: #5a5c66;
    --color-accent-amber: #d35400;
    --font-header: 'Cormorant Garamond', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-gold: 1px solid rgba(184, 147, 67, 0.25);
    --border-gold-hover: 1px solid rgba(184, 147, 67, 0.6);
    --glow-gold: 0 4px 20px rgba(184, 147, 67, 0.06);
    --glow-gold-strong: 0 10px 30px rgba(184, 147, 67, 0.12);
}

/* Global Container definition with !important to prevent framework overrides */
.premium-tour-wrapper .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
    position: relative;
    z-index: 2;
}

/* Global Reset & Body styling for Mandala Page */
.premium-tour-wrapper {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Typography elements */
.premium-tour-wrapper h1, 
.premium-tour-wrapper h2, 
.premium-tour-wrapper h3, 
.premium-tour-wrapper h4 {
    font-family: var(--font-header);
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
}

.premium-tour-wrapper p,
.premium-tour-wrapper .step-story,
.premium-tour-wrapper .itin-list,
.premium-tour-wrapper .exp-detail {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

/* Golden underline heading */
.gold-underline {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
}

.subtitle-serif {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: var(--color-gold-primary);
    margin-bottom: 40px;
}

/* Background Mandala Ornaments */
.mandala-bg-ornament {
    position: absolute;
    width: 600px;
    height: 600px;
    background-image: url('../images/mandala/ornament.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    animation: slowRotate 80s linear infinite;
}

@keyframes slowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Dividers */
.mandala-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    opacity: 0.8;
}

.mandala-divider img {
    height: 40px;
    object-fit: contain;
    filter: sepia(1) saturate(1.5) hue-rotate(5deg);
}

/* Co-branding logos */
.co-logos {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}
.co-logos img {
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}
.co-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.15);
}

/* Premium Buttons */
.btn-luxury {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-primary) 50%, var(--color-gold-dark) 100%);
    color: #ffffff;
    font-family: var(--font-header);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 16px 36px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(184, 147, 67, 0.25);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.1em;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 147, 67, 0.45);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-primary);
    border: 1px solid var(--color-gold-primary);
    font-family: var(--font-header);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.1em;
}

.btn-outline:hover {
    background: rgba(184, 147, 67, 0.05);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0.15) 0%, rgba(250, 248, 245, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-subtitle-top {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--color-gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--color-text-dark);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--color-text-muted);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-gold-primary);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.scroll-down:hover {
    opacity: 1;
    transform: translate(-50%, 5px);
}

.scroll-down span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

/* ============================================================
   2. FOUR TRANSFORMATION STAGES
   ============================================================ */
.journey-step {
    padding: 80px 0;
    position: relative;
}

/* Correct even stage child alignment using nth-of-type (since we have dividers) */
.journey-step:nth-of-type(even) .step-wrapper {
    flex-direction: row-reverse;
}

.step-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.step-content {
    flex: 1;
    max-width: 540px;
    z-index: 2;
}

.step-num {
    font-family: var(--font-header);
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(184, 147, 67, 0.12);
    font-weight: 900;
    margin-bottom: -30px;
    position: relative;
    left: 0;
    z-index: 1;
}

.step-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
    position: relative;
    z-index: 2;
}

.step-desc {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-gold-primary);
    margin-bottom: 25px;
}

.step-story {
    color: var(--color-text-muted);
    margin-bottom: 35px;
    text-align: justify;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feat-icon-container {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(184, 147, 67, 0.08);
    border: 1px solid rgba(184, 147, 67, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
}

.feat-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.step-img-box {
    flex: 1;
    max-width: 560px;
    position: relative;
}

.step-img-box::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(184, 147, 67, 0.3);
    border-radius: 4px;
    pointer-events: none;
    z-index: 0;
    transition: var(--transition-smooth);
}

.step-img-box:hover::before {
    transform: scale(1.02);
    border-color: var(--color-gold-primary);
}

.step-img-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

/* Custom background banner for stage 4 */
.step-04-banner {
    background-size: cover;
    background-position: center;
    position: relative;
}

.step-04-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(250, 248, 245, 0.98) 40%, rgba(250, 248, 245, 0.8) 100%);
    z-index: 1;
}

.step-04-banner .step-wrapper {
    position: relative;
    z-index: 2;
}

/* ============================================================
   3. SUITABLE FOR / WHAT YOU RECEIVE
   ============================================================ */
.suitable {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #f7f3eb 50%, #faf8f5 100%);
    position: relative;
}

.suitable-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.suit-card {
    background: var(--color-bg-card);
    border: var(--border-gold);
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-gold);
}

.suit-card:hover {
    transform: translateY(-8px);
    background: var(--color-bg-card-hover);
    border-color: var(--color-gold-primary);
    box-shadow: var(--glow-gold-strong);
}

.suit-icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184,147,67,0.15) 0%, rgba(184,147,67,0.02) 100%);
    border: 1px solid var(--color-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-gold-primary);
    transition: var(--transition-smooth);
}

.suit-card:hover .suit-icon-circle {
    transform: rotateY(180deg);
    background: var(--color-gold-primary);
    color: #ffffff;
}

.suit-text {
    font-family: var(--font-header);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.suit-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ============================================================
   4. HIGHLIGHTS & TIMELINE
   ============================================================ */
.timeline-section {
    padding: 100px 0;
    position: relative;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 80px;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
    z-index: 1;
}

.timeline-node {
    text-align: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.timeline-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(184, 147, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-gold-primary);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.timeline-node:hover .timeline-icon-box,
.timeline-node.active .timeline-icon-box {
    background: var(--color-gold-primary);
    color: #ffffff;
    border-color: var(--color-gold-light);
    box-shadow: var(--glow-gold-strong);
    transform: scale(1.1);
}

.timeline-place {
    font-family: var(--font-header);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.timeline-desc {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--color-text-muted);
    padding: 0 10px;
    line-height: 1.5;
}

/* ============================================================
   5. INTERACTIVE ACCORDION ITINERARY
   ============================================================ */
.itinerary-detail {
    padding: 100px 0;
    background: #faf8f5;
}

.itin-accordion {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.itin-group {
    border: 1px solid rgba(184, 147, 67, 0.2);
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.itin-group.active {
    border-color: var(--color-gold-primary);
    box-shadow: var(--glow-gold-strong);
}

.itin-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}

.itin-trigger-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.itin-badge {
    font-family: var(--font-header);
    font-size: 1.1rem;
    color: #ffffff;
    background: var(--color-gold-primary);
    font-weight: 800;
    width: 75px;
    height: 38px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.itin-group.active .itin-badge {
    background: var(--color-gold-dark);
}

.itin-title-text {
    font-family: var(--font-header);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.itin-trigger-icon {
    color: var(--color-gold-primary);
    transition: transform 0.4s ease;
}

.itin-group.active .itin-trigger-icon {
    transform: rotate(180deg);
}

.itin-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.itin-body {
    padding: 0 30px 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.itin-body-content {
    flex: 3;
}

.itin-body-image {
    flex: 2;
}

.itin-body-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(184, 147, 67, 0.3);
}

.itin-body-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.itin-body-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.itin-body-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold-primary);
}

.itin-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================================
   6. 7 EXPERIENCE CARDS
   ============================================================ */
.experiences {
    padding: 100px 0;
    position: relative;
}

.mandala-exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.exp-card {
    background: #ffffff;
    border: var(--border-gold);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.exp-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold-primary);
    box-shadow: var(--glow-gold-strong);
}

.exp-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-card:hover img {
    transform: scale(1.05);
}

.exp-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exp-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold-primary);
    margin-bottom: 12px;
}

.exp-title {
    font-family: var(--font-header);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.exp-detail {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Specific layout adjustments for 7 experiences in 4-column grid */
@media (min-width: 1024px) {
    .mandala-exp-grid > .exp-card:nth-child(n+5) {
        grid-column: span 1;
    }
}

/* ============================================================
   7. DETAIL TOUR INFO
   ============================================================ */
.tour-info {
    padding: 100px 0;
    background: #f7f3eb;
}

.info-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.info-content {
    flex: 1.2;
}

.info-img-box {
    flex: 0.8;
}

.info-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 6px;
    border: var(--border-gold);
    box-shadow: 0 10px 30px rgba(184, 147, 67, 0.15);
}

.info-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 147, 67, 0.1);
    border: 1px solid rgba(184, 147, 67, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    flex-shrink: 0;
}

.info-title {
    font-family: var(--font-header);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.info-val {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ============================================================
   8. CALL TO ACTION BANNER
   ============================================================ */
.cta-section {
    padding: 140px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.95) 0%, rgba(250, 248, 245, 0.7) 50%, rgba(250, 248, 245, 0.95) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-quote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-quote-author {
    display: block;
    font-family: var(--font-header);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold-primary);
    margin-top: 15px;
    font-style: normal;
}

/* ============================================================
   9. MODAL & BOOKING FORM
   ============================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 22, 0.4);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
    background: #ffffff;
    border: var(--border-gold-hover);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlide {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--color-gold-primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 40px 40px 20px;
}

.modal-header-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(184, 147, 67, 0.08);
    border: 1px solid var(--color-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    margin: 0 auto 20px;
}

.modal-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.modal-header p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin: 0;
}

.modal-body {
    padding: 0 40px 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold-primary);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: #fafafc;
    border: 1px solid rgba(184, 147, 67, 0.3);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 10px rgba(184, 147, 67, 0.1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.dynamic-field-group {
    display: none;
}

.dynamic-field-group.active {
    display: block;
}

.modal-footer {
    padding: 0 40px 40px;
    text-align: center;
}

.modal-footer .btn-luxury {
    width: 100%;
    justify-content: center;
}

.modal-success-screen {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.modal-success-screen.active {
    display: block;
}

.success-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ecc71;
    margin: 0 auto 25px;
}

.modal-success-screen h4 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.modal-success-screen p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
}

/* ============================================================
   RESPONSIVE LAYOUTS
   ============================================================ */
@media (max-width: 1024px) {
    .step-wrapper {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .step-img-box {
        width: 100%;
    }
    
    .step-img-box img {
        height: 350px;
    }
    
    .suitable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .mandala-exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-wrapper {
        flex-direction: column;
    }
    
    .info-img-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .co-logos {
        gap: 20px;
    }
    .co-logos img {
        max-height: 80px;
    }
    .co-divider {
        height: 50px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .suitable-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
    }
    
    .mandala-exp-grid {
        grid-template-columns: 1fr;
    }
    
    .itin-body {
        flex-direction: column;
    }
    
    .itin-body-image {
        width: 100%;
    }
}
