/* ===================================
   CLARITY - Premium Glass Furniture
   Color Scheme: Clarus-inspired
   =================================== */

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

:root {
    --primary-blue: #2ac5fa;
    --dark-gray: #3C3C3C;
    --light-gray: #ECECEC;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --hover-blue: #1fb3e8;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.6em;
    overflow-x: hidden;
    font-weight: 400;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}


h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5, h6 {
    font-size: 1rem;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 40px;
    z-index: 999;
    transition: top 0.3s ease;
}

.header.scrolled {
    top: 0;
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    height: 70px;
    position: relative;
}

.nav-wrapper .logo {
    position: absolute;
    left: 0;
}

.nav-contact {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.nav-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.nav-phone-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.nav-phone-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-phone-number:hover {
    color: var(--text-dark);
}

.logo a {
    text-decoration: none;
    color: var(--text-dark);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
}

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

.arrow {
    font-size: 8px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.dropdown:hover .arrow,
.mega-dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    z-index: 1000;
    padding-left: 100px;
    padding-right: 100px;
    border-radius: 8px;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.mega-menu-column h4 {
    font-family: 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 12px;
}

.mega-menu-column ul li a {
    color: #666;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Regular Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 12px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
}

.dropdown-menu a:hover {
    background: var(--primary-blue);
    color: var(--white);
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SLIDER
   =================================== */

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 0;
    right: 0;
    bottom: -300px;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.slide-title {
    font-family: 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #B0B0B0;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-btn:hover {
    color: var(--white);
    transform: translateY(-50%) scale(1.2);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    width: 35px;
    border-radius: 6px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6em;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(42, 197, 250, 0.2);
}

.btn-primary:hover {
    background: var(--hover-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 197, 250, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(42, 197, 250, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 197, 250, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:active {
    transform: translateY(-1px);
}

/* ===================================
   BANNER SECTION
   =================================== */

.banner-section {
    background: linear-gradient(135deg, var(--light-gray));
    padding: 60px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.banner-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.banner-item h3 {
    font-family: 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 25px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   SECTIONS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 33px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.products-section {
    padding: 80px 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bestseller-grid {
    grid-template-columns: repeat(3, 1fr);
}

.hidden-product {
    display: none;
}

.show-more-container {
    text-align: center;
    margin-top: 40px;
}

#showMoreBtn {
    padding: 12px 40px;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card-link:hover .product-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-link:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

/* ===================================
   MARKETS SECTION
   =================================== */

.markets-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.markets-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.market-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.market-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-text h3 {
    font-family: 'IBM Plex Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 29px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.market-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
}

/* ===================================
   CASE STUDIES SECTION
   =================================== */

.case-studies-section {
    padding: 80px 0;
    background: var(--white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-image img {
    transform: scale(1.05);
}

.case-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 33px;
    margin-bottom: 15px;
    font-weight: 700;
}

.case-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.case-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.case-link:hover {
    gap: 8px;
    color: var(--hover-blue);
}

/* ===================================
   CLIENTS SECTION
   =================================== */

.clients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 120px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* ===================================
   CTA BANNER
   =================================== */

.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--hover-blue) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 15px;
    background: rgba(42, 197, 250, 0.1);
    border-left: 3px solid var(--primary-blue);
    border-radius: 5px;
}

.location-icon {
    font-size: 18px;
    filter: grayscale(100%) brightness(200%);
}

.location-badge strong {
    color: var(--white);
    font-size: 14px;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    transform: scale(1.1) translateY(-5px);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--dark-gray);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        bottom: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease, top 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0 60px 0;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        overflow-y: scroll !important;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
    }

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

    .nav-item {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 20px 40px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        background: transparent;
    }

    .nav-link:hover {
        background: rgba(42, 197, 250, 0.05);
        color: var(--primary-blue);
    }

    .nav-item.mega-dropdown .nav-link {
        position: relative;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-dropdown:hover .mega-menu,
    .mega-dropdown.active .mega-menu {
        visibility: visible;
        max-height: 1000px;
        padding: 20px 0;
        background: rgba(42, 197, 250, 0.02);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .mega-menu-column {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mega-menu-column:last-child {
        border-bottom: none;
    }

    .mega-menu-column h4 {
        font-size: 14px;
        margin-bottom: 10px;
        color: var(--primary-blue);
        padding: 12px 15px;
        background: rgba(42, 197, 250, 0.08);
        border-radius: 6px;
        position: relative;
        cursor: pointer;
        user-select: none;
    }

    .mega-menu-column h4::after {
        content: '▼';
        position: absolute;
        right: 15px;
        font-size: 10px;
        transition: transform 0.3s ease;
    }

    .mega-menu-column.active h4::after {
        transform: rotate(180deg);
    }

    .mega-menu-column ul {
        padding-top: 10px;
    }

    .mega-menu-column ul li a {
        padding: 8px 0;
        font-size: 14px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin-top: 10px;
        display: none;
    }

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

    .hamburger {
        display: flex;
        position: absolute;
        right: 0;
    }

    .hero-slider {
        height: 80.5vh;
        min-height: 575px;
    }

    .slide-image img {
        object-position: center center;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-text {
        font-size: 16px;
    }

    .market-content {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bestseller-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .banner-section {
        padding: 40px 0;
    }

    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .banner-item {
        padding: 20px 15px;
    }

    .banner-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .banner-item h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .banner-item p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* Banner items - 1 column on mobile, stretched horizontally, half height */
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .banner-item {
        padding: 15px 20px;
        height: auto;
        min-height: 60px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .banner-icon {
        font-size: 28px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .banner-item h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .banner-item p {
        font-size: 10px;
    }

    /* Clients section - 2 columns on mobile, smaller logos */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-logo {
        padding: 15px;
        height: 80px;
    }

    .client-logo img {
        max-height: 40px;
    }

    .product-grid,
    .bestseller-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 69vh;
        min-height: 518px;
    }

    .slide-image img {
        object-fit: cover;
        object-position: center 40%;
    }

    .slide-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .slide-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-content .container {
        padding: 0 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Market section - reduce image height by 60% on mobile */
    .market-image {
        height: 160px;
    }
}

@media (max-width: 400px) {
    .banner-grid {
        gap: 12px;
    }

    .banner-item {
        padding: 15px 10px;
    }

    .banner-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .banner-item h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .banner-item p {
        font-size: 10px;
        line-height: 1.3;
    }

    .slide-title {
        font-size: 20px;
    }

    .slide-title {
        font-size: 20px;
    }

    .slide-text {
        font-size: 12px;
    }
}

/* ===================================
   SALE BANNER
   =================================== */

.sale-banner {
    background: linear-gradient(135deg, #3d84ff 0%, #0fb06b 100%);
    overflow: hidden;
    height: 40px;
    top: 0;
    z-index: 1000;
}

.sale-banner-content {
    display: flex;
    white-space: nowrap;
    animation: scrollBanner 20s linear infinite;
}

.sale-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 0;
    display: inline-block;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 968px) {
    .nav-contact {
        display: none;
    }

    .sale-banner {
        height: 35px;
    }

    .sale-text {
        font-size: 14px;
    }
}
