/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-red: #dc2626;
    --dark-red: #b91c1c;
    --light-red: #fecaca;
    --accent-red: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --border-gray: #e5e7eb;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    min-height: 100vh;
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    }
    33% {
        background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    }
    66% {
        background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding: 0 0.75rem;
        overflow: hidden;
        max-width: 100%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Animated Background Orbs */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: float1 20s infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 200, 200, 0.3) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: float2 25s infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 150, 150, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 30s infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, 100px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 150px) scale(0.9);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-100px, -100px) scale(1.2);
    }
    66% {
        transform: translate(50px, -150px) scale(0.8);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
    }
}

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-duration: 20s; animation-delay: 4s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-duration: 22s; animation-delay: 1s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-duration: 17s; animation-delay: 3s; }
.particle:nth-child(6) { width: 6px; height: 6px; left: 60%; animation-duration: 19s; animation-delay: 5s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-duration: 21s; animation-delay: 2s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-duration: 16s; animation-delay: 4s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-duration: 23s; animation-delay: 1s; }
.particle:nth-child(10) { width: 6px; height: 6px; left: 15%; animation-duration: 18s; animation-delay: 6s; }
.particle:nth-child(11) { width: 3px; height: 3px; left: 25%; animation-duration: 20s; animation-delay: 3s; }
.particle:nth-child(12) { width: 5px; height: 5px; left: 35%; animation-duration: 19s; animation-delay: 5s; }
.particle:nth-child(13) { width: 4px; height: 4px; left: 45%; animation-duration: 17s; animation-delay: 2s; }
.particle:nth-child(14) { width: 6px; height: 6px; left: 55%; animation-duration: 21s; animation-delay: 4s; }
.particle:nth-child(15) { width: 3px; height: 3px; left: 65%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(16) { width: 5px; height: 5px; left: 75%; animation-duration: 22s; animation-delay: 6s; }
.particle:nth-child(17) { width: 4px; height: 4px; left: 85%; animation-duration: 18s; animation-delay: 3s; }
.particle:nth-child(18) { width: 6px; height: 6px; left: 95%; animation-duration: 20s; animation-delay: 5s; }
.particle:nth-child(19) { width: 3px; height: 3px; left: 5%; animation-duration: 19s; animation-delay: 2s; }
.particle:nth-child(20) { width: 5px; height: 5px; left: 12%; animation-duration: 17s; animation-delay: 4s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    color: var(--white);
    text-align: left;
}

.hero-products {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: 500px;
}

.hero-product-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.hero-product-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.hero-product-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.hero-product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-product-item:hover img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--light-red);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-primary i {
    font-size: 1.2rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Quick Access */
.products-quick-access {
    background: white;
    padding: 3rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quick-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.quick-product-item:hover {
    transform: translateY(-5px);
    background: #fef2f2;
}

.quick-product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.quick-product-item:hover .quick-product-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.quick-product-icon i {
    font-size: 1.5rem;
    color: white;
}

.quick-product-item span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* About Section */
/* .about {
    background: var(--light-gray);
    scroll-margin-top: 80px; 
} */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 24px;
    display: flex;
    justify-content: center;
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
}

.factory-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Products Carousel */
.products-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin: 0 -20px;
}

.products-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 20px 0;
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.products-carousel .product-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 350px;
    scroll-snap-align: start;
}

.products-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.products-carousel-btn:hover {
    background: #b91c1c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.products-carousel-prev {
    left: 0;
}

.products-carousel-next {
    right: 0;
}

.products-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view:hover {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-specs {
    list-style: none;
}

.product-specs li {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1rem;
}

.product-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gallery-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.gallery .section-header {
    position: relative;
    z-index: 1;
}

.gallery .section-title {
    color: white;
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Carousel */
.gallery-carousel {
    margin-top: 3rem;
    position: relative;
    margin-bottom: 3rem;
    z-index: 1;
}

.carousel-title {
    text-align: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
}

.carousel-slide {
    min-width: calc(33.333% - 20px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-5px);
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.carousel-caption h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(220, 38, 38, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-slide {
        min-width: calc(50% - 15px);
        margin: 0 7.5px;
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 1.5rem 1rem 1rem;
    }
    
    .carousel-caption h4 {
        font-size: 1.1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 30px;
    }

    .hero-overlay {
        padding-top: 100px;
    }
    
    .carousel-slide {
        min-width: calc(100% - 20px);
        margin: 0 10px;
    }
    
    .carousel-slide img {
        height: 200px;
    }
    
    .carousel-caption h4 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.7rem;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0.25rem 0;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    min-width: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-item p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--primary-red);
}

.contact-item > div {
    flex: 1;
    min-width: 0;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    padding: 14px 24px;
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form button[type="submit"]:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.contact-form button[type="submit"] i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-section .contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section .contact-info i {
    color: var(--primary-red);
    width: 16px;
    min-width: 16px;
    margin-top: 2px;
}

.footer-section .contact-info a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .contact-info a:hover {
    color: var(--primary-red);
}

/* Contact Maps Section */
.contact-maps {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.maps-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.map-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-item h4 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-item h4 i {
    font-size: 1rem;
}

.map-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-container {
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-address {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.map-address i {
    color: var(--primary-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Interactive Enhancements */
.mobile-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.fab-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

/* Hide FAB on mobile */
@media (max-width: 768px) {
    .mobile-fab {
        display: none !important;
    }
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.6);
}

.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.fab-item:hover {
    background: var(--light-red);
    transform: translateX(-5px);
}

.fab-item i {
    color: var(--primary-red);
    width: 20px;
    text-align: center;
}

/* Mobile Swipe Indicators */
.swipe-indicator {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Touch-friendly buttons */
.touch-button {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
}

/* Mobile Product Cards Enhancement */
.product-card-mobile {
    position: relative;
    overflow: hidden;
}

/* Product Types/Variants */
.product-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
}

.product-type {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.product-type:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.product-type h5 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.product-type p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .product-types {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 10px;
        padding: 10px;
    }
    
    .product-type {
        padding: 12px;
    }
    
    .product-type h5 {
        font-size: 0.8rem;
    }
    
    .product-type p {
        font-size: 0.7rem;
    }
}

/* Vision Mission Styles */
.vision-mission {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision, .mission {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

.vision h4, .mission h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission ul {
    list-style: none;
    padding: 0;
}

.mission li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mission li::before {
    content: '•';
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vision, .mission {
        padding: 1rem;
    }
}

.product-quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:active .product-quick-actions {
    transform: translateY(0);
}

.quick-action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.quick-btn {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Mobile Gallery Swipe */
.gallery-mobile {
    display: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-mobile::-webkit-scrollbar {
    display: none;
}

.gallery-mobile .gallery-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    margin-right: 15px;
}

/* Mobile Contact Enhancement */
.mobile-contact-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.contact-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.contact-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-action:hover {
    background: var(--light-red);
    transform: translateY(-2px);
}

.contact-action i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.contact-action span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 45px;
    }
    
    .brand-text {
        font-size: 1.4rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 0.5rem;
    }

    .hero-products {
        height: 280px;
        gap: 0.5rem;
        order: 2;
        margin: 0;
        padding: 0;
    }
    
    .hero-product-item {
        border-radius: 10px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .hero-features {
        flex-direction: row;
        gap: 0.4rem;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        flex-wrap: nowrap;
    }

    .feature-item {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .feature-item i {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 10px 16px;
        text-align: center;
        font-size: 0.85rem;
        flex: 1;
        max-width: none;
    }

    .swipe-indicator {
        display: block;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .feature i {
        margin-top: 0;
        font-size: 2rem;
    }

    .feature h4 {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-carousel-wrapper {
        padding: 0 50px;
        margin: 0 -10px;
    }

    .products-carousel .product-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
    }

    .products-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .quick-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .quick-product-icon {
        width: 50px;
        height: 50px;
    }

    .quick-product-icon i {
        font-size: 1.25rem;
    }

    .quick-product-item span {
        font-size: 0.85rem;
    }

    .gallery-grid {
        display: none;
    }

    .gallery-mobile {
        display: flex;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 80px;
    }

    .mobile-contact-actions {
        display: block;
    }

    .mobile-fab {
        display: none; /* Hidden in mobile version */
    }
    
    .carousel-container {
        margin: 0 10px;
        border-radius: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Touch-friendly form elements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 15px;
    }

    .btn {
        min-height: 48px;
        font-size: 1.1rem;
    }

    /* Mobile product card interactions */
    .product-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    /* Mobile gallery enhancements */
    .gallery-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .gallery-item:active {
        transform: scale(0.95);
    }

    .contact-maps {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .maps-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .maps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-item {
        padding: 1.25rem;
    }

    .map-item h4 {
        font-size: 1.1rem;
    }

    .map-container {
        height: 250px;
    }

    .map-address {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-features {
    animation-delay: 0.8s;
}

.hero-buttons {
    animation-delay: 1s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed header */
}

/* Section scroll positioning */
section {
    scroll-margin-top: 80px;
}

/* Loading states */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .hero-buttons,
    .btn,
    .contact-form {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* ===== MODAL STYLES ===== */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    box-sizing: border-box;
}

.info-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.info-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 20px 28px 14px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 24px 24px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.modal-close:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.modal-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-image:hover img {
    transform: scale(1.05);
}

.modal-text {
    padding: 24px 28px 28px;
}

.modal-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
}

.modal-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-text h4::before {
    content: "✓";
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.modal-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.modal-text li {
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}

.modal-text li:last-child {
    border-bottom: none;
}

.modal-text li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 6px;
}

.modal-actions {
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.modal-btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-modal {
        padding: 16px;
    }
    
    .modal-content {
        max-width: 100%;
        border-radius: 20px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 24px 12px;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-text {
        padding: 24px 20px;
    }
    
    .modal-text p {
        font-size: 1rem;
    }
    
    .modal-text h4 {
        font-size: 1.1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
        padding: 16px;
    }
}

/* Animation keyframes */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
}

/* ===== DESKTOP WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 
                0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5), 
                0 12px 32px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
    animation: whatsappIcon 1s ease-in-out infinite;
}

/* Pulse animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 
                    0 8px 24px rgba(0, 0, 0, 0.15),
                    0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 
                    0 8px 24px rgba(0, 0, 0, 0.15),
                    0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Icon animation */
@keyframes whatsappIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile Sticky Menu Button */
.mobile-sticky-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-menu {
        display: block;
        position: fixed;
        right: 0;
        top: 80%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .sticky-menu-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
        color: white;
        padding: 12px 8px;
        border: none;
        border-radius: 8px 0 0 8px;
        box-shadow: -3px 0 10px rgba(220, 38, 38, 0.3);
        transition: all 0.3s ease;
        min-height: 100px;
        width: 45px;
        cursor: pointer;
    }

    .sticky-menu-btn:active {
        background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
        box-shadow: -4px 0 12px rgba(220, 38, 38, 0.5);
        transform: translateX(-3px);
    }

    .sticky-menu-btn.active {
        background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    }

    .menu-text {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .sticky-menu-btn i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .sticky-menu-btn.active i {
        transform: rotate(90deg);
    }

    /* Hide default nav-toggle */
    .nav-toggle {
        display: none !important;
    }
}

/* Hide on mobile, show on desktop */
@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}

/* Adjust position on tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}
