/* Base Styles */
:root {
    /* Primary Colors */
    --orange: #F15A29;
    --purple: #6C45B3;
    --black: #000000;
    
    /* Secondary Colors */
    --light-orange: #FFAD81;
    --soft-purple: #B7A8E3;
    --light-gray: #F5F5F5;
    --medium-gray: #BDBDBD;
    --white: #FFFFFF;
    
    /* Typography Colors */
    --primary-text: #1E1E1E;
    --secondary-text: #666666;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-text);
    background-color: var(--white);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--light-orange);
}

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

.btn-secondary:hover {
    background-color: var(--light-orange);
    color: var(--white);
}

/* Header Styles */
.header-container {
    width: 100%;
}

.announcement-bar {
    background-color: var(--purple);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
}

.announcement-bar p {
    margin: 0;
    font-size: 0.9rem;
}

.announcement-bar .learn-more {
    color: var(--white);
    text-decoration: underline;
    margin-left: 5px;
    font-weight: 600;
}

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 0 0 150px;
}

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

.nav-links {
    display: flex;
    gap: 25px;
    margin: 0;
}

.nav-links li a {
    color: var(--primary-text);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--orange);
}

.nav-links li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

.nav-links li a:hover:after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-link {
    font-weight: 600;
    color: var(--white);
    background-color: var(--purple);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.shop-link:hover {
    background-color: var(--soft-purple);
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-text);
    position: relative;
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-text);
    transition: all 0.3s ease;
}

.menu-icon:before {
    top: -8px;
}

.menu-icon:after {
    bottom: -8px;
}

/* Sticky Header */
.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Mobile Menu - Complete Remake */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        animation: slideIn 0.3s forwards;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .menu-icon {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--primary-text);
        position: relative;
        margin: 0 auto;
        transition: all 0.3s ease;
    }
    
    .menu-icon:before,
    .menu-icon:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--primary-text);
        transition: all 0.3s ease;
    }
    
    .menu-icon:before {
        top: -8px;
    }
    
    .menu-icon:after {
        bottom: -8px;
    }
    
    .menu-toggle.active .menu-icon {
        background-color: transparent;
    }
    
    .menu-toggle.active .menu-icon:before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle.active .menu-icon:after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .mobile-nav-overlay.active {
        display: block;
        animation: fadeIn 0.3s forwards;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* Mobile elements styling */
    .mobile-elements {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background-color: var(--white);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .nav-links.active ~ .mobile-elements {
        transform: translateX(0);
    }
    
    .mobile-nav-logo {
        position: absolute;
        top: 20px;
        left: 30px;
    }
    
    .mobile-nav-footer {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
    }
    
    .nav-links.active ~ .mobile-elements .mobile-nav-footer {
        animation: fadeIn 0.5s forwards;
        animation-delay: 0.7s;
    }
    
    .nav-links li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(10px);
    }
    
    .nav-links.active li {
        animation: fadeInUp 0.3s forwards;
    }
    
    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.6s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links li a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
        color: var(--primary-text);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-shop-link {
        color: var(--white) !important;
        font-weight: 600;
        background-color: var(--purple);
        padding: 8px 16px;
        border-radius: 6px;
        display: inline-block !important;
        margin-top: 10px;
    }
    
    .mobile-nav-footer p {
        font-size: 0.9rem;
        color: var(--secondary-text);
        margin-bottom: 15px;
    }
}

/* Hide mobile elements on desktop */
.mobile-elements {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0; /* Further reduced */
    overflow: hidden;
    min-height: 45vh; /* Further reduced */
    display: flex;
    align-items: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 133, 161, 0.85) 0%, rgba(241, 78, 41, 0.276) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    color: var(--white);
    max-width: 600px;
}

.hero-tagline {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-image {
    flex: 1;
    text-align: right;
    position: relative;
    margin-top: 0;
}

.hero-image img {
    max-width: 130%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(10%); /* Reduced from 20% */
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.235);
    letter-spacing: -0.5px;
}

/* Update hero highlight styling with white background */
.hero h1 .highlight {
    color: var(--purple);
    position: relative;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero h1 .highlight::after {
    display: none;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}

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

.hero .btn-primary {
    background-color: var(--purple);
    color: var(--white);
    border: none;
    padding: 12px 25px; /* Reduced from 15px 30px */
    font-size: 1rem; /* Reduced from 1.1rem */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero .btn-primary:hover {
    background-color: var(--soft-purple);
    color: var(--white);
    transform: translateY(-3px);
}

.hero .btn-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.hero .btn-primary:hover i {
    transform: translateX(5px);
}

.hero .btn-secondary {
    background-color: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 25px; /* Reduced from 15px 30px */
    font-size: 1rem; /* Reduced from 1.1rem */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero .btn-secondary:hover {
    background-color: var(--light-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background-color: var(--black);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

.close-video {
    position: absolute;
    top: -40px;
    right: -40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-video:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

#featureVideo {
    width: 100%;
    border-radius: 5px;
    display: block;
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(108, 69, 179, 0.1);
    color: var(--purple);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-text);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 25px auto 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Update feature card styling to center content */
.feature-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--soft-purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(108, 69, 179, 0.3);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-text);
    font-weight: 600;
    text-align: center;
}

.feature-card p {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    text-align: center;
}

.feature-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    margin-top: auto;
    justify-content: center;
}

.feature-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--purple);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Therapeutic Expertise Section */
.expertise {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    display: none; /* Hide the border */
}

.expertise-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.expertise-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--purple);
    border-radius: 15px;
}

.expertise-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 69, 179, 0.2) 0%, rgba(241, 90, 41, 0.1) 100%);
    z-index: 1;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.expertise-image:hover img {
    transform: scale(1.05);
}

.expertise-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background-color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.expertise-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-text);
}

.expertise-text p {
    color: var(--secondary-text);
    font-size: 0.95rem;
}

/* Innovation Section */
.innovation {
    padding: 80px 0;
    background-color: var(--white);
}

.innovation .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.innovation-content {
    flex: 1;
}

.innovation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--orange);
    line-height: 1.2;
    font-weight: 700;
}

.innovation-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--secondary-text);
}

.innovation-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--orange);
}

.innovation-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: all 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    animation: pulse 2s infinite;
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.play-button:hover {
    background-color: var(--light-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Company Profile Section */
.company-profile {
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    transform: translateZ(0);
}

.company-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(108, 69, 179, 0.7) 100%);
    z-index: 0;
}

.company-profile .container {
    position: relative;
    z-index: 1;
}

.profile-content {
    max-width: 900px;
    margin-bottom: 60px;
}

.profile-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.profile-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 3px;
}

.profile-text {
    margin-bottom: 40px;
}

.profile-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.quality-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quality-pillar {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-pillar:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--light-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.quality-pillar h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.quality-pillar p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--orange);
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--primary-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin-left: auto;
    pointer-events: auto;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.contact-card p {
    margin-bottom: 15px;
    color: var(--secondary-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card i {
    color: var(--orange);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-card .btn {
    margin-top: 20px;
}

/* Mobile Map Button */
.map-button {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.map-button i {
    color: var(--orange);
    font-size: 1.5rem;
}

.map-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .contact-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
    
    .contact-card {
        display: none;
        position: absolute;
        bottom: 80px;
        left: 20px;
        max-width: calc(100% - 40px);
        width: 300px;
        padding: 20px;
        margin: 0;
        z-index: 10;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .contact-card.active {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }
    
    .map-button {
        display: flex;
    }
}

/* Testimonials Section - Rebuilt */
.testimonials {
    padding: 80px 0;
    background-color: var(--soft-purple);
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-purple) 100%);
    position: relative;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 300px;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
    position: relative;
    overflow-y: auto;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-text);
    font-style: italic;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    color: var(--light-orange);
    position: absolute;
    top: -20px;
    left: -15px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonial-nav-btn {
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

.testimonial-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-card {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        height: 400px;
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(241, 90, 41, 0.85); /* Orange with opacity */
    z-index: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--orange);
    font-size: 1.1rem;
    padding: 15px 30px;
}

.cta .btn-primary:hover {
    background-color: var(--light-orange);
    color: var(--white);
}

/* Footer Styles */
.footer-container {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.office-info {
    flex: 1;
    min-width: 200px;
}

.office-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.office-info p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: var(--medium-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--light-orange);
}

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

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

.get-in-touch {
    margin-bottom: 20px;
}

.get-in-touch .btn {
    padding: 10px 20px;
    border-radius: 4px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--black);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--orange);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
}

.footer-links a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-orange);
}

.footer-links span {
    color: var(--medium-gray);
}

.footer-contact a {
    color: var(--medium-gray);
    font-size: 0.8rem;
}

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

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-bottom: 10px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 45vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .video-modal-content {
        width: 90%;
    }
    
    .close-video {
        right: 0;
        top: -50px;
    }
    
    .expertise-wrapper {
        flex-direction: column;
    }
    
    .innovation .container {
        flex-direction: column;
    }
    
    .contact-card {
        margin: 0 auto;
    }
    
    .quality-pillars {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .hero-image {
        margin-top: 0;
    }
    
    .hero-image img {
        max-width: 120%;
        transform: translateY(10%);
    }
    
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 0; /* Remove bottom padding to attach image to section end */
        min-height: auto;
        overflow: visible; /* Allow image to overflow */
    }
    
    .hero .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .hero-image {
        margin-top: -12%;
        text-align: center;
        margin-bottom: -5px; /* Perfect attachment to next section */
        position: relative;
        z-index: 1;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-image img {
        max-width: 115%; /* Increased from 100% */
        transform: translateY(0);
        display: block;
        margin: 0 auto;
    }
    
    .footer-main {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
        padding: 30px 20px;
    }
    
    .stat-item {
        flex-basis: calc(50% - 15px);
        min-width: calc(50% - 15px);
        margin-bottom: 20px;
    }
    
    .expertise-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-content h2 {
        font-size: 2.2rem;
    }
    
    .quality-pillars {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .features {
        position: relative;
        z-index: 2;
        background-color: var(--white);
    }
    
    .mobile-nav-logo img {
        max-width: 45px; /* Further reduced from 56px */
    }
    
    .logo-img {
        max-width: 80%; /* Reduce main logo size on mobile */
    }
    
    .announcement-bar p {
        font-size: 0.765rem; /* Reduced by 15% from 0.9rem */
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .testimonial-card {
        min-width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {

    
    .hero {
        padding: 50px 0 0; /* Remove bottom padding */
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--purple) 0%, var(--soft-purple) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--white);
        font-size: 1.8rem;
        transition: all 0.3s ease;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
    
    .cta .btn-primary {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .stat-item {
        flex-basis: 100%;
        min-width: 100%;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .innovation-content h2 {
        font-size: 2rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .profile-content h2 {
        font-size: 1.8rem;
    }
    
    .profile-content p {
        font-size: 0.95rem;
    }
    
    .profile-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-image img {
        max-width: 120%; /* Further increased for smaller screens */
        transform: translateY(0);
        margin-left: -13%;
    }
} 

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--white);
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--light-orange);
}

/* Company Page Styles */
.company-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.overview-text p {
    margin-bottom: 20px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.overview-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    display: block;
}

.vision-mission {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.vision-mission-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-box, .mission-box, .values-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vision-box:hover, .mission-box:hover, .values-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vision-icon, .mission-icon, .values-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--soft-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.mission-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--light-orange) 100%);
}

.values-icon {
    background: linear-gradient(135deg, var(--primary-text) 0%, var(--secondary-text) 100%);
}

.vision-box h3, .mission-box h3, .values-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.values-box ul {
    padding-left: 20px;
}

.values-box li {
    margin-bottom: 10px;
    color: var(--secondary-text);
    list-style-type: disc;
}

.leadership {
    padding: 80px 0;
    background-color: var(--white);
}

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

.leader-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.leader-image {
    height: 250px;
    overflow: hidden;
}

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

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

.leader-info {
    padding: 20px;
}

.leader-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.leader-position {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.leader-bio {
    color: var(--secondary-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.global-presence {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.presence-map {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.presence-map img {
    width: 100%;
    display: block;
}

.presence-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* About Us Page Styles */
.our-story {
    padding: 80px 0;
    background-color: var(--white);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.story-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    display: block;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.story-text p {
    margin-bottom: 20px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.our-approach {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.approach-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--soft-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.approach-card p {
    color: var(--secondary-text);
    line-height: 1.6;
}

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

.csr-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.csr-text {
    flex: 1;
}

.csr-text p {
    margin-bottom: 20px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.csr-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.csr-text li {
    margin-bottom: 10px;
    color: var(--secondary-text);
}

.csr-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.csr-image img {
    width: 100%;
    display: block;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 200px;
    overflow: hidden;
}

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

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

.team-info {
    padding: 15px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.team-position {
    color: var(--orange);
    font-size: 0.9rem;
}

.join-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
    color: var(--white);
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Products Page Styles */
.product-categories {
    padding: 80px 0;
    background-color: var(--white);
}

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

.category-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--soft-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-text);
}

.category-card p {
    color: var(--secondary-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    color: var(--orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.category-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.category-link:hover {
    color: var(--purple);
}

.category-link:hover i {
    transform: translateX(5px);
}

.featured-products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--orange);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.product-category {
    color: var(--purple);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-description {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-text);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.view-all-products {
    text-align: center;
}

.product-quality {
    padding: 80px 0;
    background-color: var(--white);
}

.quality-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.quality-text {
    flex: 1;
}

.quality-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.quality-text p {
    margin-bottom: 20px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.quality-list {
    padding-left: 0;
    list-style: none;
}

.quality-list li {
    margin-bottom: 15px;
    color: var(--secondary-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.quality-list li i {
    color: var(--orange);
    font-size: 1.2rem;
}

.quality-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quality-image img {
    width: 100%;
    display: block;
}

.research-development {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.rd-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.rd-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.rd-image img {
    width: 100%;
    display: block;
}

.rd-text {
    flex: 1;
}

.rd-text p {
    margin-bottom: 30px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.rd-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.rd-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.rd-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--orange);
}

.rd-stat p {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 0;
}

/* Responsive Styles for New Pages */
@media (max-width: 992px) {
    .overview-content, .story-content, .csr-content, .quality-content, .rd-content {
        flex-direction: column;
    }
    
    .overview-image, .story-image, .csr-image, .quality-image, .rd-image {
        margin-top: 30px;
        order: 2;
    }
    
    .overview-text, .story-text, .csr-text, .quality-text, .rd-text {
        order: 1;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .overview-text h2, .story-text h2, .quality-text h2 {
        font-size: 1.8rem;
    }
    
    .vision-mission-wrapper {
        grid-template-columns: 1fr;
    }
    
    .rd-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .leadership-grid, .team-grid, .categories-grid, .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .company-overview, .vision-mission, .leadership, .global-presence,
    .our-story, .our-approach, .csr-section, .team-section, .join-us,
    .product-categories, .featured-products, .product-quality, .research-development {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .leadership-grid, .team-grid, .categories-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner h1 {
        font-size: 1.5rem;
    }
    
    .overview-text h2, .story-text h2, .quality-text h2 {
        font-size: 1.5rem;
    }
    
    .rd-stats {
        flex-direction: column;
        gap: 20px;
    }
} 

/* Mobile Menu - Additional Styles */
@media (max-width: 992px) {
    .mobile-social-icons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }
    
    .mobile-social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: var(--light-gray);
        color: var(--primary-text);
        transition: all 0.3s ease;
    }
    
    .mobile-social-icons a:hover {
        background-color: var(--purple);
        color: var(--white);
    }
} 

/* Contact Page Styles - Modern Update */
.contact-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--white) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.1;
}

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

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-form-container {
    flex: 1.2;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-form {
    padding: 40px;
}

/* Modern Floating Label Inputs */
.input-group {
    margin-bottom: 25px;
    position: relative;
}

.form-floating {
    position: relative;
}

.form-floating input,
.form-floating select,
.form-floating textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-floating textarea {
    min-height: 150px;
    resize: vertical;
}

.form-floating input:focus,
.form-floating select:focus,
.form-floating textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(108, 69, 179, 0.1);
}

.form-floating label {
    position: absolute;
    top: 16px;
    left: 50px;
    color: var(--secondary-text);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.form-floating input:focus ~ label,
.form-floating textarea:focus ~ label,
.form-floating select:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label,
.form-floating select:not([value=""]):not([value="null"]) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    padding: 0 5px;
    background-color: var(--white);
    color: var(--purple);
    font-weight: 600;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.form-floating.textarea .input-icon {
    top: 25px;
    transform: none;
}

.form-floating input:focus ~ .input-icon,
.form-floating textarea:focus ~ .input-icon,
.form-floating select:focus ~ .input-icon {
    color: var(--purple);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn i {
    transition: all 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Contact Info Card */
.contact-info-container {
    flex: 0.8;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--purple) 0%, var(--soft-purple) 100%);
    border-radius: 15px;
    padding: 40px;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--white) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.05;
    z-index: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background-color: var(--orange);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Social Icons */
.contact-social {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.contact-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-social .social-icons a:hover {
    background-color: var(--orange);
    transform: translateY(-5px);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.map-container:hover {
    filter: grayscale(0);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 0;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info-container {
        margin-top: 0;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .map-container {
        height: 350px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-floating input,
    .form-floating select,
    .form-floating textarea {
        padding: 14px 20px 14px 45px;
        font-size: 0.95rem;
    }
    
    .form-floating label {
        top: 14px;
        left: 45px;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 15px;
    }
    
    .contact-info-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .map-container {
        height: 300px;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
    }
}

/* Disclaimer Page Styles */
.disclaimer-section {
    padding: 80px 0;
    background-color: var(--white);
}

.disclaimer-content {
    display: flex;
    gap: 40px;
}

.disclaimer-card {
    flex: 2;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.disclaimer-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-text);
}

.disclaimer-date {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.disclaimer-text h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--purple);
}

.disclaimer-text h3:first-child {
    margin-top: 0;
}

.disclaimer-text p {
    margin-bottom: 20px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.disclaimer-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.sidebar-card p {
    color: var(--secondary-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.policy-links li {
    margin-bottom: 15px;
}

.policy-links li a {
    display: flex;
    align-items: center;
    color: var(--primary-text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.policy-links li a i {
    color: var(--orange);
    margin-right: 10px;
    font-size: 1.1rem;
}

.policy-links li a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

/* Responsive Styles for Disclaimer Page */
@media (max-width: 992px) {
    .disclaimer-content {
        flex-direction: column;
    }
    
    .disclaimer-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .disclaimer-sidebar {
        flex-direction: column;
    }
    
    .disclaimer-card {
        padding: 30px;
    }
    
    .disclaimer-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-section {
        padding: 60px 0;
    }
    
    .disclaimer-card {
        padding: 20px;
    }
    
    .disclaimer-card h2 {
        font-size: 1.5rem;
    }
    
    .disclaimer-text h3 {
        font-size: 1.2rem;
    }
} 

/* Disclaimer Page Styles */

/* Product Detail Styles */
.product-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.product-detail-wrapper {
    display: flex;
    gap: 50px;
}

.product-gallery {
    flex: 1;
    max-width: 500px;
}

.product-main-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-main-image img {
    max-width: 100%;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--orange);
}

.thumbnail:hover {
    transform: translateY(-5px);
}

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

.product-info-detail {
    flex: 1.2;
}

.product-badge {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-info-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-text);
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.meta-item {
    font-size: 0.9rem;
}

.meta-label {
    font-weight: 600;
    color: var(--primary-text);
    margin-right: 5px;
}

.meta-value {
    color: var(--secondary-text);
}

.product-price-detail {
    margin-bottom: 20px;
}

.product-price-detail .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-right: 10px;
}

.product-price-detail .tax-info {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.product-description {
    margin-bottom: 25px;
}

.product-description p {
    color: var(--secondary-text);
    line-height: 1.7;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.spec-item i {
    color: var(--purple);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.product-actions-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    overflow: hidden;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background-color: var(--light-gray);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--medium-gray);
}

.quantity-controls input {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid var(--medium-gray);
    border-right: 1px solid var(--medium-gray);
    text-align: center;
    font-size: 1rem;
}

.btn-add-to-cart {
    padding: 12px 25px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-add-to-cart i {
    font-size: 1.1rem;
}

.product-meta-footer {
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.meta-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.meta-footer-item i {
    color: var(--orange);
}

.meta-footer-item a {
    color: var(--purple);
    font-weight: 500;
    transition: all 0.3s ease;
}

.meta-footer-item a:hover {
    color: var(--orange);
}

/* Product Tabs */
.product-tabs {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.tabs-wrapper {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background-color: var(--light-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-text);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: var(--purple);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--purple);
}

.tab-content {
    display: none;
    padding: 30px;
}

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

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.tab-content h4 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: var(--purple);
}

.tab-content p {
    margin-bottom: 20px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.tab-content li {
    margin-bottom: 10px;
    color: var(--secondary-text);
    line-height: 1.6;
}

.tab-content strong {
    color: var(--primary-text);
    font-weight: 600;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background-color: var(--white);
}

.related-products h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.related-products h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 3px;
}

/* Responsive Styles for Product Detail */
@media (max-width: 992px) {
    .product-detail-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .product-gallery {
        max-width: 100%;
    }
    
    .product-info-detail {
        width: 100%;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 60px 0;
    }
    
    .product-info-detail h1 {
        font-size: 2rem;
    }
    
    .product-actions-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quantity-selector {
        margin-bottom: 15px;
    }
    
    .btn-add-to-cart {
        width: 100%;
        justify-content: center;
    }
    
    .tab-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .product-thumbnails {
        justify-content: center;
    }
    
    .product-info-detail h1 {
        font-size: 1.8rem;
    }
    
    .product-price-detail .price {
        font-size: 1.8rem;
    }
    
    .tab-btn {
        padding: 10px;
        font-size: 0.8rem;
    }
}

/* Featured Product Showcase */
.featured-product-showcase {
    padding: 80px 0;
    background-color: var(--white);
}

.showcase-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.showcase-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--purple) 0%, var(--orange) 100%);
}

.showcase-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: translateY(-10px);
}

.showcase-image .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--orange);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}

.showcase-content {
    flex: 1.2;
}

.showcase-tag {
    display: inline-block;
    background-color: rgba(108, 69, 179, 0.1);
    color: var(--purple);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.showcase-content h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--primary-text);
    position: relative;
    display: inline-block;
}

.showcase-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 3px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 20px;
    margin-top: 15px;
}

.showcase-composition {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.showcase-composition span {
    background-color: var(--light-gray);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-composition i {
    color: var(--purple);
}

.showcase-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin-bottom: 25px;
}

.showcase-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(241, 90, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.highlight-text p {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.5;
}

.showcase-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.showcase-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--purple);
}

.showcase-actions .btn {
    padding: 14px 30px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Styles for Featured Product Showcase */
@media (max-width: 992px) {
    .showcase-wrapper {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }
    
    .showcase-image {
        width: 100%;
        max-width: 400px;
    }
    
    .showcase-content h2 {
        font-size: 2.3rem;
    }
    
    .showcase-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .featured-product-showcase {
        padding: 60px 0;
    }
    
    .showcase-wrapper {
        padding: 30px 20px;
    }
    
    .showcase-content h2 {
        font-size: 2rem;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .showcase-composition {
        flex-direction: column;
        gap: 10px;
    }
    
    .showcase-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .showcase-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .showcase-content h2 {
        font-size: 1.8rem;
    }
    
    .showcase-price {
        font-size: 1.6rem;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Enhanced Product Detail Styles */
.product-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
    position: relative;
    overflow: hidden;
}

.product-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--white) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.1;
}

.product-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.product-detail-wrapper {
    display: flex;
    gap: 60px;
    position: relative;
}

.product-gallery {
    flex: 1;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.product-main-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.product-main-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.product-main-image:hover img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.bestseller {
    top: 15px;
    right: 15px;
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}

.product-badge.premium {
    top: 15px;
    left: 15px;
    background-color: var(--purple);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(108, 69, 179, 0.3);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--orange);
}

.thumbnail:hover {
    transform: translateY(-5px);
}

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

.product-info-detail {
    flex: 1.2;
}

.product-info-detail h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.product-tagline {
    font-size: 1.4rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.meta-item {
    font-size: 0.9rem;
    background-color: var(--light-gray);
    padding: 8px 15px;
    border-radius: 30px;
}

.meta-label {
    font-weight: 600;
    color: var(--primary-text);
    margin-right: 5px;
}

.meta-value {
    color: var(--secondary-text);
}

.product-price-detail {
    margin-bottom: 25px;
}

.product-price-detail .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-right: 10px;
}

.product-price-detail .tax-info {
    font-size: 0.9rem;
    color: var(--secondary-text);
    vertical-align: middle;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(108, 69, 179, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.feature-text {
    font-weight: 600;
    color: var(--primary-text);
}

.product-description {
    margin-bottom: 25px;
}

.product-description p {
    color: var(--secondary-text);
    line-height: 1.7;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.spec-item i {
    color: var(--purple);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.product-actions-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--medium-gray);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--medium-gray);
    border-right: 1px solid var(--medium-gray);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-add-to-cart {
    padding: 14px 30px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.btn-add-to-cart i {
    font-size: 1.1rem;
}

.product-meta-footer {
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.meta-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.meta-footer-item i {
    color: var(--orange);
}

.meta-footer-item a {
    color: var(--purple);
    font-weight: 500;
    transition: all 0.3s ease;
}

.meta-footer-item a:hover {
    color: var(--orange);
}

/* Enhanced Product Tabs */
.product-tabs {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.tabs-wrapper {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background-color: var(--light-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.tab-btn {
    padding: 18px 30px;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-text);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: var(--purple);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--purple);
}

.tab-content {
    display: none;
    padding: 40px;
}

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

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

.tab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-text);
}

.tab-content h4 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--purple);
}

.tab-content p {
    margin-bottom: 20px;
    color: var(--secondary-text);
    line-height: 1.7;
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.tab-content li {
    margin-bottom: 12px;
    color: var(--secondary-text);
    line-height: 1.6;
}

.tab-content strong {
    color: var(--primary-text);
    font-weight: 600;
}

/* Composition Cards */
.composition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.composition-card {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.composition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.composition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--soft-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.composition-card h4 {
    font-size: 1.2rem;
    margin: 0 0 15px;
    color: var(--primary-text);
}

.composition-card p {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.6;
    margin: 0;
}

/* Indications Grid */
.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0 30px;
}

.indications-grid h4 {
    grid-column: 1 / -1;
    margin: 0 0 15px;
}

.indication-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(108, 69, 179, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.indication-item:hover {
    background-color: rgba(108, 69, 179, 0.1);
    transform: translateY(-3px);
}

.indication-item i {
    color: var(--purple);
    font-size: 1.1rem;
}

.indication-item span {
    font-size: 0.95rem;
    color: var(--primary-text);
}

/* Usage Note */
.usage-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(241, 90, 41, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.usage-note i {
    color: var(--orange);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.usage-note p {
    margin: 0;
    font-size: 0.95rem;
}

/* Side Effects Container */
.side-effects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 25px 0;
}

.side-effects-column h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Warning Box */
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(241, 90, 41, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
    margin-top: 30px;
}

.warning-box i {
    color: var(--orange);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.warning-box p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Styles for Product Detail */
@media (max-width: 992px) {
    .product-detail-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-info-detail h1 {
        font-size: 2.3rem;
    }
    
    .product-tagline {
        font-size: 1.3rem;
    }
    
    .product-price-detail .price {
        font-size: 2.2rem;
    }
    
    .tabs-nav {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 15px 20px;
    }
    
    .tab-content {
        padding: 30px;
    }
    
    .composition-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 60px 0;
    }
    
    .product-info-detail h1 {
        font-size: 2rem;
    }
    
    .product-tagline {
        font-size: 1.2rem;
    }
    
    .product-features {
        flex-direction: column;
    }
    
    .product-actions-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-add-to-cart {
        width: 100%;
    }
    
    .tab-content {
        padding: 25px 20px;
    }
    
    .tab-content h3 {
        font-size: 1.5rem;
    }
    
    .indications-grid {
        grid-template-columns: 1fr;
    }
    
    .side-effects-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-info-detail h1 {
        font-size: 1.8rem;
    }
    
    .product-tagline {
        font-size: 1.1rem;
    }
    
    .product-price-detail .price {
        font-size: 1.8rem;
    }
    
    .meta-item {
        width: 100%;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Benefits Section */
.related-products {
    padding: 80px 0;
    background-color: var(--white);
}

.related-products h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.related-products h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 3px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--soft-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(108, 69, 179, 0.3);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.benefit-card p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--white) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-banner .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    background-color: var(--white);
    color: var(--purple);
}

.cta-banner .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Responsive Styles for Benefits Section */
@media (max-width: 992px) {
    .related-products h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-banner {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-banner .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .related-products {
        padding: 60px 0;
    }
    
    .related-products h2 {
        font-size: 1.8rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .related-products h2 {
        font-size: 1.6rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-banner {
        padding: 25px 20px;
    }
}

/* Featured Product Showcase - Mobile First */
.featured-product-showcase {
    padding: 40px 0;
    background-color: var(--white);
}

.showcase-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.showcase-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--purple) 0%, var(--orange) 100%);
}

.showcase-image {
    width: 100%;
    max-width: 300px;
    position: relative;
    text-align: center;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.showcase-image .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--orange);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}

.showcase-content {
    width: 100%;
    text-align: center;
}

.showcase-tag {
    display: inline-block;
    background-color: rgba(108, 69, 179, 0.1);
    color: var(--purple);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.showcase-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-text);
    position: relative;
    display: inline-block;
}

.showcase-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 3px;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 15px;
    margin-top: 15px;
}

.showcase-composition {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.showcase-composition span {
    background-color: var(--light-gray);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary-text);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.showcase-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: 20px;
    padding: 0 10px;
}

.showcase-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(241, 90, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.highlight-text p {
    font-size: 0.9rem;
    color: var(--secondary-text);
    line-height: 1.5;
}

.showcase-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.showcase-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--purple);
}

.showcase-actions .btn {
    padding: 12px 25px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 250px;
    justify-content: center;
}

/* Enhanced Product Detail Styles - Mobile First */
.product-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.product-banner h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-detail {
    padding: 40px 0;
    background-color: var(--white);
}

.product-detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-gallery {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.product-main-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.product-badge {
    position: absolute;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.bestseller {
    top: 10px;
    right: 10px;
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}

.product-badge.premium {
    top: 10px;
    left: 10px;
    background-color: var(--purple);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(108, 69, 179, 0.3);
}

.product-info-detail {
    width: 100%;
    text-align: center;
}

.product-info-detail h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    align-items: center;
}

.meta-item {
    font-size: 0.85rem;
    background-color: var(--light-gray);
    padding: 6px 12px;
    border-radius: 30px;
    width: fit-content;
}

.product-price-detail {
    margin-bottom: 20px;
}

.product-price-detail .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    margin-right: 10px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(108, 69, 179, 0.05);
    padding: 8px 15px;
    border-radius: 8px;
    width: fit-content;
}

.product-description {
    margin-bottom: 20px;
    padding: 0 15px;
}

.product-description p {
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 10px;
    text-align: left;
}

.product-actions-detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart {
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.product-meta-footer {
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    text-align: left;
}

/* Product Tabs - Mobile First */
.product-tabs {
    padding: 40px 0;
    background-color: var(--light-gray);
}

.tabs-wrapper {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    background-color: var(--light-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    padding: 12px 15px;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-text);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.tab-content {
    padding: 25px 20px;
}

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

/* Composition Cards - Mobile First */
.composition-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 25px 0;
}

/* Indications Grid - Mobile First */
.indications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0 25px;
}

/* Benefits Section - Mobile First */
.related-products {
    padding: 40px 0;
    background-color: var(--white);
}

.related-products h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    padding: 25px 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
}

.cta-banner {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
}

.cta-content h3 {
    font-size: 1.4rem;
}

.cta-content p {
    font-size: 1rem;
}

.cta-banner .btn {
    width: 100%;
    justify-content: center;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .featured-product-showcase {
        padding: 60px 0;
    }
    
    .showcase-wrapper {
        flex-direction: row;
        align-items: center;
        padding: 40px;
        gap: 50px;
    }
    
    .showcase-image {
        max-width: 400px;
    }
    
    .showcase-content {
        text-align: left;
    }
    
    .showcase-content h2 {
        font-size: 2.2rem;
    }
    
    .showcase-content h2::after {
        left: 0;
        transform: none;
    }
    
    .showcase-composition {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    .showcase-description {
        padding: 0;
        font-size: 1.05rem;
    }
    
    .showcase-highlights {
        align-items: flex-start;
    }
    
    .highlight-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        max-width: none;
    }
    
    .showcase-actions {
        flex-direction: row;
        align-items: center;
    }
    
    .showcase-actions .btn {
        max-width: none;
    }
    
    .product-banner {
        padding: 60px 0;
    }
    
    .product-banner h1 {
        font-size: 2.5rem;
    }
    
    .product-detail {
        padding: 60px 0;
    }
    
    .product-detail-wrapper {
        flex-direction: row;
        gap: 50px;
    }
    
    .product-gallery {
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
    
    .product-info-detail {
        text-align: left;
    }
    
    .product-info-detail h1 {
        font-size: 2.5rem;
    }
    
    .product-meta {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .product-features {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .product-description {
        padding: 0;
    }
    
    .product-actions-detail {
        flex-direction: row;
        align-items: center;
    }
    
    .quantity-selector {
        width: auto;
    }
    
    .btn-add-to-cart {
        width: auto;
        flex: 1;
    }
    
    .product-tabs {
        padding: 60px 0;
    }
    
    .tabs-nav {
        overflow-x: visible;
        white-space: normal;
    }
    
    .tab-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .tab-content {
        padding: 30px;
    }
    
    .composition-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .indications-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .related-products {
        padding: 60px 0;
    }
    
    .related-products h2 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        margin-bottom: 50px;
    }
    
    .cta-banner {
        flex-direction: row;
        text-align: left;
        padding: 35px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-banner .btn {
        width: auto;
    }
}

@media (min-width: 992px) {
    .featured-product-showcase {
        padding: 80px 0;
    }
    
    .showcase-wrapper {
        padding: 50px;
        gap: 60px;
    }
    
    .showcase-content h2 {
        font-size: 2.8rem;
    }
    
    .showcase-subtitle {
        font-size: 1.2rem;
    }
    
    .product-banner {
        padding: 80px 0;
    }
    
    .product-detail {
        padding: 80px 0;
    }
    
    .product-detail-wrapper {
        gap: 60px;
    }
    
    .product-info-detail h1 {
        font-size: 2.8rem;
    }
    
    
    .product-tagline {
        font-size: 1.4rem;
    }
    
    .product-tabs {
        padding: 80px 0;
    }
    
    .tab-btn {
        padding: 18px 30px;
        font-size: 1.05rem;
    }
    
    .tab-content {
        padding: 40px;
    }
    
    .tab-content h3 {
        font-size: 1.8rem;
    }
    
    .related-products {
        padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .cta-banner {
        padding: 40px;
    }
}

/* Hero Section - Mobile Improvements */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.0rem;
        margin-bottom: 25px; /* Increased from original value */
        line-height: 1.2;
    }
    
    .hero h1 .highlight {
        margin-top: 10px;
        display: inline-block;
    }
}

/* Feature Cards - Larger Icons on Mobile */
@media (max-width: 480px) {
    .feature-icon {
        width: 90px; /* Increased from 70px */
        height: 90px; /* Increased from 70px */
        margin-bottom: 25px;
    }
    
    .feature-icon i {
        font-size: 2.2rem; /* Increased icon size */
    }
}

/* Book Now Button Styles */
.btn-book-now {
    padding: 14px 30px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-book-now i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .btn-book-now {
        width: 100%;
        max-width: 300px;
    }
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 0;
    background-color: var(--white);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

.featured-product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.featured-product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.featured-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.featured-product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-text);
    font-weight: 600;
}

.featured-product-subtitle {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 15px;
}

.featured-product-description {
    color: var(--secondary-text);
    margin-bottom: 20px;
    flex: 1;
}

.featured-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.featured-product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--purple);
}

.featured-product-actions {
    display: flex;
    gap: 10px;
}

.btn-enquire {
    background-color: var(--purple);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-enquire:hover {
    background-color: var(--soft-purple);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .featured-products-row {
        flex-direction: column;
    }
    
    .featured-product-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .featured-products-section {
        padding: 60px 0;
    }
    
    .featured-product-title {
        font-size: 1.3rem;
    }
}

