/* Fees page styles - using global font variables */
body {
    font-family: var(--font-sans);
    background: var(--bg-body);
    color: var(--text-body);
    margin: 0;
    padding: 0;
}

.fees-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    color: var(--text-body);
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
}

/* ===== PAGE HEADER ===== */
/* ===== FEES HERO ===== */
.fees-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    /* push content to bottom */
    justify-content: flex-start;
    overflow: hidden;
}

.fees-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.fees-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
}

.fees-hero .hero-content {
    position: absolute;
    /* absolute inside hero */
    bottom: 3rem;
    /* distance from bottom */
    left: 3rem;
    text-align: left;
    color: #1a1a1a;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 1s ease-out forwards;
}

.fees-hero h1 {
    text-align: left;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: -0.5rem;
}

.fees-hero h1 span {

    color: var(--gold);
}

.fees-hero p {
    text-transform: uppercase;
    text-align: left;
    font-family: var(--font-ui);
    font-weight: 300;
    letter-spacing: 0.14em;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: #333333;
}

.fees-hero .cta-btn {
    padding: 0.8rem 2rem;
    background: var(--gold);
    color: var(--black);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fees-hero .cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .fees-hero {
        height: 60vh;
        padding: 0 1rem;
    }

    .fees-hero h1 {
        font-size: 2rem;
    }

    .fees-hero p {
        font-size: 1rem;
    }
}


/* ===== FEES INTRO ===== */
/* ===== FEES INTRO ===== */
.fees-intro {
    /* Styles handled by global.css .soft-vignette-warm */
    text-align: center;
    /* Keep text alignment */
}


/* ===== FEES CARDS (Premium Vertical Cards) ===== */
.fees-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.fee-card {
    background: #e6e6e6;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 4px solid var(--gold);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.fee-card.featured {
    background: #fffdf5;
    /* Very subtle gold tint base */
    border-color: var(--gold);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.fee-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badget {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.card-header {
    margin-bottom: 1.5rem;
}

.fee-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-body);
    margin: 0 0 1rem;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--gold);
    font-family: var(--font-ui);
}

.currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-right: 4px;
}

.amount {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.time {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin-bottom: 2rem;
}

.description {
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    margin-bottom: 0;
}


/* ===== INCLUDED SERVICES (Grid) ===== */
.included-services-section {
    text-align: center;
    margin-top: 5rem;
}

.included-services-section h3 {
    font-size: 2.2rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #e6e6e6;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.service-item span {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--gray);
}

/* ===== DETAILED INFORMATION ===== */
.detailed-info {
    padding: 4rem 2rem;
    background: #e6e6e6;
}

.detailed-container {
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-container p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 100%;
    text-align: left;
}

.note-box {
    background: #f9f9f9;
    border-left: 4px solid var(--gold);
    padding: 2rem;
    border-radius: 4px;
    text-align: left;
}

.note-box h4 {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.note-box p {
    margin-bottom: 0;
    text-align: left;
}

.currency:empty {
    display: none;
}

.accordion {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.accordion-summary {
    background: #dcdcdc;
    /* Darker than body #e6e6e6 */
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(245, 176, 65, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.accordion-summary:hover {
    background: #d4d4d4;
    /* Even darker on hover */
    border-color: var(--gold);
}

.accordion-summary h3 {
    color: #333333;
    /* Dark text when closed */
    font-size: 1.3rem;
    margin: 0;
    font-weight: 500;
}

.accordion-summary .icon {
    color: var(--gold);
    font-size: 1.5rem;
}

.accordion-content {
    display: none;
    background: #f9f9f9;
    padding: 1.5rem;
    border: 1px solid rgba(245, 176, 65, 0.2);
    border-top: none;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-summary {
    background: #fafafa;
    border-color: var(--gold);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .fees-hero {
        height: 60vh;
    }

    .fees-hero .hero-content {
        bottom: 1rem;
        left: 2rem;
        max-width: 90%;
    }

    .fees-hero h1 {
        font-size: 2rem;
    }

    .fees-hero p {
        font-size: 1rem;
    }

    /* DISABLE ANIMATIONS ON MOBILE FOR VISIBILITY SAFETY */
    .fees-hero .hero-content,
    .intro-content,
    .contact-card,
    .intro-content p,
    .fees-intro::before {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .page-header {
        margin-top: 6rem;
        height: 150px;
        align-items: flex-end;
        /* push content to bottom */
        justify-content: flex-start;
        /* push content to left */
        padding: 1.25rem;
    }

    .header-content h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .header-content p {
        font-size: 0.9rem;
        text-align: center;
    }

    .intro-container {
        grid-template-columns: 1fr;
    }

    .fees-intro {
        text-align: center;
    }

    .intro-content h2 {
        text-align: center;
    }

    .accordion-summary h3 {
        font-size: 1.2rem;
    }

    .accordion-summary,
    .accordion-details {
        text-align: center;
    }

    .intro-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .model-overview-btn {
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp {
    position: fixed;
    /* Stays in place when scrolling */
    width: 60px;
    height: 60px;
    bottom: 20px;
    /* Distance from bottom */
    right: 20px;
    /* Distance from right */
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp i {
    line-height: 60px;
    /* Centers the WhatsApp icon */
}

/* ===== TIERED PRICING LAYOUT ===== */
.pricing-tiers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-tier {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-header h3 {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tier-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 80px;
    /* Align heights roughly */
}

.tier-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1rem 0;
    opacity: 0.5;
}

/* Tier Specifics (Optional accents) */
.tier-premium {
    border-top: 4px solid var(--gold);
    background: #FFFEFA;
    /* Very slight warmth */
}

.tier-deluxe {
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

/* List Items */
.tier-items {
    flex: 1;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-item.featured-item {
    background: #fafafa;
    margin: 0 -1rem;
    padding: 1rem 1rem;
    border-radius: 4px;
}

.fee-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.fee-info span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fee-cost {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.loading-placeholder {
    padding: 2rem;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-tiers-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .tier-desc {
        min-height: auto;
    }
}