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

:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #7f8c8d;
    --dark-gray: #34495e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-tagline {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    font-weight: 400;
    display: block;
    line-height: 1;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

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

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
}

/* Section Visibility */
section {
    display: none;
}

section.active {
    display: block !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8) 0%, rgba(44, 62, 80, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    padding-top: 100px; /* Add space for fixed navbar */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Form Helper Text */
.form-help-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-help-text small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #25D366;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
    border-bottom-color: #128C7E;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    margin: 10px auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
}

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

/* Our Story / About Us Section */
.our-story {
    padding: 5rem 0;
    background: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

.founders-section h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.founder-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.founder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.founder-card h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio {
    text-align: left;
    line-height: 1.8;
    color: var(--text-color);
}

.founder-bio strong {
    color: var(--primary-color);
}

.vision-section {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.vision-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vision-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.products-grid-creative {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Large Featured Card */
.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.large-card .product-image-box {
    height: 400px;
}

.large-card .product-content {
    padding: 2.5rem;
}

.large-card .product-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.large-card .product-content p {
    font-size: 1.05rem;
    min-height: auto;
}

/* Medium Cards */
.medium-card {
    grid-column: span 2;
}

.medium-card .product-image-box {
    height: 220px;
}

/* Small Cards */
.small-card .product-image-box {
    height: 180px;
}

.small-card .product-content {
    padding: 1.25rem;
}

.small-card .product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.small-card .product-content p {
    display: block;
    font-size: 0.85rem;
}

/* Base Product Card Styles */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.product-image-box {
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.placeholder-emoji {
    font-size: 5rem;
    opacity: 0.75;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.product-card:hover .placeholder-emoji {
    transform: scale(1.15) rotate(-8deg);
    opacity: 0.9;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

.product-content {
    padding: 2rem;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: #e74c3c;
}

.product-content p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.view-products {
    display: inline-block;
    color: #e74c3c;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-card:hover .view-products {
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid-creative {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .large-card {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .medium-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .products-grid-creative {
        grid-template-columns: 1fr;
    }
    
    .large-card,
    .medium-card,
    .small-card {
        grid-column: span 1;
    }
    
    .small-card .product-content p {
        display: block;
    }
}
}

.product-categories {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.product-categories h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.product-categories ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.product-categories li {
    padding: 1rem;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
}

/* Product Detail Sections */
.product-detail {
    padding: 100px 0 80px;
    background: var(--light-bg);
}

.back-link {
    margin-bottom: 2rem;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-link a:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

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

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-item-image {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    padding: 0;
}

.product-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
}

.product-item-image .product-icon {
    font-size: 5rem;
    opacity: 0.8;
}

/* Variant Badge Styling */
.variant-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    z-index: 10;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInBadge 0.5s ease;
}

.variant-badge.white {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #2C3E50;
    border: 2px solid #ddd;
}

.variant-badge.original {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: #ffffff;
    border: 2px solid #E74C3C;
}

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

.product-package {
    border: 3px solid #ddd;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
}

.product-package.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-label {
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E74C3C;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.3rem;
}

.product-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.package-size {
    font-size: 2rem;
    font-weight: 700;
    color: #E74C3C;
    background: rgba(255,255,255,0.8);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 0.5rem;
    border: 2px solid #E74C3C;
}

.product-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0;
}

.product-item p {
    padding: 0 1.5rem 0.5rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* Product Specifications */
.product-specs {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.5rem 0.5rem;
    flex-wrap: wrap;
}

.spec-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #a5d6a7;
}

/* Premix Featured Banner */
.premix-featured-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50 0%, #3d5166 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    color: white;
}

.premix-banner-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.premix-banner-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.premix-banner-list {
    list-style: none;
    padding: 0;
}

.premix-banner-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.premix-banner-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.premix-banner-image img {
    max-height: 320px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

.subsection-title {
    margin: 2rem 0 1.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

@media (max-width: 768px) {
    .premix-featured-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .premix-banner-image img {
        max-height: 220px;
    }
}

/* Get Quote Button */
.btn-quote {
    display: inline-block;
    margin: 0.5rem 1.5rem 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    text-align: center;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, var(--primary-color) 100%);
}


.product-features {
    margin-top: 3rem;
}

.product-features h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
}

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

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

.feature-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}


/* Footer */
.footer {
    background: var(--secondary-color);
    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-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

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

    .story-content,
    .presence-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .product-categories ul {
        grid-template-columns: 1fr;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        padding-left: 1rem;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .logo h1 {
        font-size: 1.5rem;
    }
}

/* Mission & Values Section */
.mission-values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card, .values-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .values-card:hover {
    transform: translateY(-5px);
}

.mission-icon, .values-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3, .values-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    line-height: 1.8;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 2rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Map Container */
.map-container {
    margin-top: 2rem;
}

.map-container h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-bg);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .mission-values-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }
}

/* Hero USPs */
.hero-usps {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.usp-icon {
    font-size: 1.5rem;
}

.usp-text {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

/* Download Catalog Section */
.download-catalog {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

.catalog-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.catalog-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.catalog-features {
    list-style: none;
    padding: 0;
}

.catalog-features li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.catalog-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.catalog-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.catalog-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.catalog-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-download {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: #667eea;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Business Hours */
.business-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .hero-usps {
        gap: 1rem;
    }

    .usp-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .usp-icon {
        font-size: 1.2rem;
    }

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

    .catalog-text h2 {
        font-size: 2rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }
}
