/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch device optimizations */
.touch-device * {
    -webkit-tap-highlight-color: transparent;
}

.touch-device .btn,
.touch-device .nav-link,
.touch-device .social-header-link {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Improve touch targets */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .social-header-link,
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* CSS Variables */
:root {
    --primary-color: #ff6b9d;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #4ecdc4 50%, #ffe66d 100%);
    --gradient-secondary: linear-gradient(135deg, #4ecdc4 0%, #ffe66d 100%);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.95) 0%, rgba(78, 205, 196, 0.95) 50%, rgba(255, 230, 109, 0.95) 100%);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: all 0.4s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    overflow: visible;
}

.navbar {
    padding: 1rem 0;
    height: auto;
    display: flex;
    flex-direction: row;
    position: relative;
}

.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Logo */
.header-logo-right {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.header-logo-img {
    width: 180px;
    height: auto;
    max-height: 70px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.header-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.35));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-item {
    position: relative;
    width: auto;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s ease;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
    width: auto;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    text-shadow: 0 3px 6px rgba(0,0,0,0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Active state enhancement */
.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    border-width: 2px;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.5);
}

/* Social Header */
.social-header {
    order: 3;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    padding: 0;
    margin: 0;
}

.social-header-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.4s ease;
    font-size: 0.8rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.social-header-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.4);
}

.social-header-link i {
    font-size: 1.1rem;
}

/* Social media specific colors */
.social-header-link.facebook {
    background: linear-gradient(135deg, rgba(66, 103, 178, 0.5) 0%, rgba(66, 103, 178, 0.3) 100%);
    border-color: rgba(66, 103, 178, 0.8);
    box-shadow: 0 4px 15px rgba(66, 103, 178, 0.3);
}

.social-header-link.facebook:hover {
    background: linear-gradient(135deg, rgba(66, 103, 178, 0.6) 0%, rgba(66, 103, 178, 0.4) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 103, 178, 0.4);
}

.social-header-link.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.5) 0%, rgba(245, 96, 64, 0.3) 100%);
    border-color: rgba(225, 48, 108, 0.8);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-header-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.6) 0%, rgba(245, 96, 64, 0.4) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-header-link.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.5) 0%, rgba(37, 211, 102, 0.3) 100%);
    border-color: rgba(37, 211, 102, 0.8);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-header-link.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.6) 0%, rgba(37, 211, 102, 0.4) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content */
.main-content {
    margin-top: 90px;
    padding: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 5;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: all 0.6s ease;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255,255,255,0.3);
}

.hero-img:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3) 0%, rgba(78, 205, 196, 0.3) 100%);
    z-index: 2;
    backdrop-filter: blur(1px);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

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

/* Company Overview Section */
.company-overview-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.overview-image {
    text-align: center;
    position: relative;
}

.overview-img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.overview-img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.25);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Products Showcase Section */
.products-showcase {
    padding: 100px 0;
    background: white;
}

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

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

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

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

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

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.product-badge.new {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
}

.product-badge.popular {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Quality Section */
.quality-section {
    padding: 100px 0;
    background: var(--gradient-secondary);
    color: white;
    position: relative;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.quality-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.quality-feature i {
    color: var(--accent-color);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

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

.quality-img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-logo-img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-right: 10px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

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

.social-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-footer-link.facebook {
    background: #1877f2;
}

.social-footer-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-footer-link.whatsapp {
    background: #25d366;
}

.social-footer-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

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

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .overview-content {
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Optimization */
    .header {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        transform: translateY(0);
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        gap: 1rem;
        max-width: 100%;
    }
    
    .header-logo-right {
        order: 1;
        flex-shrink: 0;
    }
    
    .header-logo-img {
        width: 120px;
        max-height: 50px;
    }
    
    .nav-menu {
        display: none; /* Hide menu on mobile, will show hamburger */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 107, 157, 0.95);
        backdrop-filter: blur(20px);
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-link.active {
        background: rgba(255, 255, 255, 0.25);
        border-color: var(--primary-color);
        color: var(--primary-color);
        font-weight: 700;
        border-width: 2px;
    }
    
    .nav-link.active::after {
        display: none; /* Hide the bottom border on mobile */
    }
    
    .social-header {
        order: 3;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .social-header-link {
        padding: 8px;
        font-size: 0.8rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .hamburger {
        display: flex;
        order: 2;
        flex-shrink: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    body {
        margin-top: 100px;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 1rem;
        min-height: 50px;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }

    /* Company Overview Mobile */
    .company-overview-section {
        padding: 60px 0;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .overview-title {
        font-size: 2.2rem;
    }

    .overview-description {
        font-size: 1.1rem;
    }

    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

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

    /* Features Mobile */
    .features {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    /* Products Mobile */
    .products-showcase {
        padding: 60px 0;
    }

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

    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 1.5rem;
    }

    /* Quality Section Mobile */
    .quality-section {
        padding: 60px 0;
    }

    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .quality-text h2 {
        font-size: 2.2rem;
    }

    .quality-text p {
        font-size: 1.1rem;
    }

    .quality-img {
        max-width: 250px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    
    .header-logo-img {
        width: 100px;
        max-height: 40px;
    }
    
    .social-header-link {
        padding: 6px;
        font-size: 0.7rem;
        min-width: 35px;
        min-height: 35px;
    }

    .hero {
        padding: 50px 0 30px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 45px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .overview-title {
        font-size: 1.8rem;
    }

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

    .feature-card {
        padding: 1.5rem 1rem;
    }

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

    .feature-card p {
        font-size: 1rem;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-info p {
        font-size: 0.9rem;
    }

    .quality-text h2 {
        font-size: 1.8rem;
    }

    .quality-text p {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }
}
