/* Color Variables */
:root {
    --coral: #FF7F7F;
    --navy: #1A2B4C;
    --mint: #7FDFB0;
    --off-white: #FAFAFA;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6C7B7F;
    --shadow: rgba(26, 43, 76, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--off-white);
}

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

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, var(--coral), var(--mint));
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

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

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow);
}

/* Section Titles */
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--off-white);
    transition: transform 0.2s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card .icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-item {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.service-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--off-white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.product-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-photo {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--coral), var(--mint));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    opacity: 0.9;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin: 24px 24px 16px;
}

.product-card p {
    color: var(--text-light);
    margin: 0 24px 24px;
    line-height: 1.6;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--coral);
    margin: 0 24px 20px;
}

.product-button {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    margin: 0 24px 32px;
    transition: background-color 0.2s ease;
}

.product-button:hover {
    background: var(--coral);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
}

.benefit-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 16px;
}

.benefit-item h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--coral), var(--mint));
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--navy);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 16px;
    font-size: 16px;
}

.contact-item strong {
    color: var(--navy);
    display: inline-block;
    width: 80px;
}

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

.contact-form p {
    color: var(--text-light);
    margin-top: 24px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-weight: 600;
    font-size: 18px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--coral);
}

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close:hover {
    color: var(--navy);
}

.modal-content h3 {
    color: var(--navy);
    font-size: 28px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
}

.submit-button {
    background: linear-gradient(45deg, var(--coral), var(--mint));
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */

/* Centered sections */
.centered-section {
    text-align: center;
}

.centered-section .about-grid,
.centered-section .services-grid,
.centered-section .products-grid,
.centered-section .benefits-grid,
.centered-section .process-steps,
.centered-section .testimonials-grid {
    text-align: center;
}

.centered-section .about-card,
.centered-section .service-item,
.centered-section .product-card,
.centered-section .benefit-item,
.centered-section .step,
.centered-section .testimonial {
    text-align: center;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-main-image {
        max-width: 100%;
        height: 250px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}