/* =============================================
   Active Club - Complete Stylesheet
   Matching WordPress Porto Theme Design
   ============================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* -----------------------------------------
   2. Header
   ----------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Offset scroll targets for sticky header */
section[id] {
    scroll-margin-top: 90px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo .logo-img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active-link {
    color: #f1c229;
}

.btn-download {
    background-color: #222;
    color: #fff !important;
    border-radius: 30px;
    padding: 12px 28px !important;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #000;
    color: #fff !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.lang-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    background: #f1c233;
    color: #000;
    border-color: #f1c233;
}

.side-nav-lang {
    padding: 10px 25px;
    border-top: 1px solid #eee;
}

.side-nav-lang .lang-link {
    display: inline-block;
}

/* -----------------------------------------
   3. Side Navigation (Mobile)
   ----------------------------------------- */
.side-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-nav-panel {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.side-nav-panel.open {
    left: 0;
}

.side-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.side-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 4px;
}

.side-nav-menu {
    padding: 20px 0;
}

.side-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.side-nav-menu a {
    display: block;
    padding: 14px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: background-color 0.2s ease;
}

.side-nav-menu a:hover {
    background-color: #f9f9f9;
}

.side-nav-menu .btn-download {
    display: inline-block;
    margin: 15px 25px;
    text-align: center;
}

.side-nav-social {
    display: flex;
    gap: 15px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.side-nav-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.side-nav-social a:hover {
    background: #f0b72f;
    color: #fff;
}

/* -----------------------------------------
   4. Hero Section
   ----------------------------------------- */
.hero-section {
    background: #fff;
    padding: 80px 0 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text-col {
    flex: 1;
    min-width: 0;
}

.hero-heading {
    font-size: 2.125rem;
    font-weight: 600;
    font-style: italic;
    color: #f1c233;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    height: 55px;
    width: auto;
    border: 2px solid #333;
    border-radius: 10px;
}

.hero-image-col {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.hero-phones {
    max-width: 100%;
    height: auto;
}

/* -----------------------------------------
   5. Get Started Now Section
   ----------------------------------------- */
.get-started-section {
    padding: 80px 0;
    background: #fff;
}

.get-started-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.get-started-image-col {
    flex: 1;
    min-width: 0;
}

.get-started-phones {
    max-width: 100%;
    height: auto;
}

.get-started-text-col {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.get-started-heading {
    font-size: 2.125rem;
    font-weight: 600;
    font-style: italic;
    color: #f1c233;
    margin-bottom: 20px;
}

.get-started-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.get-started-cycle {
    margin-top: 30px;
}

.cycle-img {
    max-width: 310px;
    margin: 0 auto;
}

/* -----------------------------------------
   6. Download Section
   ----------------------------------------- */
.download-section {
    background-color: #222;
    padding: 40px 0;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.store-btn-dark {
    height: 55px;
    width: auto;
    border: 2px solid #555;
    border-radius: 10px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.store-btn-dark:hover {
    opacity: 1;
}

/* -----------------------------------------
   7. Brands Section
   ----------------------------------------- */
.brands-section {
    padding: 80px 0;
    background: #fff;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.brands-heading {
    font-size: 2.125rem;
    font-weight: 700;
    font-style: italic;
    color: #f2c73b;
    margin-bottom: 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px 25px;
    transition: box-shadow 0.3s ease;
}

.brand-card:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.brand-logo-wrap {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-logo {
    max-height: 100px;
    max-width: 250px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
}

/* -----------------------------------------
   8. Contact Section
   ----------------------------------------- */
.contact-section {
    padding: 80px 0 0;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-text-col {
    flex: 1;
    min-width: 0;
}

.contact-heading {
    font-size: 2.125rem;
    font-weight: 600;
    font-style: italic;
    color: #f1c233;
    margin-bottom: 15px;
}

.contact-text {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
}

.contact-phone {
    font-family: 'Roboto', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    display: block;
    letter-spacing: 2px;
}

.contact-phone:hover {
    color: #f0b72f;
}

.contact-image-col {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.contact-phones {
    max-width: 100%;
    height: auto;
}

/* Contact Form */
.contact-form-wrapper {
    margin-top: 30px;
}

.contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-input,
.contact-form .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: #e8491d;
}

.contact-form .form-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .form-submit-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #e8491d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form .form-submit-btn:hover {
    background: #d03d15;
}

.form-status {
    margin-top: 15px;
    font-size: 0.9rem;
}

.form-status.success {
    color: #28a745;
}

.form-status.error {
    color: #dc3545;
}

/* -----------------------------------------
   9. Footer
   ----------------------------------------- */
.site-footer {
    background: #000;
    color: #fff;
}

.footer-main {
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
    min-width: 0;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #999;
    text-align: justify;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: #999;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f0b72f;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background: #f0b72f;
    color: #fff;
}

.footer-copyright {
    background: #191919;
    padding: 18px 0;
    text-align: center;
}

.footer-copyright p {
    font-family: 'Roboto', 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #fff;
}

/* -----------------------------------------
   10. Scroll to Top Button
   ----------------------------------------- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background-color: #f0b72f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

.scroll-to-top:hover {
    background-color: #d9a429;
}

/* -----------------------------------------
   11. Responsive Styles
   ----------------------------------------- */

/* Tablets and below */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero */
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-phones {
        max-width: 500px;
    }

    /* Get Started */
    .get-started-container {
        flex-direction: column;
    }

    .get-started-phones {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Brands */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-phones {
        max-width: 500px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 35px;
    }

    .footer-text {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header-container {
        padding: 10px 20px;
    }

    .header-logo .logo-img {
        height: 45px;
    }

    /* Hero */
    .hero-section {
        padding: 50px 0 40px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .store-btn {
        height: 45px;
    }

    .hero-phones {
        max-width: 350px;
    }

    /* Get Started */
    .get-started-section {
        padding: 50px 0;
    }

    .get-started-container {
        padding: 0 20px;
        gap: 40px;
    }

    .get-started-heading {
        font-size: 1.8rem;
    }

    .get-started-text {
        font-size: 0.95rem;
    }

    .get-started-phones {
        max-width: 100%;
    }

    /* Download */
    .download-container {
        flex-direction: column;
        gap: 15px;
    }

    .store-btn-dark {
        height: 50px;
    }

    /* Brands */
    .brands-section {
        padding: 50px 0;
    }

    .brands-container {
        padding: 0 20px;
    }

    .brands-heading {
        font-size: 1.8rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-section {
        padding: 50px 0 0;
    }

    .contact-container {
        padding: 0 20px;
        gap: 40px;
    }

    .contact-heading {
        font-size: 1.8rem;
    }

    .contact-phone {
        font-size: 2rem;
    }

    .contact-phones {
        max-width: 300px;
    }

    /* Footer */
    .footer-main {
        padding: 30px 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    /* Scroll to top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-heading,
    .get-started-heading,
    .brands-heading,
    .contact-heading {
        font-size: 1.5rem;
    }

    .hero-description,
    .get-started-text {
        font-size: 0.9rem;
    }

    .store-btn {
        height: 40px;
    }

    .contact-phone {
        font-size: 1.6rem;
    }
}

/* -----------------------------------------
   12. Utility & Animation Classes
   ----------------------------------------- */

/* Selection color */
::selection {
    background-color: #f0b72f;
    color: #fff;
}

::-moz-selection {
    background-color: #f0b72f;
    color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* -----------------------------------------
   13. Page Banner (Subpages)
   ----------------------------------------- */
.page-banner {
    background-color: #f1c233;
    padding: 50px 0 40px;
    text-align: center;
}

.page-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.page-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #555;
}

.breadcrumb a {
    color: #555;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb-sep {
    margin: 0 8px;
}

/* -----------------------------------------
   14. Page Content (Subpages)
   ----------------------------------------- */
.page-content {
    padding: 50px 0 80px;
    background: #fff;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Prose: styled content blocks */
.prose {
    text-align: justify;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.prose p {
    margin-bottom: 18px;
}

.prose h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 35px 0 15px;
}

.prose h4:first-child {
    margin-top: 0;
}

.prose ol,
.prose ul {
    margin: 15px 0 20px 25px;
}

.prose ol {
    list-style: decimal;
}

.prose ul {
    list-style: disc;
}

.prose li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.prose ol ol {
    list-style: lower-alpha;
    margin: 10px 0 10px 20px;
}

.prose strong {
    color: #333;
}

/* -----------------------------------------
   15. Accordion (FAQs)
   ----------------------------------------- */
.accordion {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #e8e8e8;
}

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

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    text-align: left;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background-color: #fafafa;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    margin-left: 15px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: #999;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
    padding: 0 25px 20px;
}

.accordion-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body ul {
    list-style: disc;
    margin: 10px 0 10px 20px;
}

.accordion-body ul li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

/* Responsive: Subpages */
@media (max-width: 767px) {
    .page-banner {
        padding: 35px 0 30px;
    }

    .page-banner-title {
        font-size: 1.8rem;
    }

    .page-container {
        padding: 0 20px;
    }

    .accordion-header {
        padding: 15px 18px;
        font-size: 0.9rem;
    }

    .accordion-item.active .accordion-body {
        padding: 0 18px 15px;
    }
}

@media (max-width: 480px) {
    .page-banner-title {
        font-size: 1.5rem;
    }
}
