/*
 Theme Name: Travelfic Child
 Theme URI: http://example.com/travelfic-child
 Description: Child theme for Travelfic — fixes WooCommerce & Tourfic pages showing posts.
 Author: Your Name
 Template: travelfic
 Version: 1.0
*/

/* Add custom CSS below if needed */
/* Custom Properties for Luxury Theme */
:root {
    --primary-color: #A37E4D;
    /* Gold/Bronze for luxury accent */
    --secondary-color: #1a202c;
    /* Dark Charcoal/Black for text and boxes */
    --background-dark: #f8f8f8;
    --card-background: #ffffff;
    --text-dark: #1a202c;
    --text-muted: #555;
    --border-color: #e5e7eb;
    --font-serif: 'Georgia', serif;
    --font-sans: 'Helvetica Neue', sans-serif;
    --color-primary-green: #043927;
    /* Deep Emerald Green */
    --color-secondary-gold: #D4AF37;
    /* Shiny Gold/Metallic Gold */
    --color-accent-light: #FFD700;
    /* Lighter Gold for subtle sheen */
    --color-text-light: #F0EAD6;
    /* Creamy White/Light Sand */
    --color-text-dark: #2c3e50;
    --font-primary: 'Playfair Display', serif;
    /* Luxury Serif Font */
    --font-secondary: 'Lato', sans-serif;
    /* Clean Sans-serif */
}

/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background-dark);
    line-height: 1.6;
    color: var(--text-dark);
}

.luxury-tour-guide-template {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-background);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* --- 1. LUXURY HERO SECTION & BOOKING BOX (Desktop First) --- */

.hero-section.luxury-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    /* Align content to the bottom */
    background-color: var(--color-primary-green);
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay with strong gradient on the left side for contrast */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    z-index: 2;
}

.tf-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-secondary-gold);
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.tf-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-weight: 300;
}

.tft-header-desktop.tft-main-header-wrapper {
    background: linear-gradient(111deg, rgb(161, 160, 6) 0%, rgb(0, 0, 0) 30%, rgb(3, 12, 7) 50%, rgb(42, 74, 58) 70%, rgb(15, 59, 38) 100%);
}

li.menu-item-object-tf_tours a {
    margin: .3rem 0;
}

/* --- Buttons (CTAs) --- */
.tf-btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tf-btn-primary {
    background-color: var(--color-secondary-gold);
    color: var(--color-primary-green);
    border-color: var(--color-secondary-gold);
}

.tf-btn-primary:hover {
    background-color: transparent;
    color: var(--color-secondary-gold);
}

.tf-btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.tf-btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-primary-green);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* --- Base Button Styling --- */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    /* Rounded borders for all buttons */
    font-size: 1.05em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    position: relative;
    overflow: hidden;
    /* For shine effect */
}

/* Shine effect on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

/* --- "BOOK NOW" Button Styling (Primary) --- */
.btn-primary {
    /* Gold/Yellow from logo: #D4AF37 or a similar rich gold */
    background: linear-gradient(145deg, #FFD700, #DAA520);
    /* Golden gradient for depth and shine */
    color: #333;
    /* Dark text for contrast */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    /* Stronger gold shadow */
}

.btn-primary:hover {
    background: linear-gradient(145deg, #DAA520, #FFD700);
    /* Invert gradient on hover for subtle effect */
    transform: translateY(-2px);
    /* Slight lift on hover */
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* --- "Plan My Own Trip" Button Styling (Secondary) --- */
.btn-secondary-outline {
    /* Deep Green from header: #2E8B57 or a similar rich green */
    background: linear-gradient(145deg, #1cb962, #040c07);
    ;
    /* Green gradient */
    color: #fff;
    /* White text for contrast */
    border: 1px solid #2E8B57;
    /* A subtle border in the same green */
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
    border-radius: 10px;
    /* Green shadow */
    line-height: 1.2;
    font-size: .875rem;
}

.btn-secondary-outline:hover {
    background: linear-gradient(145deg, #2E8B57, #3CB371);
    /* Invert gradient on hover */
    transform: translateY(-2px);
    /* Slight lift on hover */
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.tour-map {
    width: 70vw;
    margin: auto;
}

/* tours list page */
.tft-slider-bg-img {
    background-size: cover;
}

.description-section {
    margin: 0 2rem;
}

.single-tf_tours .tf-single-template__legacy .description-section .tf-square-block-content .tf-single-square-block.highlight .tf-highlight-wrapper {
    background: none;
}

.single-tf_tours .tf-single-template__legacy .description-section .tf-square-block-content .tf-single-square-block.gallery,
.single-tf_tours .tf-single-template__legacy .description-section .tf-square-block-content .tf-single-square-block.highlight.highlight {
    background-image: url(https://ceylonadvisor.com/wp-content/uploads/2025/11/background-2-1.png) !important;
    padding: 1rem;
    background-size: cover;
    }
    
    .single-tf_tours .tf-single-template__legacy .description-section .tf-square-block-content .tf-single-square-block.highlight.highlight .tf-highlight-text {
        color: #033805;
    }

.single-tf_tours .tf-single-template__legacy .description-section .tf-square-block-content .tf-single-square-block.highlight .tf-highlight-wrapper h2.section-heading {
    margin-bottom: 0.5rem !important;
}

.single-tf_tours .tf-single-template__legacy .description-section .tf-square-block-content .tf-single-square-block.highlight .tf-highlight-wrapper p {
    line-height: 1.6 !important;
}

.description-section .tf-container {
    color: #0d416e;
    font-size: 1.2rem;
}

/* contact page */
.elementor-79 .elementor-element.elementor-element-5e364681:not(.elementor-motion-effects-element-type-background),
.elementor-79 .elementor-element.elementor-element-5e364681 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-image: url(https://ceylonadvisor.com/wp-content/uploads/2025/11/background-2-1.png) !important;
    background-size: cover;
}

/* hide tours listing page booking form */
form.tf_archive_search_result.tf_booking-widget.widget.tf-hotel-side-booking {
    display: none;
}

.tf-archive-template__legacy .tf_price_filters-4 {
    display: none;
}

.tf-archive-template__legacy #block-5 {
    display: none;
}

.tf-archive-template__legacy #block-6 {
    display: none;
}

.single-tour-wrap .single-tour-inner .tourfic-single-left img.wp-post-image {
    border-radius: 14px 14px;
    width: 100%;
    transition: .35s ease;
}

.single-tour-wrap {
    background: linear-gradient(145deg,
            #faf4e6 0%,
            #f7e9c6 40%,
            #f1d79f 100%);
    border-radius: 18px;
    border: 1px solid rgba(210, 176, 90, 0.45);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        inset 0 0 10px rgba(255, 255, 255, 0.35);
    padding: 0;
    overflow: hidden;
    transition: all .35s ease;
}

/* Hover = more luxury shine */
.single-tour-wrap:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 20px rgba(0, 0, 0, 0.12),
        inset 0 0 14px rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 217, 130, 0.9);
}



.single-tour-wrap .single-tour-inner .tourfic-single-left img.wp-post-image:hover {
    transform: scale(1.03);
}

/* ---------- TITLE ---------- */
.single-tour-wrap .tourfic_hotel-title {
    font-size: 20px;
    font-weight: 700;
    color: #083b27;
    padding: 14px 20px 6px;
}

/* ---------- DESCRIPTION TEXT ---------- */
.single-tour-wrap .tf-tour-desc {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #4a4a4a;
}

/* ---------- BUTTON ---------- */
.single-tour-wrap .tf_btn {
    background: linear-gradient(135deg, #d5b36b, #f9e6aa, #caa650);
    border-radius: 40px;
    padding: 10px 26px;
    border: none;
    color: #083b27;
    font-weight: 600;
    margin: 0 20px 20px;
    transition: .3s ease;
}

.single-tour-wrap .tf_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 175, 90, 0.3);
}

/** home page */
h3.tft-section-subtitle {
    margin-top: 2rem;
}

.tft-popular-hotels-design__two.tft-customizer-typography.tft-section-space-bottom {
    background-size: cover;
}

/* --- Responsive Adjustments (Optional but Recommended) --- */
@media (max-width: 768px) {
    .btn {
        width: 100%;
        /* Full width buttons on small screens */
    }
}



/* Itinerary List Styling (Cleaner, more minimal) */
.itinerary-list {
    margin-top: 30px;
    border-left: 1px solid var(--border-color);
    /* Timeline effect */
    padding-left: 20px;
}

.itinerary-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.icon-container {
    position: absolute;
    left: -32px;
    /* Pull icon container onto the timeline border */
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--card-background);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    border: 3px solid var(--card-background);
    /* White border to stand out */
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* --- 3. INCLUSION/EXCLUSION SECTION --- */

.inclusion-exclusion-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.inclusion-box,
.exclusion-box {
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.inclusion-box {
    background-color: #e6f7ef;
    /* Light, calming green/teal base */
    border-left: 5px solid #004d40;
}

.exclusion-box {
    background-color: #fce7e7;
    /* Light, soft red base */
    border-left: 5px solid #cc0000;
}

.inclusion-box h3,
.exclusion-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.inclusion-box li,
.exclusion-box li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.inclusion-box li i {
    color: #004d40;
    /* Dark teal checkmark */
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
}

.exclusion-box li i {
    color: #cc0000;
    /* Dark red X mark */
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
}


/* ----------------------------------------------------------------
   | 📱 MOBILE RESPONSIVENESS (BREAKPOINT: 768px)
   ---------------------------------------------------------------- */

@media (max-width: 768px) {

    .itinerary-list {
        padding-left: 10px;
        border-left: none;
        /* Remove timeline effect on mobile to save space */
    }

    .itinerary-item {
        padding-left: 0;
        border-left: 4px solid var(--primary-color);
        border-radius: 5px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
        padding: 15px;
        margin-bottom: 15px;
    }

    .tour-map {
        width: 90vw;
    }
}

.tour-map iframe {
    width: 100%;
    margin-bottom: 2rem;
}

/* FAQ Section Title */
/* FAQ Accordion Questions */
.faq-section .elementor-accordion .elementor-tab-title {
    color: #1B3D2E;
    font-weight: 600;
    background-color: #FDF8F0;
    border-radius: 8px;
    padding: 18px 25px;
    transition: all 0.3s ease;
}

.faq-section .elementor-accordion .elementor-tab-title:hover {
    box-shadow: 0 0 15px #FFD700;
    color: #FFD700;
}

/* Fade-in for section */
.elementor-element.elementor-element-faq {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Button hover */
.faq-section .elementor-button:hover {
    background-color: #1B3D2E;
    color: #FFD700;
    box-shadow: 0 0 10px #FFD700;
}


.faq-section h2 {
    color: #0B3D2E;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    border-bottom: 3px solid #D4AF37;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* Accordion Titles */
.elementor-accordion .elementor-accordion-item .elementor-tab-title {
    color: #0B3D2E;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid #D4AF37;
    padding: 15px 20px;
    position: relative;
}

/* Accordion Icons */
.elementor-accordion .elementor-accordion-item .elementor-tab-title .elementor-accordion-icon i {
    color: #D4AF37;
}

/* Hover / Active Titles */
.elementor-accordion .elementor-accordion-item:hover .elementor-tab-title,
.elementor-accordion .elementor-accordion-item.elementor-active .elementor-tab-title {
    background-color: #D4AF37;
    color: #ffffff;
}

.elementor-accordion .elementor-accordion-item.elementor-active .elementor-tab-title .elementor-accordion-icon i {
    color: #ffffff;
}

/* Accordion Content */
.elementor-accordion .elementor-tab-content {
    color: #333333;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    background-color: #FDF8F0;
    border-left: 3px solid #D4AF37;
    padding: 20px 25px;
    margin-bottom: 10px;
}
/* style tour page*/
/* =======================================
   ANIMATION KEYFRAMES
   ======================================= */
@keyframes goldGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.4),
            /* Lighter, subtle glow */
            0 0 10px rgba(255, 215, 0, 0.3),
            0 8px 20px rgba(184, 146, 64, 0.4);
        /* Base gold shadow */
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.7),
            /* Stronger glow */
            0 0 25px rgba(255, 215, 0, 0.5),
            0 8px 20px rgba(184, 146, 64, 0.5);
        /* Slightly more prominent base shadow */
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.4),
            0 0 10px rgba(255, 215, 0, 0.3),
            0 8px 20px rgba(184, 146, 64, 0.4);
    }
}

h1 {
    font-size: 2.8em;
    border-bottom: 2px solid #b89240;
    /* Gold underline */
    padding-bottom: 0.2em;
    display: inline-block;
}

.single-tf_tours .tf-single-template__one .tf-trip-description p {
    font-size: 1.05em;
    color: #555555;
}

.tf-trip-description,
.tf-tour-booking-advantages,
.tf-tour-booking-box,
.tour-map,
.tf-inex-inner {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    /* Slightly rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Subtle, deeper shadow for elevation */
    margin-bottom: 30px;
}

.tf-tour-booking-box {
    background-color: #ffffff;
    border: 1px solid #e5dcc7;
    /* Light accent border */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.tf-box {
    border: 1px solid #e5dcc7;
    /* Light accent border */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.tf-tour-booking-box h3 {
    color: #1e2a38;
    font-size: 1.4em;
    margin-top: 0;
    border-bottom: 2px dashed #f0e6d6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.tf-bt-wrap .tf_btn {
    /* Base Appearance */
    display: block;
    width: 100%;
    padding: 18px 20px;
    /* Slightly more padding for a richer look */
    margin-top: 30px;
    /* More space above */

    /* Color and Gradient (using brighter gold tones for "shiny") */
    background: linear-gradient(145deg, #FFD700, #DAA520);
    /* Brighter, more vibrant gold */
    color: #333333;
    /* Darker text for contrast on bright gold */

    /* Text */
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    /* Even bolder */
    font-size: 1.35em;
    /* Larger, more impactful text */
    text-transform: uppercase;
    letter-spacing: 2px;
    /* More spaced out letters */

    /* Shape and Border */
    border: none;
    border-radius: 8px;
    /* Slightly more rounded */

    /* Initial Shadow & Animation */
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.4),
        /* Initial subtle glow */
        0 0 10px rgba(255, 215, 0, 0.3),
        0 10px 25px rgba(184, 146, 64, 0.5);
    /* Stronger base shadow */
    animation: goldGlow 3s infinite alternate ease-in-out;
    /* Apply the animation */

    /* Transition for Hover Effect (kept subtle to not interfere with main animation) */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tf-bt-wrap .tf_btn:hover {
    background: linear-gradient(145deg, #DAA520, #B8860B);
    /* Slightly darker gold on hover */
    transform: translateY(-3px) scale(1.01);
}

.tf-bt-wrap .tf_btn:active {
    transform: translateY(0) scale(1);
    /* Press down effect */
    transition: transform 0.1s ease;
    /* Quicker transition for active */
}

.tf-ask-enquiry .tf_btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #1e2a38;
    /* Deep Charcoal Blue */
    color: #f8f8f4;
    border: 2px solid #1e2a38;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.tf-ask-enquiry .tf_btn:hover {
    background-color: #2c4156;
    border-color: #2c4156;
}

.tf-inex-wrapper .tf-inex-inner {
    padding: 20px;
    border: 1px solid #f0e6d6;
    /* Very light accent border */
    border-radius: 4px;
}

/* Styling for list items (icons could be golden) */
.tf-tour-exclude li i:before,
.tf-tour-include li i:before {
    content: '';
}

.tf-tour-include li i,
.tf-tour-exclude li i {
    display: none;
}

/* Included items (use a golden checkmark icon, if possible) */
.tf-tour-include li::before {
    content: "✓";
    color: #b89240;
    /* Gold checkmark */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

/* Excluded items (use a subtle 'X' icon or a deep gray bullet) */
.tf-tour-exclude li::before {
    content: "•";
    color: #a3a3a3;
    /* Deep gray bullet */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

/* =======================================
   MOBILE STYLES (Max Width 768px)
   ======================================= */
@media (max-width: 768px) {

    /* --- 1. GLOBAL & CONTAINERS --- */

    /* Remove heavy side padding on main wrapper for mobile screens */
    .luxury-main-content-wrapper {
        padding: 0 15px;
    }

    /* Reduce padding on section cards */
    .tf-trip-description,
    .tf-tour-booking-advantages,
    .tf-tour-booking-box,
    .tour-map,
    .tf-inex-inner {
        padding: 20px 15px;
        /* Less vertical and horizontal padding */
        margin-bottom: 20px;
    }

    /* --- 2. TYPOGRAPHY & HEADINGS --- */

    /* Adjust main page title size */
    h1 {
        font-size: 2em;
        /* Smaller font size for mobile */
        text-align: center;
        /* Center the title for better look */
        width: 100%;
        /* Ensure underline spans full width if needed */
        border-bottom: none;
        /* Remove the underline on mobile */
        padding-bottom: 0;
        margin-top: 15px;
    }

    /* Adjust section headings */
    h2,
    h3 {
        font-size: 1.5em;
        margin-top: 1em;
        margin-bottom: 0.3em;
    }

    /* Ensure text is readable */
    .luxury-description-text {
        font-size: 1em;
    }


    /* --- 3. SIDEBAR & BOOKING (Stacking) --- */

    /* Assuming the layout uses a flex or grid system where the sidebar is adjacent to main content.
       On mobile, they should stack vertically (sidebar below main content, or above if preferred).
       If using a framework like Bootstrap or Tailwind, this may be handled by class utilities (col-md-4 vs col-12).
       If using basic CSS, ensure layout elements are set to 100% width.
    */
    .tf-box {
        width: 100%;
        /* Force columns to stack */
        float: none;
        /* Remove any float properties */
    }

    /* Ensure the sidebar card flows well, potentially moving the booking button to the top of the screen */
    .tf-box {
        order: -1;
        /* Place the sidebar content (booking form) above the main tour description on mobile */
    }

    /* Adjust button padding slightly */
    .tf-bt-wrap .tf_btn {
        font-size: 1.15em;
        /* Adjust font size for mobile */
        padding: 14px 15px;
        /* Adjust padding */
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.4),
            /* Keep a lighter glow on mobile */
            0 0 10px rgba(255, 215, 0, 0.3),
            0 8px 18px rgba(184, 146, 64, 0.4);
    }


}

/* ===== Luxury Scroll-Reveal + Shimmer ===== */

/* Active state when in viewport */
.tf-container-inner .tf-hero-gallery {
    opacity: 1;
    transform: translateY(0);
    animation: shimmer 3s linear infinite;
}

/* Staggered paragraphs */
.tf-container-inner p {
    transform: translateY(15px);
    transition: all 0.8s ease-out;
}

.tf-container-inner .tf-btn-wrap {
    opacity: 1;
    transform: translateY(0);
}

.tf-container-inner p:nth-child(1) {
    transition-delay: 0.2s;
}

.tf-container-inner p:nth-child(2) {
    transition-delay: 0.35s;
}

.tf-container-inner p:nth-child(3) {
    transition-delay: 0.5s;
}

.tf-container-inner p:nth-child(4) {
    transition-delay: 0.65s;
}

/* ===== Shimmer Animation ===== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ===== Gold hover effect for links ===== */
.tf-container-inner a {
    color: #0B6623;
    /* Wild Green normal */
    text-decoration: none;
    transition: all 0.3s ease;
}

.tf-container-inner a:hover {
    color: #D4AF37;
    /* Shiny Gold hover */
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}