/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #249948;
    --dark-green: #016938;
    --light-green: #3BB14A;
    --accent-green: #44AE49;
    --white: #FFFFFF;
    --light-bg: #F2F4F1;
    --gray-text: #666666;
    --border-color: #dedede;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-text);
    background: var(--white);
    overflow-x: hidden;
    font-size: 14px;
}

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

ul {
    list-style: none;
}

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

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

/* Section titles - matching original site */
.section-title {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 1px;
}

.section-title.text-white { color: var(--white); }
.section-title.text-green { color: var(--accent-green); }

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 16px;
    margin-bottom: 30px;
}

.section-subtitle.text-white { color: rgba(255,255,255,0.85); }

/* ==================== HEADER ==================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
}

/* Green gradient top bar - exact match */
.header-top {
    background: linear-gradient(to right, #016938, rgba(1,105,56,0.98), #3BB04A, rgba(59,176,74,0.96));
    padding: 3px 0;
    height: 28px;
    display: flex;
    align-items: center;
}

.header-top-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

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

.header-top-logo img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header-top .nav-icons {
    display: flex;
    gap: 0;
    align-items: center;
}

.header-top .nav-icon {
    padding: 6px 10px;
    display: flex;
    align-items: center;
}

.header-top .nav-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Navbar - exact match: height 92.5px, shadow */
.navbar-main {
    padding: 0;
    box-shadow: rgb(223, 223, 223) 0px 10px 10px -6px;
}

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

/* Logo - original is 240x73 */
.logo img {
    height: 73px;
    width: auto;
}

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

/* Nav links - exact match: green color, 14px, weight 400 */
.nav-menu > li > a {
    display: block;
    padding: 34px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-green);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--dark-green);
    font-weight: 600;
}

.nav-menu > li > a i {
    font-size: 10px;
    margin-left: 4px;
}

.has-dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-menu-custom li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-menu-custom li a:hover {
    background: var(--light-bg);
    color: var(--primary-green);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s;
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    margin-top: 120px;
}

.heroSwiper {
    width: 100%;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
}

/* Pagination bullets - match original green */
.heroSwiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
    width: 10px;
    height: 10px;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--accent-green);
    opacity: 1;
}

/* ==================== QUICK ACTIONS (Buy Section) ==================== */
.quick-actions {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

/* Cards - exact match: border-radius 10px, shadow */
.quick-action-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 5px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 15px 8px;
}

.quick-action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.quick-action-icon i {
    color: var(--white);
    font-size: 24px;
}

/* Title - exact match: #44AE49, 24px */
.quick-action-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.quick-action-card p {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.quick-action-link {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
}

/* ==================== INSURANCE SELECTOR ==================== */
.insurance-selector {
    background: var(--light-bg);
    padding: 40px 0;
    background-image: url('images/theme/bg_insurance.png');
    background-size: cover;
    background-position: center;
}

.insurance-selector-inner {
    text-align: center;
}

.insurance-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.insurance-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.insurance-desc {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 20px;
}

.insurance-select-wrapper {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 0;
}

.insurance-select {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--primary-green);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-text);
    outline: none;
    background: var(--white);
    appearance: auto;
}

.btn-buy-now {
    background: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-buy-now:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

/* ==================== PRODUCTS SECTION ==================== */
/* Exact match: bg-image product_bg.jpg, cover, large 50px italic title */
.products-section {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--dark-green);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Product cards - exact match: 30px border-radius on images */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.product-img {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

/* Product titles - match: dark green, bold uppercase */
.product-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
    line-height: 1.4;
    text-transform: uppercase;
}

.product-info p {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 500;
    text-transform: uppercase;
}

.product-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.btn-product-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    transition: background 0.3s;
}

.btn-product-cta:hover::before {
    background: rgba(0,0,0,0.5);
}

.btn-product-cta span {
    position: relative;
    z-index: 1;
}

.btn-product-other {
    background-color: var(--primary-green);
}

/* ==================== CUSTOMER EXPERIENCE ==================== */
.customer-experience {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-color: var(--light-bg);
}

.testimonialSwiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 3px;
}

.testimonial-name {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.stars i { margin-right: 2px; }

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-text);
    font-style: italic;
}

.testimonialSwiper .swiper-pagination-bullet {
    background: var(--accent-green);
}

/* ==================== NEWS & EVENTS ==================== */
/* Match: bg_news.jpg background, white italic title */
.news-section {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-color: var(--white);
}

/* Tabs - exact match: accent green active, 2px border-bottom */
.news-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.news-tab {
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: none;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
    white-space: nowrap;
    text-transform: uppercase;
}

.news-tab:hover,
.news-tab.active {
    color: var(--accent-green);
    border-bottom-color: var(--light-green);
}

.news-tab-content {
    display: none;
}

.news-tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.news-featured-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.news-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-featured-card:hover img {
    transform: scale(1.03);
}

.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.news-featured-overlay h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.news-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateX(3px);
}

.news-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-item-content {
    flex: 1;
    min-width: 0;
}

.news-item-content h4 {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-content p {
    font-size: 11px;
    color: var(--gray-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.news-date {
    font-size: 11px;
    color: var(--primary-green);
    font-weight: 600;
}

/* ==================== PARTNERS ==================== */
.partners-section {
    background: var(--white);
}

.partners-header {
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    background-color: var(--dark-green);
}

.partners-logos {
    padding: 40px 0;
    background: var(--white);
}

.partnerSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partnerSwiper .swiper-slide img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s;
}

.partnerSwiper .swiper-slide img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partners-actions {
    padding: 0 0 40px;
}

.partners-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.partner-action-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    transition: all 0.3s;
}

.partner-action-card:hover {
    background: var(--primary-green);
    color: var(--white);
}

.partner-action-card span {
    font-size: 14px;
    font-weight: 600;
}

.partner-action-card img {
    width: 80px;
}

/* ==================== CONTACT SECTION ==================== */
/* Match: green gradient from light to dark */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #3BB14A, #016938);
    background-size: cover;
    background-position: center;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-form-area h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    font-style: italic;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input {
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.contact-form input:focus {
    box-shadow: 0 0 0 3px rgba(36, 153, 72, 0.3);
}

.btn-submit {
    padding: 14px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--light-green);
}

.contact-hotline {
    text-align: center;
}

.contact-hotline h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    font-style: italic;
}

.hotline-number {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    transition: all 0.3s;
}

.hotline-number:hover {
    transform: scale(1.05);
    color: #a0f0b0;
}

.hotline-icon {
    width: 50px;
    height: 50px;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ==================== FOOTER ==================== */
/* Match: green gradient bg, white headings 21px, white text 12px */
.main-footer {
    background: linear-gradient(to bottom, #3BB14A, #016938);
    color: var(--white);
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1.2fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

/* Footer headings - exact 21px white bold */
.footer-col h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

/* Footer text - exact 12px white */
.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

.footer-info-list li img {
    width: 18px;
    margin-top: 2px;
    filter: brightness(0) invert(1);
}

.footer-info-list li a {
    color: rgba(255,255,255,0.9);
}

.footer-info-list li a:hover {
    color: var(--white);
    text-decoration: underline;
}

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

.footer-links ul li a {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

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

.footer-newsletter p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 6px 0 0 6px;
    font-size: 12px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    background: var(--dark-green);
    border: none;
    padding: 10px 15px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #015a30;
}

.newsletter-form button img {
    width: 20px;
    filter: brightness(0) invert(1);
}

.mt-3 { margin-top: 15px; }

.app-download {
    display: flex;
    gap: 10px;
}

.app-download a img {
    height: 40px;
    transition: transform 0.3s;
}

.app-download a:hover img {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.social-icons a img {
    width: 28px;
    height: 28px;
    opacity: 0.9;
    transition: all 0.3s;
}

.social-icons a:hover img {
    opacity: 1;
    transform: translateY(-3px);
}

.copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ==================== FLOATING ELEMENTS ==================== */
.floating-hotline {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    animation: float-bounce 2s ease-in-out infinite;
    background: var(--white);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(36, 153, 72, 0.4);
}

.floating-hotline img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .nav-menu > li > a {
        padding: 34px 10px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        margin-top: 100px;
    }

    .navbar-inner {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 60px 20px 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 1002;
        overflow-y: auto;
    }

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

    .nav-menu > li > a {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
    }

    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }

    .nav-icons {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .news-tab-content.active {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .partners-actions-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .hero-slider {
        margin-top: 90px;
    }

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

    .section-title {
        font-size: 26px;
    }

    .product-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-product-cta {
        min-width: 100%;
    }

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

    .news-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .hotline-number {
        font-size: 28px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}
