/* =========================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    color: #333;
    margin: 0;
    font-size: 18px;
    padding-top: 60px; /* Space for fixed header */
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    margin-bottom: 15px;
    font-family: 'Kreon', serif; /* Matching your HTML font loads */
}

p {
    line-height: 1.55;
    margin-bottom: 15px;
}

/* Utilities */
.text-center { text-align: center; }
.no-margin { margin: 0; }
.no_padding { padding: 0; }
.hide-robot { display: none; }

/* Divider Style */
.seper {
    height: 3px;
    width: 60px;
    background-color: #f39c12;
    margin: 0.5em auto 1.5em;
    border-radius: 2px;
}

/* =========================================
   2. LAYOUT CONTAINER (Responsive)
   ========================================= */
.container {
    max-width: 1500px; /* Wide layout for desktop */
    margin: 0 auto;
    width: 100%;
    padding: 40px 30px;
}

/* Tablet */
@media (max-width: 1024px) {
    .container { padding: 30px 20px; }
}

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 15px 10px; }
}

/* =========================================
   3. HERO SECTION & ANNOUNCEMENTS
   ========================================= */
/* Announcement Marquee */
.announcement-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
    padding-top: 60px;
}

.announcement {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-size: 1.8rem;
    color: #f27935; /* Orange accent */
    font-weight: bold;
}

.announcement a {
    color: #000;
    text-decoration: underline;
}

/* Full Screen Hero Image */
.image-section {
    position: relative;
    width: 100%;
    /* Use dynamic viewport height to avoid mobile bugs */
    height: calc(var(--vh, 1vh) * 100); 
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.75);
}

/* Hero Text Overlay */
.text-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 850px;
    padding: 2.5rem 2.8rem;
    text-align: center;
    color: #fff;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6); /* Fallback */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Frosted Glass Effect */
@supports (backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px)) {
    .text-overlay {
        background-color: rgba(0, 0, 0, 0.35);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }
}

.text-overlay h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.6rem); /* Responsive font scaling */
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.text-overlay h2, .text-overlay h3 {
    font-size: clamp(1rem, 3.5vw, 1.8rem);
    margin-bottom: 15px;
    font-weight: 400;
    color: #fff;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 50px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-item i { color: #2e7d32; }

/* Money Back Guarantee Box */
.guarantee-box {
    background: #f0fdf4;
    border: 2px dashed #2e7d32;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 800px;
}
.guarantee-icon { font-size: 40px; color: #2e7d32; margin-bottom: 10px; }

/* =========================================
   4. BUTTONS
   ========================================= */
/* Primary CTA Button */
.btn-primary {
    /*display: inline-flex;*/
    justify-content: center;
    align-items: center;
    background-color: #f39c12;
    color: white;
    padding: 0.6em 1.5em;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    min-height: 44px;
    border: none;
    transition: background-color 0.3s, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
    text-decoration: none;
}

/* Pulsing CTA (Orange) */
.btn-cta-pulse {
    background-color: #ff6f00 !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
    transition: transform 0.2s;
    border: none;
    font-weight: bold;
}
.btn-cta-pulse:hover {
    transform: scale(1.05);
    background-color: #e65100 !important;
}

/* Gradient Booking Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #9F0FE8, #F72C10);
    padding: 18px 55px;
    border-radius: 60px;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    transition: .25s;
    box-shadow: 0 0 25px rgba(255,0,150,.35);
    /* Fix: Prevent text wrapping/overflow issues */
    max-width: 100%; 
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255,0,150,.65);
    color: #fff;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    background: linear-gradient(to right, #9F0FE8, #F72C10);
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(159, 15, 232, 0.3);
}
.read-more-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, #8a0dcc, #d6250e);
}

/* =========================================
   5. SECTIONS: DESCRIPTION, ABOUT, FAQ
   ========================================= */

/* Description Card */
.fdescription {
    max-width: 1000px;
    margin: 30px auto 50px;
    padding: 30px; /* Reduced padding */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #9F0FE8;
}

/* Reduced Font Size */
.fdescription p {
    font-size: 15px; /* Reduced from 16px */
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.read-more-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.read-more-content.expanded {
    display: block;
    opacity: 1;
}

/* About Us Titles */
.page__title {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h2.page_title_m {
    background-color: #6a1b9a !important;
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 5px;
    display: inline-block;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-weight: 700;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.faq-item {
    border-top: 1px solid #ccc;
    padding: 15px;
    cursor: pointer;
    background-color: #f9f9f9;
}
.faq-item h2 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}
.faq-item p {
    display: none;
    padding: 10px;
    font-size: 1.1em;
    color: #666;
}
.faq-item.active p { display: block; }
.faq-item:hover { background-color: #e9e9e9; }

/* =========================================
   6. CARDS: COURSES & TRAINER
   ========================================= */
/* Grid Layout for Courses */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}
.grid-item {
    position: relative;
    width: 100%;
    padding: 15px;
    display: flex;
}
@media (min-width: 768px) { .grid-item { width: 50%; } }
@media (min-width: 1024px) { .grid-item { width: 33.33%; } }

/* Course Card Style */
.course-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 1.2em;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.course-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 1em;
    background-color: #f9f9f9;
}
.course-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.course-card:hover .course-image-container img { transform: scale(1.05); }

.course-card h3 {
    margin: 0.5em 0;
    font-size: 1.4em;
    line-height: 1.2;
    color: #888;
}
.course-card h4 a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.1em;
    font-weight: bold;
}
.course-price {
    font-size: 1.1em;
    color: #27ae60;
    margin: 0.8em 0;
}
.course-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 1.2em;
    flex-grow: 1;
}

/* Trainer Section */
.trainer-section-wrapper { padding: 40px 15px; display: flex; justify-content: center; }
.trainer-card {
    background-color: #f8f9fa;
    border-radius: 20px;       
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    padding: 40px;
    max-width: 1100px;         
    width: 100%;
}
.trainer-img {
    width: 220px;
    height: 220px;          
    object-fit: cover;      
    border-radius: 50%;     
    border: 5px solid #fff; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}
.trainer-title {
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8em;
    position: relative;
    display: inline-block;
}
.trainer-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #28a745; 
    margin-top: 8px;
}

/* =========================================
   7. SCHEDULE TABLE
   ========================================= */
.schedule-container {
    background: #151520;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,.4);
    margin-bottom: 40px;
}
.schedule-header {
    background: linear-gradient(to right, #F72C10, #9F0FE8);
    color: #fff;
    padding: 28px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #0c0c13;
}

.yoga-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Ensures scroll on mobile */
}
.yoga-table th {
    font-size: 1.6rem;
    color: #fff !important;
    padding: 22px 28px;
    font-weight: 800;
    text-transform: uppercase;
    background: #000;
}
.yoga-table td {
    font-size: 1.5rem !important;
    padding: 26px 28px;
    background: #12121a;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.col-course {
    background: #9F0FE8 !important;
    color: #fff !important;
    font-weight: 900;
}
.col-price {
    color: #ff4040 !important;
    font-weight: 900;
}
.free-tag {
    background: #2ecc71;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 800;
}

.note-box {
    background: #383838;
    border-left: 8px solid #FFC107;
    padding: 24px;
    border-radius: 10px;
    margin: 30px 0 45px;
    color: #fff;
}
.cta-section {
    background: #151520;
    border-radius: 20px;
    padding: 2em;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,.4);
}
.contact-info { margin-top: 25px; color: white; }
.contact-info a { color: #BD4CFF; text-decoration: none; }

/* =========================================
   8. CONTACT FORM & MAP (Refined)
   ========================================= */
#divContact {
    padding: 60px 0;
    background-color: #f9fbf7;
}

.main-contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center; /* Centers items if they wrap */
    align-items: flex-start; /* Aligns tops of cards */
}

/* Common Card Style */
.contact-card {
    background-color: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;             /* Grow to fill space */
    min-width: 350px;    /* Prevent getting too squished */
    max-width: 600px;    /* Don't get too wide on huge screens */
    width: 100%;
    box-sizing: border-box;
}

/* Card Header (Icon + Title) */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.icon-badge {
    color: #4a8f3e;
    background-color: rgba(74, 143, 62, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.card-title {
    margin: 0;
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

/* --- MAP & INFO STYLES --- */
.map-container-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.responsive-map {
    position: relative;
    padding-bottom: 65%; /* Aspect ratio height */
    height: 0;
    overflow: hidden;
}

.responsive-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Location Info Items */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start; /* Align icon with top of text */
    gap: 15px;
}

.icon-circle {
    background-color: #f0fdf4;
    color: #4a8f3e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-details h4.detail-label {
    margin: 0 0 5px 0;
    font-size: 1.6rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-details p {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* --- FORM STYLES --- */
.form-group-wrapper {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    background-color: #fbfbfb;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Critical for preventing overflow */
}

.form-input:focus {
    border-color: #4a8f3e;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 143, 62, 0.1);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.styled-button {
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    flex: 1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button {
    background: linear-gradient(135deg, #4a8f3e, #3a7f2e);
    color: white;
    box-shadow: 0 4px 10px rgba(74, 143, 62, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 143, 62, 0.4);
}

.reset-button {
    background-color: #f1f3f5;
    color: #666;
}

.reset-button:hover {
    background-color: #e9ecef;
    color: #333;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 900px) {
    .main-contact-layout {
        flex-direction: column; /* Stack vertically */
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        min-width: 0; /* Allow shrinking below min-width */
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .button-group {
        flex-direction: column;
    }
    
    .info-details p {
        font-size: 1.4rem;
    }
    
    .responsive-map {
        padding-bottom: 75%; /* Taller map on mobile */
    }
}
/* Video & Map Helpers */
.video-container, .map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.video-container iframe, .map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* =========================================
   9. FOOTER
   ========================================= */
.site-footer {
    background-color: #f8f9fa;
    padding: 50px 0 30px 0;
    border-top: 1px solid #e0e0e0;
}
.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-link-stack {
    display: flex;
    flex-direction: column;
}
.footer-link-stack a {
    text-decoration: none;
    color: #0c7c50;
    margin-bottom: 10px;
    font-size: 18px;
}
.footer-link-stack a:hover { color: #f39c12; }
/* Legal Section Styling */
.footer-legal-section {
    border-top: 1px solid #dee2e6;
    padding-top: 30px;
    text-align: center;
}

.footer-legal-links a {
    font-size: 16px;
    color: #007BFF;
    text-decoration: none;
}

.footer-divider {
    margin: 0 10px;
    color: #ccc;
}

.footer-copyright {
    margin-top: 15px;
    font-size: 15px;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }
    .footer-link-stack {
        align-items: center;
    }
}
/* =========================================
   10. FLOATING ELEMENTS (WhatsApp/Cookie)
   ========================================= */
/* Floating WhatsApp & Call Buttons */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}
.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    transition: transform 0.25s ease;
}
.whatsapp-btn { background: linear-gradient(135deg, #25D366, #1ebe5d); }
.call-btn { background: linear-gradient(135deg, #007bff, #0056d2); }
.contact-btn:hover { transform: translateY(-3px); color: #fff; }
/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 768px) {
    .floating-contact {
        right: 12px;
        bottom: 12px;
    }

    .contact-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-btn i {
        font-size: 18px;
    }
}

/* Ultra-small devices */
@media (max-width: 360px) {
    .contact-btn span {
        display: none; /* Icon-only for very small screens */
    }

    .contact-btn {
        padding: 14px;
        border-radius: 50%;
        justify-content: center;
    }
}

/* Cookie Consent */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 99;
    display: none;
}
.cookie-consent-banner button {
    background-color: #f1c40f;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 15px;
}

/* =========================================
   11. MOBILE & TABLET OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .trainer-card { padding: 30px 20px; }
    .trainer-bio { text-align: center; }
    .trainer-img { margin: 0 auto 20px; display: block; }
    .trainer-title::after { margin: 8px auto; }
}

@media (max-width: 768px) {
    /* Global Text */
    body, p { line-height: 1.45; }
    
    /* Announcement */
    .announcement { padding-top: 10px; font-size: 16px; }
    
    /* Hero */
    .text-overlay { max-width: 90%; padding: 15px; bottom: 5%; }
    .text-overlay h1 { font-size: 1.8rem; }
    
    /* Description */
    .fdescription { padding: 25px 20px; margin: 20px 15px 40px; }
    .read-more-btn { width: 100%; text-align: center; }
    
    /* Table */
    .schedule-header { font-size: 1.6rem; padding: 20px 10px; }
    .yoga-table th, .yoga-table td { font-size: 1.1rem !important; padding: 12px 10px !important; white-space: nowrap; }
    .col-course { white-space: normal !important; min-width: 140px; position: sticky; left: 0; z-index: 3; box-shadow: 2px 0 5px rgba(0,0,0,0.3); }
    
    /* Contact */
    .card-header { flex-direction: row; }
    .button-group { flex-direction: column; }
    
    /* Floating Buttons */
    .floating-contact { right: 12px; bottom: 12px; }
    .contact-btn { padding: 12px 16px; font-size: 14px; }
}

@media (max-width: 480px) {
    .trainer-text { font-size: 15.5px; text-align: left; }
    .contact-info-item {/* flex-direction: column;*/ align-items: flex-start; }
}
/* =========================================
   12. STRICT MOBILE FIXES (Add to bottom)
   ========================================= */
@media (max-width: 768px) {
    /* Fix Description Font for Mobile */
    .fdescription {
        padding: 20px 15px;
    }
    .fdescription p {
        font-size: 14px; /* Smaller for mobile */
        line-height: 1.5;
    }

    /* Fix Button Overflow */
    .cta-button {
        padding: 15px 20px; /* Smaller padding */
        font-size: 1.2rem;  /* Smaller font */
        width: 100%;        /* Full width to prevent overflow */
        box-sizing: border-box;
    }

    /* Fix Map Overflow */
    .contact-card {
        min-width: 0;       /* Allow shrinking */
        width: 100%;        /* Force full width */
        padding: 20px 15px; /* Reduce padding so content has space */
        box-sizing: border-box;
    }
    
    .map-container-wrapper {
        width: 100%;
        overflow: hidden; /* Cut off any overflowing map parts */
        border-radius: 8px;
    }

    /* Ensure icons don't break layout */
    .card-header {
        flex-wrap: wrap; /* Allow wrapping on very small screens */
    }
}
.hidden-field {
    display: none !important;
    visibility: hidden;
}
/* Satisfaction Guarantee Section Styling */
.guarantee-section {
    padding: 60px 20px;
    background-color: #f4f9f4; /* Light calming green */
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.guarantee-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.guarantee-icon {
    font-size: 50px;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.guarantee-container h3 {
    color: #1b4332;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.guarantee-text {
    color: #444;
    line-height: 1.6;
    font-size: 18px;
}

.fair-practice-box {
    background-color: #eef7f2;
    border-left: 5px solid #2d6a4f;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

.fair-practice-box p {
    margin: 0;
    font-size: 16px;
    color: #1b4332;
}

.terms-link {
    font-size: 14px;
    color: #777;
}

.terms-link a {
    color: #2d6a4f;
    text-decoration: underline;
    font-weight: bold;
}
/* Trust Ribbon Container */
.trust-ribbon {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f8f9fa; /* Light professional gray */
    padding: 20px 10px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

/* Individual Trust Items */
.trust-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif; /* Matches your site font */
    color: #4a148c; /* Deep Yoga Purple */
    font-weight: 600;
    font-size: 15px;
}

/* Icon Styling */
.trust-item i {
    font-size: 24px;
    margin-right: 12px;
    color: #7b1fa2; /* Brighter accent purple */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-ribbon {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two items per row on mobile */
        gap: 10px;
        padding: 15px;
    }
    
    .trust-item {
        font-size: 13px;
        padding: 5px;
        justify-content: center;
        text-align: center;
        flex-direction: column; /* Icon on top of text for mobile */
    }

    .trust-item i {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .trust-ribbon {
        grid-template-columns: 1fr; /* One item per row on very small phones */
    }
}
/* Tooltip container */
.custom-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #666; /* Adds a visual cue that it's hoverable */
  color: #007bff; /* Makes 'extendable' stand out slightly */
  cursor: help;
}

/* Tooltip text (hidden by default) */
.custom-tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position above the text */
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.85rem;
  line-height: 1.2;
}

/* Tooltip arrow */
.custom-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Show tooltip on hover */
.custom-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}