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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #e91e63;
}

/* Hero Carousel Section */
.hero-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 60px 0;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-item.center {
    width: 600px;
    height: 400px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.carousel-item.left {
    width: 400px;
    height: 300px;
    z-index: 2;
    left: 10%;
    transform: translateX(-50%) scale(0.85);
    opacity: 0.6;
    filter: brightness(0.7);
}

.carousel-item.right {
    width: 400px;
    height: 300px;
    z-index: 2;
    right: 10%;
    left: auto;
    transform: translateX(50%) scale(0.85);
    opacity: 0.6;
    filter: brightness(0.7);
}

.carousel-item.hidden {
    opacity: 0;
    z-index: 1;
    transform: scale(0.5);
}

.carousel-item:hover.center {
    transform: translateX(-50%) scale(1.02);
}

.carousel-item:hover.left,
.carousel-item:hover.right {
    opacity: 0.8;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e91e63;
    transform: scale(1.3);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.section-image {
    margin-top: 40px;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-family: Georgia, serif;
}

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

.service-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    font-weight: normal;
}

.service-price {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 300;
}

.service-card p:not(.service-price) {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Insurance Section */
.insurance-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.insurance-section h2 {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.insurance-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

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

.insurance-logo img {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.insurance-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.products-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

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

.product-card {
    background: #fff;
    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-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #e91e63;
}

.product-card p {
    padding: 0 20px 15px;
    color: #666;
    font-size: 0.95rem;
}

.product-link {
    display: block;
    margin: 0 20px 20px;
    padding: 12px 25px;
    background: #e91e63;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.product-link:hover {
    background: #c2185b;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 50px;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    color: #e91e63;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #666;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.contact-form input[type="date"] {
    position: relative;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #c77070;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #b05a5a;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Consent Toggle Switch */
.consent-group {
    margin-bottom: 25px;
}

.consent-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: normal;
}

.consent-text {
    flex: 1;
    margin-right: 15px;
    font-size: 0.95rem;
    color: #333;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #c77070;
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px #c77070;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .carousel-item.center {
        width: 400px;
        height: 300px;
    }

    .carousel-item.left,
    .carousel-item.right {
        width: 250px;
        height: 200px;
    }

    .carousel-wrapper {
        height: 350px;
    }

    .about-content {
        flex-direction: column;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-text h2,
    .services-section h2,
    .insurance-section h2,
    .products-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}