/* ============================================
   VERIFIED BM SELLER - Main Stylesheet
   Root Variables, Header, and Footer Only
============================================ */

/* Root Variables - Theme Colors */
:root {
    /* Primary Theme Colors */
    --theme-primary: #00BFFF;
    --theme-primary-light: #87CEEB;
    --theme-primary-dark: #0095CC;
    --theme-primary-rgb: 0, 191, 255;

    /* Text Colors */
    --text-dark-navy: #0A1628;
    --text-light-navy: #1E3A5F;
    --text-muted: #4A6B8A;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8FBFF;
    --bg-section: #F0F7FF;
    --bg-dark: #0A1628;
    --bg-dark-secondary: #0F2137;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00BFFF 0%, #0077B6 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
    --gradient-hero: linear-gradient(135deg, #F8FBFF 0%, #E8F4FD 50%, #D6EFFF 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(0, 119, 182, 0.1) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 191, 255, 0.3);
    --shadow-card: 0 10px 40px rgba(10, 22, 40, 0.08);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-2xl: 40px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-padding: 100px 0;
}

/* ============================================
   Base Styles & Reset
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark-navy);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark-navy);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light-navy);
}

/* ============================================
   Utility Classes
============================================ */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gradient-glow);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--theme-primary-dark);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-badge i {
    font-size: 0.9rem;
}

.section-header h2 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark-navy) 0%, var(--text-light-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Advanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--theme-primary);
    color: var(--theme-primary);
}

.btn-outline:hover {
    background: var(--theme-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-dark-navy);
}

.btn-glass:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

/* ============================================
   Header / Navbar - Glassmorphism
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition-normal);
}

.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.1);
    padding: 8px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: -1px;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark-navy);
    letter-spacing: -0.5px;
}

.logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
}

.nav-link {
    font-weight: 500;
    color: var(--text-light-navy);
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--theme-primary);
    color: white;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-buttons .btn-whatsapp {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark-navy);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header-section{
    min-height: 90px;
}

/* ============================================
   Footer - Modern Design
============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--theme-primary);
    transform: translateY(-5px);
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
    text-align: left;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--theme-primary);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}


.footer-links ul li a:hover {
    color: var(--theme-primary);
    padding-left: 5px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-contact h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
    text-align: left;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--theme-primary);
    border-radius: 2px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(0, 191, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    flex-shrink: 0;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--theme-primary);
}

/* ============================================
   Fixed WhatsApp Button
============================================ */
.fixed-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-normal);
}

.fixed-whatsapp::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    z-index: -1;
}

.fixed-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.fixed-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: 50%;
    z-index: -2;
}

/* ============================================
   Scroll Progress Bar
============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ============================================
   Back to Top Button
============================================ */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Pagination */
.pagination-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--theme-primary);
    background: transparent;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination-btn:hover:not(.disabled) {
    background: var(--theme-primary);
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination-number:hover:not(.active) {
    background: var(--bg-section);
    color: var(--theme-primary);
}

.pagination-number.active {
    background: var(--gradient-primary);
    color: white;
}

.pagination-dots {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 0 5px;
}

/* ============================================
   Responsive Design - Header & Footer
============================================ */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 10px;
        transition: var(--transition-normal);
        border-radius: 0;
        border: none;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-buttons .btn {
        display: none;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding-bottom: 35px;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand > p {
        max-width: 500px;
        margin: 0 auto 25px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .header-section{
        min-height: 78px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand > p {
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 12px;
    }

    .footer-links ul li a {
        font-size: 0.9rem;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
        margin-bottom: 15px;
    }

    .footer-contact-item i {
        width: 38px;
        height: 38px;
    }

    .footer-contact-item span {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 25px;
        padding-bottom: 25px;
    }

    .footer-brand .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .footer-brand .logo-text {
        font-size: 1.2rem;
    }

    .footer-brand > p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .footer-contact-item {
        align-items: center;
        text-align: center;
        gap: 10px;
        justify-content: start;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    .fixed-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}



body.menu-open {
    overflow: hidden;
}

/* ============================================
   Load More Button Styles
============================================ */
.load-more-reviews {
    text-align: center;
    margin-top: 30px;
}
