/* 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.6;
    color: #2D3748;
    background-color: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2D3748;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2D3748;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

p {
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 1rem;
}

/* Centered Content */
.centered-content {
    text-align: center;
}

.centered-content .content-split,
.centered-content .hero-content {
    text-align: left;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E2E8F0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

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

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #4A5568;
    color: white;
    border-color: #4A5568;
}

.btn-primary:hover {
    background-color: #2D3748;
    border-color: #2D3748;
}

.btn-secondary {
    background-color: transparent;
    color: #4A5568;
    border-color: #4A5568;
}

.btn-secondary:hover {
    background-color: #4A5568;
    color: white;
}

.btn-product {
    background-color: #2D3748;
    color: white;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.btn-product:hover {
    background-color: #1A202C;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    padding: 100px 0 80px;
    margin-top: 80px;
}

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

.hero-text {
    text-align: left;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: #2D3748;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4A5568;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

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

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 200px;
    border-radius: 0;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
    border: 2px dashed #A0AEC0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #718096;
    font-weight: 500;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    text-align: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #F7FAFC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card h3 {
    margin-bottom: 16px;
    color: #2D3748;
}

.service-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.image-content .image-placeholder {
    height: 400px;
}

/* Products */
.products {
    padding: 80px 0;
    background-color: #ffffff;
}

.products h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 3rem;
}

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

.product-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.product-image .image-placeholder {
    height: 200px;
    margin: 0;
    border-radius: 0;
    border: none;
    background: linear-gradient(135deg, #EDF2F7 0%, #E2E8F0 100%);
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    margin-bottom: 12px;
    color: #2D3748;
}

.product-content p {
    margin-bottom: 20px;
    color: #4A5568;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 20px;
}

/* Process */
.process {
    padding: 80px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4A5568;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 16px;
    color: #2D3748;
}

.step p {
    color: #4A5568;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.area-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    text-align: center;
}

.area-card h3 {
    color: #2D3748;
    margin-bottom: 16px;
}

.area-card p {
    color: #4A5568;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #4A5568;
}

.testimonial-author {
    font-weight: 600;
    color: #2D3748;
}

/* Care Guides */
.care-guides {
    padding: 80px 0;
    background-color: #ffffff;
}

.care-guides h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.guide-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    text-align: center;
}

.guide-icon {
    width: 48px;
    height: 48px;
    background: #F7FAFC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guide-card h3 {
    margin-bottom: 16px;
    color: #2D3748;
}

.guide-card p {
    color: #4A5568;
}

/* Contacts */
.contacts {
    padding: 80px 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.contacts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2D3748;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #4A5568;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2D3748;
}

.contact-hours h3 {
    margin-bottom: 20px;
    color: #2D3748;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
}

.hours-item span:first-child {
    color: #4A5568;
}

.hours-item span:last-child {
    color: #2D3748;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2D3748;
    color: #E2E8F0;
    padding: 60px 0 20px;
}

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

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

.footer .brand-name {
    color: #ffffff;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #CBD5E0;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #4A5568;
    text-align: center;
}

.footer-bottom p {
    color: #CBD5E0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .services-grid,
    .products-grid,
    .process-steps,
    .areas-grid,
    .testimonials-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .services,
    .products,
    .process,
    .service-areas,
    .testimonials,
    .care-guides,
    .contacts {
        padding: 60px 0;
    }
}