/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fafafa;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ==================== NAVBAR (Contact Style) ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid #FFE0B2;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
    animation: float 3s ease-in-out infinite;
}

.logo h1 {
    font-size: 24px;
    background: linear-gradient(135deg, #F57C00, #FF7043);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3E2723;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link i {
    font-size: 18px;
    color: #FFA726;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFA726, #FF7043);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #F57C00;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #FFA726, #FF7043);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
    text-decoration: none;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #3E2723;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTION */
.hero {
    min-height: 600px;
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.3), rgba(231, 111, 81, 0.3)),
            url("images/maxy.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h2 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero p {
    font-size: 20px;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.hero .cta {
    background: white;
    color: #e76f51;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
    letter-spacing: 0.5px;
}

.hero .cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.hero .cta:active {
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ABOUT US SECTION */
.about-us {
    padding: 80px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5eb 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 111, 81, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-us h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.about-us h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.about-us p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.about-us p:last-child {
    margin-bottom: 0;
}

/* SAMPLE PRODUCTS SECTION */
.sample-products {
    padding: 80px 60px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.sample-products::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(231, 111, 81, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sample-products h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.sample-products h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.products-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* CAROUSEL CONTAINER */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 300px;
    max-width: 300px;
    height: 350px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 40px 15px 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* CAROUSEL BUTTONS */
.carousel-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #e76f51;
    flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
    background: #e76f51;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.carousel-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn svg {
    pointer-events: none;
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
    padding: 80px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5eb 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.why-choose-us h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.why-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* FEATURES CAROUSEL */
.features-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-carousel-wrapper {
    overflow: hidden;
    flex: 1;
}

.features-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card {
    min-width: 350px;
    max-width: 350px;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(231, 111, 81, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    stroke: #e76f51;
    transition: stroke 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon svg {
    stroke: white;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* FEATURES CAROUSEL BUTTONS */
.features-carousel-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #e76f51;
    flex-shrink: 0;
}

.features-carousel-btn:hover:not(:disabled) {
    background: #e76f51;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.features-carousel-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.features-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.features-carousel-btn svg {
    pointer-events: none;
}

/* ==================== FOOTER STYLES ==================== */

.footer {
     background: linear-gradient(135deg, #3E2723 0%, #1B0B0A 100%);
    color: #ffffff;
    padding: 60px 60px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.5), transparent);
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

/* Footer Sections */
.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 24px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.footer-logo {
    font-size: 24px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #f4a261;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #f4a261;
}

/* Newsletter Section */
.newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    backdrop-filter: blur(10px);
}

.newsletter h4 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #f4a261;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 14px 32px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.4);
}

.newsletter-form button:active {
    transform: translateY(0);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icons svg {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons svg:hover {
    opacity: 1;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Large Desktop */
@media (max-width: 1400px) {
    .hero h2 {
        font-size: 56px;
    }
}

/* Tablets and small desktops (up to 992px) */
@media (max-width: 992px) {
    .nav-container {
        padding: 0 30px;
    }

    .navbar nav {
        gap: 24px;
    }

    .hero h2 {
        font-size: 56px;
    }

    .hero p {
        font-size: 19px;
        max-width: 550px;
    }

    .about-us {
        padding: 70px 40px;
    }

    .about-us h2 {
        font-size: 42px;
    }

    .sample-products {
        padding: 70px 40px;
    }

    .sample-products h2 {
        font-size: 42px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-slide {
        min-width: 280px;
        max-width: 280px;
    }

    .slide-caption {
        font-size: 17px;
    }

    .why-choose-us {
        padding: 70px 40px;
    }

    .why-choose-us h2 {
        font-size: 42px;
    }

    .features-carousel-container {
        padding: 0 50px;
    }

    .feature-card {
        min-width: 320px;
        max-width: 320px;
    }

    .footer {
        padding: 50px 40px 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 40px;
    }

    .newsletter {
        padding: 35px;
    }
}

/* Tablets (up to 768px) - HAMBURGER MENU ACTIVATES */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .logo-icon {
        font-size: 28px;
    }

   /* HAMBURGER MENU - FIXED VERSION */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #3E2723;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE NAVIGATION - TABLETS (up to 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .navbar nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff; /* WHITE BACKGROUND - THIS WAS MISSING! */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .navbar nav.active {
        right: 0;
    }

    .nav-link::after {
        display: none;
    }
}

/* MOBILE NAVIGATION - SMALL PHONES (up to 480px) */
@media (max-width: 480px) {
    .navbar nav {
        width: 100%;
        background: #ffffff; /* ENSURE WHITE BACKGROUND ON SMALLER SCREENS TOO */
    }
}
    .hero {
        min-height: 500px;
        padding: 50px 24px;
        margin-top: 66px;
    }

    .hero h2 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 18px;
        max-width: 500px;
        margin-bottom: 28px;
    }

    .hero .cta {
        padding: 16px 40px;
        font-size: 17px;
    }

    .about-us {
        padding: 60px 30px;
    }

    .about-us h2 {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .about-us p {
        font-size: 17px;
        line-height: 1.7;
        max-width: 700px;
    }

    .sample-products {
        padding: 60px 30px;
    }

    .sample-products h2 {
        font-size: 36px;
    }

    .products-description {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-slide {
        min-width: 260px;
        max-width: 260px;
        height: 300px;
    }

    .slide-caption {
        font-size: 16px;
        padding: 35px 12px 12px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .why-choose-us {
        padding: 60px 30px;
    }

    .why-choose-us h2 {
        font-size: 36px;
    }

    .why-description {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .features-carousel-container {
        padding: 0 40px;
    }

    .feature-card {
        min-width: 300px;
        max-width: 300px;
        padding: 35px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .features-carousel-btn {
        width: 45px;
        height: 45px;
    }

    .footer {
        padding: 40px 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
        max-width: 300px;
    }

    .newsletter {
        padding: 30px 25px;
    }

    .newsletter h4 {
        font-size: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .payment-methods {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small mobile phones (up to 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 26px;
    }

    .navbar nav {
        width: 100%;
    }

    .hamburger span {
        width: 25px;
    }

    .hero {
        min-height: 450px;
        padding: 40px 20px;
        margin-top: 60px;
    }

    .hero h2 {
        font-size: 36px;
        margin-bottom: 16px;
        letter-spacing: -0.8px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .hero .cta {
        padding: 14px 36px;
        font-size: 16px;
        letter-spacing: 0.3px;
    }

    .about-us {
        padding: 50px 20px;
    }

    .about-us h2 {
        font-size: 30px;
        margin-bottom: 28px;
        letter-spacing: -0.5px;
    }

    .about-us h2::after {
        width: 60px;
        height: 3px;
        margin-top: 16px;
    }

    .about-us p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .sample-products {
        padding: 50px 20px;
    }

    .sample-products h2 {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .sample-products h2::after {
        width: 60px;
        height: 3px;
    }

    .products-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 35px;
        padding: 0 5px;
    }

    /* Show all product images in grid on mobile */
    .carousel-container {
        padding: 0;
        gap: 0;
        display: block;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        overflow: visible;
    }

    .carousel-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        transform: none !important;
    }

    .carousel-slide {
        min-width: 100%;
        max-width: 100%;
        height: auto;
    }

    .carousel-slide img {
        height: 280px;
    }

    .slide-caption {
        font-size: 16px;
        padding: 30px 15px 15px;
    }

    .why-choose-us {
        padding: 50px 20px;
    }

    .why-choose-us h2 {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .why-choose-us h2::after {
        width: 60px;
        height: 3px;
    }

    .why-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 40px;
        padding: 0 5px;
    }

    /* Show all feature cards in grid on mobile */
    .features-carousel-container {
        padding: 0;
        gap: 0;
        display: block;
    }

    .features-carousel-btn {
        display: none;
    }

    .features-carousel-wrapper {
        overflow: visible;
    }

    .features-carousel-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        transform: none !important;
    }

    .feature-card {
        min-width: 100%;
        max-width: 100%;
        padding: 35px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 44px;
        height: 44px;
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    .footer {
        padding: 35px 20px 0;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 22px;
    }

    .footer-section h4 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links a svg {
        width: 20px;
        height: 20px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 14px;
    }

    .footer-contact li {
        gap: 10px;
        max-width: 280px;
    }

    .footer-contact svg {
        width: 16px;
        height: 16px;
    }

    .newsletter {
        padding: 25px 20px;
    }

    .newsletter h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .newsletter p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-form input,
    .newsletter-form button {
        padding: 12px 18px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .payment-methods {
        font-size: 13px;
    }

    .payment-icons svg {
        width: 36px;
        height: 24px;
    }
}

/* Extra small mobile phones (up to 360px) */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 14px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 3px 0;
    }

    .hero {
        min-height: 400px;
        padding: 36px 16px;
        margin-top: 56px;
    }

    .hero h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero .cta {
        padding: 12px 32px;
        font-size: 15px;
    }

    .about-us {
        padding: 45px 16px;
    }

    .about-us h2 {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .about-us h2::after {
        width: 50px;
    }

    .about-us p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .sample-products {
        padding: 45px 16px;
    }

    .sample-products h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .sample-products h2::after {
        width: 50px;
    }

    .products-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .carousel-track {
        gap: 18px;
    }

    .carousel-slide img {
        height: 250px;
    }

    .slide-caption {
        font-size: 15px;
        padding: 25px 8px 8px;
    }

    .why-choose-us {
        padding: 45px 16px;
    }

    .why-choose-us h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .why-choose-us h2::after {
        width: 50px;
    }

    .why-description {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .features-carousel-track {
        gap: 18px;
    }

    .feature-card {
        padding: 30px 18px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .feature-card h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .footer {
        padding: 30px 16px 0;
    }

    .footer-content {
        gap: 22px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 34px;
        height: 34px;
    }

    .social-links a svg {
        width: 18px;
        height: 18px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .footer-contact li {
        margin-bottom: 14px;
        max-width: 260px;
    }

    .footer-contact svg {
        width: 15px;
        height: 15px;
    }

    .newsletter {
        padding: 22px 16px;
    }

    .newsletter h4 {
        font-size: 17px;
    }

    .newsletter p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .newsletter-form input,
    .newsletter-form button {
        padding: 11px 16px;
        font-size: 13px;
    }

    .footer-bottom {
        padding: 16px 0;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .payment-methods {
        font-size: 12px;
        gap: 8px;
    }

    .payment-icons {
        gap: 6px;
    }

    .payment-icons svg {
        width: 34px;
        height: 22px;
    }
}







