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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Top Info Bar */
.top-info-bar {
    background: #2c2c2c;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-info-bar .container {
    max-width: 1400px;
}

.top-info-bar .row {
    width: 100%;
}

.top-info-bar .col-12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.top-info-bar a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s;
}

.top-info-bar a:hover {
    color: #26a69a;
}

.top-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.top-info-bar .info-item:first-child {
    flex: 1 1 auto;
}

.top-info-bar .info-item i {
    color: #d0d0d0;
    font-size: 13px;
    min-width: 16px;
}

.top-info-bar .info-item a {
    line-height: 1.4;
    font-weight: 500;
    white-space: nowrap;
}

.top-info-bar .info-item:first-child a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main Header */
.main-header {
    background: #000000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    max-width: 1400px;
}

.main-header .row {
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    background: transparent;
}

.main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    background: transparent;
}

.main-nav > li {
    position: relative;
    margin-left: 20px;
    display: inline-block;
    background: transparent;
}

.main-nav > li:first-child {
    margin-left: 0;
}

.main-nav > li > a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 6px;
    white-space: nowrap;
}

.main-nav > li > a:hover {
    color: #26a69a;
    background: rgba(38, 166, 154, 0.2);
    transform: translateY(-2px);
}

.main-nav > li > a.active {
    color: #ffffff;
    background: #26a69a;
    box-shadow: 0 4px 8px rgba(38, 166, 154, 0.3);
}

.main-nav .dropdown-toggle.active {
    color: #ffffff !important;
    background: #17a295 !important;
    box-shadow: 0 4px 8px rgba(23, 162, 149, 0.3) !important;
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: relative;
    background: transparent;
}

.main-nav .dropdown-toggle {
    background: transparent !important;
    cursor: pointer;
    border: none !important;
    outline: none !important;
}

.main-nav .dropdown-toggle::before {
    display: none !important;
}

.main-nav .dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    margin-left: 6px;
    opacity: 0.7;
    border: none !important;
    background: none !important;
}

.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 12px 0;
    padding-top: 20px;
    margin-top: 0;
    z-index: 1000;
    list-style: none;
    border: 1px solid #f0f0f0;
}

.main-nav .dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

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

/* Invisible hover bridge to prevent dropdown from closing */
.main-nav .dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.main-nav .dropdown-menu li {
    list-style: none;
    background: transparent;
}

.main-nav .dropdown-menu li a {
    color: #555;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.main-nav .dropdown-menu li a:hover {
    background: #f7f7f7;
    color: #26a69a;
    padding-left: 28px;
}

.main-nav .dropdown-menu li a.active {
    background: #26a69a;
    color: #fff;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    margin-left: auto;
    margin-right: 15px;
}

.mobile-close {
    display: none;
    position: absolute;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #006D5B;
}

.faq-main-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.faq-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    transition: all 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-icon {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006D5B;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-icon .arrow-closed {
    display: block;
}

.faq-icon .arrow-opened {
    display: none;
}

.faq-item.active .faq-icon .arrow-closed {
    display: none;
}

.faq-item.active .faq-icon .arrow-opened {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 75px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Footer Styles */
.footer-section {
    background: #020f31;
    color: #fff;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #26a69a;
    display: inline-block;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.payment-icon {
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.payment-icon:hover {
    transform: translateY(-3px);
}

.payment-icon svg {
    width: 50px;
    height: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: #26a69a;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}

.footer-contact li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact li a:hover {
    color: #26a69a;
}

.footer-contact li strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.footer-contact li i {
    color: #26a69a;
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.twitter {
    background: #1DA1F2;
}

.social-icon.linkedin {
    background: #0A66C2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon.pinterest {
    background: #E60023;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.footer-bottom {
    background: #020f31;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
}

/* WhatsApp Floating Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

/* Desktop Styles - ensure horizontal menu */
@media (min-width: 992px) {
    .main-nav {
        flex-direction: row !important;
    }

    .main-nav > li {
        display: inline-block !important;
    }

    /* Hide any ::before element on desktop */
    nav::before,
    .main-nav::before {
        display: none !important;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .top-info-bar {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-close {
        display: block;
    }

    .main-header .col-6:last-child {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: #020f31;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: flex-start;
    }

    nav:has(.main-nav.active) {
        transform: translateX(0);
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0 0 0;
        width: 100%;
        position: relative;
        transform: none;
    }

    /* Backdrop overlay */
    nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
        pointer-events: none;
    }

    nav:has(.main-nav.active)::before {
        opacity: 1;
        visibility: visible;
    }

    .main-nav > li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav > li > a {
        padding: 15px 20px;
        color: #fff;
    }

    .main-nav > li > a.active {
        color: #ffffff;
        background: #26a69a;
    }

    .main-nav .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0;
        padding-left: 15px;
    }

    /* Disable hover effect on mobile - only use .active class for toggle */
    .main-nav .dropdown:hover .dropdown-menu {
        display: none;
    }

    .main-nav .dropdown.active .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu li a {
        color: #fff;
    }

    .main-nav .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #26a69a;
    }

    .main-nav .dropdown-menu li a.active {
        background: #26a69a;
        color: #fff;
    }

    .main-nav .dropdown-toggle.active {
        color: #ffffff !important;
        background: #17a295 !important;
    }

    .mobile-close {
        position: fixed;
        top: 15px;
        right: 20px;
        font-size: 28px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
    }

    /* FAQ Responsive */
    .faq-section {
        padding: 60px 0;
    }

    .faq-main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-title {
        font-size: 17px;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 20px 65px;
    }

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

    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center !important;
    }

    .footer-logo img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: 45px;
    }

    .top-info-bar .info-item {
        display: block;
        margin-bottom: 8px;
    }

    /* FAQ Responsive */
    .faq-section {
        padding: 40px 0;
    }

    .faq-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 18px 20px;
        gap: 12px;
    }

    .faq-icon {
        min-width: 25px;
        height: 25px;
        font-size: 18px;
    }

    .faq-title {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px 57px;
    }

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

    .footer-heading {
        text-align: center !important;
    }

    .payment-methods {
        justify-content: center;
    }

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

    .footer-contact li {
        text-align: center;
    }

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

    .whatsapp-floating-btn {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
/* Force reload 1763799293 */
