/* ===================================
   TAVA-TEK - Modern Professional Website
   Color Scheme: Red Tones
   =================================== */

:root {
    --primary-red: #DC143C;
    --dark-red: #8B0000;
    --light-red: #FF6B6B;
    --accent-red: #C41E3A;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --gray: #6c757d;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(220, 20, 60, 0.2);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

/* ===================================
   Navigation
   =================================== */

.navbar {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: visible;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

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

.logo {
    flex-shrink: 0;
    margin-right: auto;
    padding-left: 0;
}

/* Search Container */
.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    padding-right: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    outline: none;
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.2);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--light-bg);
}

.search-result-item.no-results {
    cursor: default;
    justify-content: center;
    padding: 2rem;
    color: var(--gray);
}

.search-result-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
}

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

.search-result-info {
    flex: 1;
}

.search-result-info h4 {
    color: var(--primary-red);
    margin: 0 0 0.3rem 0;
    font-size: 0.95rem;
}

.search-result-info h4 mark {
    background: var(--light-red);
    color: var(--text-light);
    padding: 0 2px;
    border-radius: 3px;
}

.search-result-info p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0.3rem 0;
}

.search-result-category {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-red);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--text-light);
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    white-space: nowrap;
    letter-spacing: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu > li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-light);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--primary-red);
    color: var(--text-light);
    padding-left: 2rem;
}

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

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

/* ===================================
   Hero Slider
   =================================== */

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 4rem;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

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

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--text-light);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

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

.dot.active {
    background: var(--text-light);
    transform: scale(1.3);
}

/* ===================================
   Buttons
   =================================== */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--text-light);
    color: var(--primary-red);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--light-red);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* ===================================
   Features Section
   =================================== */

.features {
    padding: 4rem 0;
    background: var(--text-light);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ===================================
   Products Section
   =================================== */

.products-preview,
.products-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.products-preview {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.products-carousel-wrapper {
    position: relative;
    margin: 2rem 0;
    padding: 0 60px;
}

.products-carousel {
    overflow: hidden;
    position: relative;
}

.products-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.products-carousel-track .carousel-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--dark-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.product-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 250px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.product-image i {
    position: absolute;
    z-index: 1;
}

.product-info {
    padding: 1.5rem;
}

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

.product-info p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-price {
    color: var(--dark-red);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
}

.product-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.product-whatsapp-btn i {
    font-size: 1.2rem;
}

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

/* ===================================
   About Section
   =================================== */

/* ===================================
   Statistics Section
   =================================== */

.statistics {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 1.5rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    padding: 4rem 0;
    background: var(--light-bg);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-content {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--primary-red);
    margin: 0;
    font-size: 1.2rem;
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

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

/* ===================================
   Quick Quote Section
   =================================== */

.quick-quote {
    padding: 4rem 0;
    background: var(--text-light);
}

.quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.quote-content {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-content h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quote-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.quick-quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-quote-form input,
.quick-quote-form select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.quick-quote-form input:focus,
.quick-quote-form select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.quick-quote-form button {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===================================
   Newsletter Section
   =================================== */

.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.about-preview {
    padding: 4rem 0;
    background: var(--text-light);
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tava-illustration {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.tava-shape {
    width: 280px;
    height: 200px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 20px 20px 5px 5px;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.8),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    transform: perspective(500px) rotateX(15deg);
    transition: transform 0.3s ease;
}

.tava-illustration:hover .tava-shape {
    transform: perspective(500px) rotateX(10deg) scale(1.05);
}

.tava-handle {
    position: absolute;
    width: 50px;
    height: 12px;
    background: linear-gradient(145deg, #d0d0d0, #e8e8e8);
    border-radius: 6px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.handle-left {
    left: -25px;
}

.handle-right {
    right: -25px;
}

.tava-bottom {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 8px;
    background: linear-gradient(145deg, #c0c0c0, #e0e0e0);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.tava-pattern {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(200, 200, 200, 0.1) 15px, rgba(200, 200, 200, 0.1) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(200, 200, 200, 0.1) 15px, rgba(200, 200, 200, 0.1) 16px);
    border-radius: 10px;
    opacity: 0.6;
}

.tava-shape::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 8px;
    background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.3), transparent);
    border-radius: 4px;
}

.tava-shape::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.3), transparent);
    border-radius: 3px;
}

.about-tava-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-tava-image:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 4rem;
}

.image-placeholder.large {
    height: 500px;
}

/* ===================================
   Page Header
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 4rem 0;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   About Page
   =================================== */

.about-page {
    padding: 4rem 0;
}

.about-main {
    display: block;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.about-text-section h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.about-text-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.values-section {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.value-card:hover .value-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

.value-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.mission-card,
.vision-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-red);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 2rem;
    color: var(--primary-red);
}

.card-header h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
}

/* ===================================
   Products Filter
   =================================== */

.products-filter {
    padding: 2rem 0;
    background: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ===================================
   Product Detail
   =================================== */

.product-detail-section {
    padding: 3rem 0;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--text-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.product-detail-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.product-detail-info .price {
    font-size: 2rem;
    color: var(--dark-red);
    font-weight: 700;
    margin: 1.5rem 0;
}

.product-detail-info .description {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.product-specs {
    margin: 2rem 0;
}

.product-specs h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.product-specs ul {
    list-style: none;
    padding-left: 0;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.product-specs li:last-child {
    border-bottom: none;
}

.related-products {
    padding: 4rem 0;
    background: var(--light-bg);
}

.related-products h2 {
    text-align: center;
    color: var(--primary-red);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-dark);
    margin: 0.3rem 0;
}

.contact-social {
    margin-top: 2rem;
}

.contact-form-wrapper {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.map-section {
    margin-top: 4rem;
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.5rem;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ===================================
   Gallery Section
   =================================== */

.gallery-section {
    padding: 4rem 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    background: #ffffff;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 20, 60, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-red);
    transform: translateY(-50%) scale(1.2);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(220, 20, 60, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* ===================================
   WhatsApp Button
   =================================== */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

/* ===================================
   Live Support
   =================================== */

.live-support-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.live-support-button:hover {
    background: var(--dark-red);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.live-support-button:active {
    transform: scale(0.95);
}

.live-support-chat {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 350px;
    height: 500px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.live-support-chat.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem;
    transition: transform 0.3s ease;
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--light-bg);
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 80%;
}

.bot-message {
    background: var(--text-light);
    border: 1px solid var(--border-color);
    align-self: flex-start;
}

.user-message {
    background: var(--primary-red);
    color: var(--text-light);
    align-self: flex-end;
    margin-left: auto;
}

.message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-input-area {
    padding: 1rem;
    background: var(--text-light);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input-area input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--primary-red);
}

.chat-input-area button {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input-area button:hover {
    background: var(--dark-red);
    transform: scale(1.1);
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category h2 i {
    font-size: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    color: var(--primary-red);
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-question i {
    color: var(--primary-red);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active .faq-question {
    background: var(--light-bg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category h2 i {
    font-size: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    color: var(--primary-red);
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-question i {
    color: var(--primary-red);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active .faq-question {
    background: var(--light-bg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
        position: relative;
        gap: 1rem;
    }

    .logo {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 0;
    }

    .logo a {
        font-size: 1.4rem;
        flex-wrap: nowrap;
    }

    .logo-subtitle {
        font-size: 0.6rem;
        white-space: normal;
    }

    .search-container {
        order: 3;
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 0.5rem;
    }

    .hamburger {
        display: flex;
        order: 2;
        z-index: 1001;
        position: relative;
        margin-left: auto;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        max-width: 320px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
        padding: 80px 0 2rem 0;
        overflow-y: auto;
        z-index: 999;
    }

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

    /* Overlay when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

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

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

    .nav-menu a {
        padding: 1rem 1.5rem;
        display: block;
        width: 100%;
        font-size: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        margin: 0;
        margin-top: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        list-style: none;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .dropdown-menu a {
        color: var(--text-light);
        padding: 0.8rem 1.5rem 0.8rem 2.5rem;
        display: block;
        width: 100%;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 3rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .about-content,
    .about-main,
    .mission-vision,
    .contact-wrapper,
    .product-detail {
        grid-template-columns: 1fr;
    }

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

    .products-carousel-wrapper {
        padding: 0 50px;
    }

    .products-carousel-track .carousel-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

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

    .slider-controls {
        padding: 0 1rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.5rem;
    }

    .nav-wrapper {
        gap: 0.5rem;
    }

    .hamburger {
        margin-left: 0.5rem;
    }

    .nav-menu {
        max-width: 100%;
        padding: 70px 0 2rem 0;
    }

    .nav-menu a {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .live-support-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 80px;
        right: 20px;
    }

    .live-support-chat {
        width: calc(100% - 40px);
        height: 400px;
        bottom: 80px;
        left: 20px;
    }

    .products-carousel-wrapper {
        padding: 0 40px;
    }

    .products-carousel-track .carousel-item {
        flex: 0 0 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .quote-wrapper {
        padding: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

