/* ==========================================================================
   WAVES OF ANDAMAN CORE UI EXTENSION SYSTEM
   ========================================================================== */

:root {
    --neon-teal: #00b4d8;
    --deep-ocean: #0077b6;
    --dark-velvet: #03045e;
    --sunset-glow: #ffb703;
    --coral-red: #ff4d6d;
    --glass-white: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 15px 35px rgba(3, 4, 94, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2b2d42;
    background: #f4f7f6;
    overflow-x: hidden;
}

/* --- HERO HEADER SECTION --- */
.woa-adv-budget-hero {
    position: relative;
    background:  url('../../image/family13.jpg') no-repeat center/cover;
    padding: 50px 20px 130px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.woa-adv-budget-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, #f4f7f6, transparent);
}

.woa-adv-budget-hero-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.woa-adv-budget-floating-tag {
    background: linear-gradient(45deg, var(--sunset-glow), #ff9f1c);
    color: #03045e;
    padding: 8px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
    animation: pulse-glow 2s infinite;
}

.woa-adv-budget-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.woa-adv-budget-hero h1 span {
    color: var(--neon-teal);
}

.woa-adv-budget-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.woa-adv-budget-quickstrip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 750px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.woa-adv-budget-strip-item {
    font-size: 1rem;
    font-weight: 500;
}

.woa-adv-budget-strip-item strong {
    display: block;
    color: var(--sunset-glow);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

/* --- SPLIT GRID SYSTEM --- */
.woa-adv-budget-wrapper {
    max-width: 1250px;
    margin: -40px auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 5;
}

/* --- LEFT BODY WORKSPACE --- */
.woa-adv-budget-main {
    background: transparent;
}

.woa-adv-budget-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    margin-bottom: 35px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 119, 182, 0.05);
}

.woa-adv-budget-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(3, 4, 94, 0.12);
}

/* Typography Heading Styles */
.woa-heading-style {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-velvet);
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.woa-heading-style::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50px;
    height: 4px;
    background: var(--neon-teal);
    border-radius: 2px;
}

/* Timeline Itinerary Components */
.woa-adv-budget-timeline {
    position: relative;
    padding-left: 20px;
}

.woa-adv-budget-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(to bottom, var(--neon-teal), var(--deep-ocean));
    border-radius: 10px;
}

.woa-adv-budget-step {
    position: relative;
    margin-bottom: 30px;
    padding-left: 25px;
}

.woa-adv-budget-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid var(--deep-ocean);
    border-radius: 50px;
    z-index: 2;
    transition: var(--transition-smooth);
}

.woa-adv-budget-step:hover::before {
    background: var(--sunset-glow);
    transform: scale(1.3);
}

.woa-adv-budget-step-badge {
    display: inline-block;
    background: #e0f2fe;
    color: var(--deep-ocean);
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.woa-adv-budget-step h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark-velvet);
    margin: 0 0 12px;
}

.woa-adv-budget-step p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #4a5568;
    margin: 0;
}

/* --- FULL-WIDTH INCLUSIONS/EXCLUSIONS SECTION --- */
.woa-fullwidth-matrix-section {
    max-width: 1345px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.woa-matrix-container-box {
    background: #42e9e3;
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 119, 182, 0.05);
}

.woa-adv-budget-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 15px;
}

.woa-adv-budget-matrix-column h3 {
    font-size: 1.3rem;
    color: var(--dark-velvet);
    margin-bottom: 22px;
    font-weight: 600;
}

.woa-adv-budget-pill {
    background: #f8fafc;
    padding: 14px 20px;
    border-radius: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.woa-adv-budget-pill-inc {
    border-left: 5px solid #2a9d8f;
}

.woa-adv-budget-pill-inc:hover {
    background: #e6f4f1;
    border-color: #2a9d8f;
    transform: translateX(5px);
}

.woa-adv-budget-pill-exc {
    border-left: 5px solid var(--coral-red);
}

.woa-adv-budget-pill-exc:hover {
    background: #ffeef2;
    border-color: var(--coral-red);
    transform: translateX(5px);
}

/* --- VALUE & TRUST FEATURE GRID --- */
.woa-trust-section {
    max-width: 1345px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.woa-trust-container {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 119, 182, 0.05);
}

.woa-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.woa-trust-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 119, 182, 0.03);
}

.woa-trust-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(3, 4, 94, 0.06);
    border-color: var(--neon-teal);
}

.woa-trust-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.woa-trust-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--dark-velvet);
    font-weight: 600;
}

.woa-trust-card p {
    margin: 0;
    font-size: 0.92rem;
    color: #555964;
    line-height: 1.6;
}

/* --- SEO ACCORDION FAQ SYSTEM --- */
.woa-faq-section {
    max-width: 1345px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.woa-faq-container {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 119, 182, 0.05);
}

.woa-faq-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.woa-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    transition: var(--transition-smooth);
}

.woa-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-velvet);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.woa-faq-icon-marker {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--deep-ocean);
}

.woa-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background: #ffffff;
    padding: 0 20px;
}

.woa-faq-panel p {
    margin: 0;
    padding: 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    border-top: 1px solid #edf2f7;
}

.woa-faq-item.is-expanded {
    border-color: var(--neon-teal);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.05);
}

.woa-faq-item.is-expanded .woa-faq-panel {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.woa-faq-item.is-expanded .woa-faq-icon-marker {
    transform: rotate(45deg);
    color: var(--coral-red);
}

/* --- FLOATING BOOKING ENGINE SIDEBAR --- */
.woa-adv-budget-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
}

.woa-adv-budget-widget {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 119, 182, 0.08);
    position: relative;
    overflow: hidden;
}

.woa-adv-budget-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-ocean), var(--neon-teal));
    z-index: 1;
}

.woa-adv-budget-widget-inner {
    position: relative;
    z-index: 2;
}

.woa-adv-budget-price-headline {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.woa-adv-budget-price-headline span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.woa-adv-budget-price-headline h4 {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 5px 0 0;
    color: var(--sunset-glow);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.woa-adv-budget-field {
    margin-bottom: 20px;
}

.woa-adv-budget-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-velvet);
    margin-bottom: 6px;
}

.woa-adv-budget-field input,
.woa-adv-budget-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    box-sizing: border-box;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    background: #f8fafc;
}

.woa-adv-budget-field input:focus,
.woa-adv-budget-field select:focus {
    outline: none;
    border-color: var(--neon-teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15);
}

.woa-adv-budget-btn-prime {
    background: linear-gradient(90deg, var(--deep-ocean), var(--neon-teal), var(--deep-ocean));
    background-size: 200% auto;
    color: #fff;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.3);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woa-adv-budget-btn-prime:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.45);
}

.woa-adv-budget-wa-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    text-decoration: none;
    color: #25d366;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px;
    border: 2px dashed #25d366;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.woa-adv-budget-wa-action:hover {
    background: rgba(37, 211, 102, 0.08);
}

/* --- KEYFRAMES --- */
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 4px 25px rgba(255, 183, 3, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
    }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .woa-adv-budget-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .woa-adv-budget-sidebar {
        position: relative;
        top: 0;
    }

    .woa-fullwidth-matrix-section,
    .woa-trust-section,
    .woa-faq-section {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .woa-adv-budget-hero h1 {
        font-size: 2.3rem;
    }

    .woa-adv-budget-quickstrip {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }

    .woa-adv-budget-matrix {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .woa-adv-budget-card,
    .woa-matrix-container-box,
    .woa-trust-container,
    .woa-faq-container {
        padding: 25px;
    }
}


/* --- NEW SECTION 3: PREMIUM EXPERIENCE HIGHLIGHTS --- */
.woa-highlights-section {
    max-width: 1345px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.woa-highlights-container {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 119, 182, 0.05);
}

.woa-highlights-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: -15px 0 35px 0;
    max-width: 700px;
    line-height: 1.6;
}

.woa-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.woa-highlight-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.woa-highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-teal);
    box-shadow: 0 20px 30px rgba(0, 180, 216, 0.06);
}

.woa-highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e0f2fe;
    color: var(--deep-ocean);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woa-highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.woa-highlight-card h3 {
    font-size: 1.25rem;
    color: var(--dark-velvet);
    margin: 0 0 12px 0;
    font-weight: 700;
}

.woa-highlight-card p {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Micro Trust Bar inside highlights */
.woa-micro-trust-bar {
    margin-top: 40px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-velvet);
    border: 1px dashed #cbd5e1;
}

.woa-trust-divider {
    color: #cbd5e1;
}

/* Responsive fix for Micro Trust Bar */
@media (max-width: 768px) {
    .woa-micro-trust-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .woa-trust-divider {
        display: none;
    }
}

/* --- FINAL CONVERSION CALL TO ACTION (CTA) --- */
.woa-final-cta-section {
    max-width: 1345px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.woa-final-cta-container {
    background: linear-gradient(135deg, var(--dark-velvet), var(--deep-ocean));
    padding: 60px;
    border-radius: 24px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(3, 4, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.woa-final-cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.woa-cta-alert-tag {
    background: var(--sunset-glow);
    color: var(--dark-velvet);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.woa-final-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.woa-final-cta-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0 0 35px 0;
    max-width: 650px;
}

.woa-cta-action-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.woa-cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woa-cta-btn-wa {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.woa-cta-btn-wa:hover {
    background: #20ba59;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.woa-cta-btn-call {
    background: #ffffff;
    color: var(--dark-velvet);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.woa-cta-btn-call:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Right Badge Box Styling */
.woa-final-cta-badge-side {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.woa-cta-stat-box h3 {
    font-size: 2.8rem;
    color: var(--sunset-glow);
    margin: 0 0 5px 0;
    font-weight: 800;
}

.woa-cta-stat-box p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woa-cta-guarantee {
    font-size: 0.85rem;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    line-height: 1.4;
}

/* Responsive Overwrites for CTA */
@media (max-width: 992px) {
    .woa-final-cta-container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .woa-final-cta-content h2 {
        font-size: 1.8rem;
    }

    .woa-final-cta-content p {
        font-size: 0.95rem;
    }

    .woa-cta-btn {
        width: 100%;
    }

    .woa-cta-stat-box h3 {
        font-size: 2.2rem;
    }
}