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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.logo svg {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ce0000;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(30, 63, 115, 0.8)), url('images/induso_laundry.png');
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.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="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    background: #ce0000;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: #a60000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(206, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #ce0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* What's Inside Section */
.whats-inside {
    padding: 80px 0;
    background: white;
}

.inside-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.ingredients-list {
    list-style: none;
}

.ingredients-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.ingredients-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ce0000;
    font-weight: bold;
}

.product-image {
    background: linear-gradient(135deg, #2c5aa0, #ce0000);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.product-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.product-logo svg {
    height: 60px;
    width: auto;
}

/* Perfect For Section */
.perfect-for {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.market-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.market-card h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.market-card h3 i {
    margin-right: 0.5rem;
    color: #2c5aa0;
}

/* Product Gallery */
.product-gallery {
    padding: 80px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 90, 160, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Product Image Styling */
.product-image {
    background: #f8f9fa;
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.quote-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #2c5aa0;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:valid,
.form-group textarea:valid,
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #e0e0e0;
}

.quote-submit-btn {
    background: #ce0000;
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.quote-submit-btn:hover {
    background: #a60000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(206, 0, 0, 0.3);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.quote-benefits {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote-benefits h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ce0000;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefits-list li strong {
    color: #2c5aa0;
}

.contact-highlight {
    background: linear-gradient(135deg, #2c5aa0, #ce0000);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-highlight h4 {
    margin-bottom: 1rem;
}

.contact-highlight p {
    margin: 0.5rem 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
}

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

.contact-info {
    font-size: 1.1rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.contact-item strong {
    min-width: 80px;
}

.contact-item strong i {
    margin-right: 0.5rem;
    color: #2c5aa0;
    width: 20px;
    text-align: center;
}

.company-info {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero .tagline {
        font-size: 1.2rem;
    }

    .inside-content,
    .contact-content,
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .features-grid,
    .target-markets,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
footer, .footer-bottom {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: #fff;
    padding: 2rem 0 1rem 0;
    margin-top: 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-section {
    flex: 1 1 200px;
    min-width: 200px;
    margin-bottom: 1.5rem;
}
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-section a:hover {
    color: #ce0000;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 0.95rem;
    background: none;
}
.footer-bottom a {
    color: #fff;
    text-decoration: underline;
    margin-left: 1rem;
}
.footer-bottom a:hover {
    color: #ce0000;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .footer-section {
        min-width: 0;
        width: 100%;
    }
}

.footer {
    background: #2c5aa0;
    padding: 3rem 0 1.5rem 0;
    border-top: none;
    font-size: 1rem;
    color: #fff;
}
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}
.footer-contact, .footer-company {
    flex: 1 1 300px;
    min-width: 260px;
}
.footer-contact h3,
.footer-company h3,
.footer-tagline,
.footer-slogan,
.footer-contact span,
.footer-company p,
.footer-copyright {
    color: #fff;
}
.footer-contact i {
    color: #fff;
}
.footer-legal a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.98rem;
    transition: color 0.2s;
}
.footer-legal a:hover {
    color: #b3d1ff;
    text-decoration: none;
}
.footer-company img {
    display: block;
}
.footer-copyright {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
@media (max-width: 800px) {
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-company, .footer-contact {
        min-width: 0;
    }
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 0.8rem;
}
.footer-contact i {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 0;
    align-self: center;
}
.footer-contact li:last-child {
    margin-bottom: 0;
} 