/* Sara777 Official Production Responsive CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap');

:root {
    --bg-light: #ffffff;
    --primary-yellow: #fab028;
    --yellow-dark: #e09815;
    --yellow-light: #fdedab;
    --text-dark: #1e1e1e;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 70px; /* Account for floating download bar */
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary-yellow);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header Navigation */
.header-nav {
    background: #ffffff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img {
    height: 52px;
    width: auto;
    display: block;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: #2b2b2b;
    text-align: center;
    line-height: 1.2;
    display: inline-block;
    padding: 4px 6px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 210px;
    max-height: 360px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 1100;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu div {
    padding: 6px 16px;
    text-align: left;
}

.dropdown-menu a {
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
}

.dropdown-menu a:hover {
    color: var(--primary-yellow);
}

.btn-header-download {
    border: 1px solid #fab028;
    background: #ffffff;
    color: #2b2b2b;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-header-download:hover {
    background: #fab028;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(250, 176, 40, 0.3);
}

/* Mobile Hamburger Menu Icon */
.hamburger-toggle {
    display: none;
    font-size: 1.5rem;
    color: #1e1e1e;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 4px;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--primary-yellow);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 16px 20px;
}

.mobile-drawer.active {
    display: block;
}

.mobile-drawer-link {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    font-size: 1rem;
    color: #1e1e1e;
    border-bottom: 1px solid #f1f5f9;
}

/* Banner / Hero Section */
.banner-section {
    padding: 40px 0;
    position: relative;
    background: #ffffff;
}

.banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banner-left {
    flex: 1;
    z-index: 2;
}

.banner-title-screenshot {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.banner-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.woman-hero-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Shiny Wide Download Banner */
.wide-download-wrapper {
    margin: 20px 0 30px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-wide-download {
    width: 100%;
    max-width: 800px;
    color: #333333 !important;
    border-radius: 25px;
    padding: 12px 24px !important;
    background: linear-gradient(121.19deg,rgba(133,239,49,0) 25.73%,rgb(249, 232, 167) 45.27%,rgba(133,239,49,0) 62.27%),#fdedab;
    border: 1px solid #fab028;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(250, 176, 40, 0.2);
    transition: transform 0.2s ease;
}

.btn-wide-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 176, 40, 0.35);
}

/* Sticky Floating Download Bar at Bottom */
.floating-download-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--primary-yellow);
}

.btn-floating-download {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(121.19deg, rgba(133, 239, 49, 0) 25.73%, rgb(249, 232, 167) 45.27%, rgba(133, 239, 49, 0) 62.27%), #fdedab;
    border: 1px solid #fab028;
    color: #111111;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(250, 176, 40, 0.3);
}

/* Section Padding & Titles */
.section-padding {
    padding: 30px 0;
}

.h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1e1e1e;
    margin-bottom: 20px;
}

/* Flexible Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.col-xl-4 {
    width: 33.333%;
    padding: 8px;
}

.col-md-6 {
    width: 50%;
    padding: 8px;
}

.col-12 {
    width: 100%;
    padding: 8px;
}

.col-6 {
    width: 50%;
    padding: 8px;
}

.col-sm-3 {
    width: 25%;
    padding: 8px;
}

/* Card Styling */
.card {
    background: #ffffff;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 8px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 14px 16px;
}

.font-weight-600 { font-weight: 600; }
.font-weight-bold { font-weight: 800; font-family: 'Outfit', sans-serif; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* SVG Play Button */
.play-svg-btn {
    cursor: pointer;
    transition: transform 0.2s ease;
    display: inline-block;
}

.play-svg-btn:hover {
    transform: scale(1.1);
}

/* FAQ Accordion */
.accordionFAQ .card {
    border-bottom: 1px solid #e2e8f0 !important;
    border-radius: 0;
    box-shadow: none;
}

.card-header h4 {
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #212529;
    padding: 14px 0;
}

.collapse {
    display: none;
    padding-bottom: 14px;
    color: #475569;
}

.collapse.show {
    display: block;
}

/* Footer & Chart Links */
.footer-bottom {
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

.chart-links h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.chart-links a {
    font-size: 0.88rem;
    color: #495057;
    font-weight: 500;
    line-height: 2;
}

.chart-links a:hover {
    color: var(--primary-yellow);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-dialog {
    max-width: 500px;
    width: 90%;
    margin: 20px;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.modal-body {
    padding: 20px;
    position: relative;
}

.close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.table.t-cell {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
}

.table.t-cell th, .table.t-cell td {
    padding: 8px;
    border: 1px solid #cbd5e1;
    text-align: center;
    font-size: 0.88rem;
}

/* ==========================================================================
   ULTRA-RESPONSIVE MEDIA QUERIES (Mobile, Tablet, Desktop)
   ========================================================================== */

@media (max-width: 1024px) {
    .navbar-nav {
        gap: 14px;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .banner-title-screenshot {
        font-size: 2.4rem;
    }
    .woman-hero-img {
        max-width: 400px;
    }
}

@media (max-width: 850px) {
    .navbar-nav, .btn-header-download {
        display: none;
    }
    .hamburger-toggle {
        display: block;
    }
    .banner-row {
        flex-direction: column;
        text-align: center;
    }
    .banner-left {
        max-width: 100%;
    }
    .banner-title-screenshot {
        font-size: 2.1rem;
    }
    .banner-right {
        justify-content: center;
        margin-top: 20px;
    }
    .woman-hero-img {
        max-width: 340px;
    }
    .col-xl-4 {
        width: 50%;
    }
    .col-sm-3 {
        width: 50%;
    }
}

@media (max-width: 580px) {
    .container {
        padding: 0 12px;
    }
    .banner-title-screenshot {
        font-size: 1.7rem;
    }
    .woman-hero-img {
        max-width: 280px;
    }
    .col-xl-4, .col-md-6, .col-6, .col-sm-3 {
        width: 100%;
    }
    .btn-wide-download {
        font-size: 1.05rem;
        padding: 10px 16px !important;
    }
    .h2 {
        font-size: 1.5rem;
    }
}
