/* Global Styles */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #2d8659;
    --accent-color: #75c7b9;
    --light-bg: #f9f7f4;
    --text-color: #333;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    filter: hue-rotate(-15deg) saturate(1.2);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Lora', serif;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .navbar-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/bowen_hero_bg-eY3e8QfiAXT2GdaqkoUxpX.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(191, 88, 29, 0.3);
}

.btn-primary:hover {
    background-color: #a0452d;
    box-shadow: 0 8px 20px rgba(191, 88, 29, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-contact {
    background-color: white;
    color: var(--secondary-color);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-contact:hover {
    background-color: #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Women's Health Section */
.section-women-health {
    background: linear-gradient(to bottom, rgba(45, 134, 89, 0.05) 0%, var(--white) 100%);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(45, 134, 89, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Featured Section */
.section-featured {
    background-color: var(--white);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.featured-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.featured-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-button {
    text-align: center;
}

@media (max-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr;
    }
}

/* General Benefits Section */
.section-general-benefits {
    background: linear-gradient(135deg, rgba(191, 88, 29, 0.35) 0%, rgba(191, 88, 29, 0.2) 50%, rgba(191, 88, 29, 0.1) 100%);
}

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

.general-benefit-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.general-benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d32f2f;
    margin-bottom: 1rem;
}

.general-benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.general-benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.section-testimonials {
    background-color: var(--white);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-age {
    font-size: 0.85rem;
    color: #999;
}

.testimonial-issue {
    font-size: 0.85rem;
    color: #d32f2f;
    font-weight: 600;
}

.testimonial-quote {
    color: #666;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: #d32f2f;
    font-size: 1.2rem;
}

/* About Section */
.section-about {
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* About Bowen Section */
.section-about-bowen {
    background: linear-gradient(135deg, rgba(191, 88, 29, 0.35) 0%, rgba(191, 88, 29, 0.2) 50%, rgba(191, 88, 29, 0.1) 100%);
}

.about-bowen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-bowen-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-bowen-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-bowen-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-bowen-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-bowen-content {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.section-faq {
    background: linear-gradient(to bottom, rgba(45, 134, 89, 0.05) 0%, var(--white) 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    space-y: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-button {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: background 0.3s ease;
}

.faq-button:hover {
    background: rgba(45, 134, 89, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: rgba(45, 134, 89, 0.05);
    border-top: 1px solid var(--border-color);
    color: #666;
    line-height: 1.8;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

/* Contact Section */
.section-contact {
    background-color: #5fa99a;
    color: white;
}

.section-contact .section-title {
    color: white;
}

.section-contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-card {
    background: rgba(45, 134, 89, 0.15);
    border: 1px solid rgba(45, 134, 89, 0.3);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: white;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.map-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.map-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.map-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 1rem;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: #e8f5e9;
    color: #2d8659;
    border: 1px solid #2d8659;
}

.form-message.error {
    background: #ffebee;
    color: #c85a54;
    border: 1px solid #c85a54;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: #666;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #e5e7eb;
    border-top: 2px solid #15803d;
    padding: 0.5rem 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner p {
    color: #1f2937 !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
}


.cookie-banner.hidden {
    display: none !important;
}


.btn-accept {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
}

.btn-accept:hover {
    background-color: #a0452d !important;
    box-shadow: 0 8px 20px rgba(191, 88, 29, 0.4) !important;
}

.btn-reject {
    background-color: white !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
}

.btn-reject:hover {
    background-color: #f5f5f5 !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.cookie-banner .btn-primary {
    background-color: #10b981 !important;
    color: white !important;
    border: none !important;
}

.cookie-banner .btn-primary:hover {
    background-color: #059669 !important;
}

.cookie-banner .btn-outline {
    background-color: white !important;
    color: #16a34a !important;
    border: 2px solid white !important;
    font-weight: 600 !important;
}

.cookie-banner .btn-outline:hover {
    background-color: #f0f0f0 !important;
    color: #16a34a !important;
}



.cookie-content {
    flex: 1;
}

.cookie-content p {
    color: white;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}
