/* Sante Subdomain Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #3498db; /* Blue theme for health */
    --secondary-color: #2c3e50;
    --accent-color: #2ecc71;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --danger-color: #e74c3c;
    --light-blue: #ebf5fb;
    --medium-blue: #d4e6f1;
    --white: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
}

.btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
.sante-header {
    height: 100vh;
    background-image: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.header-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sante-header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.sante-header p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    font-size: 2rem;
    cursor: pointer;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary-color);
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.intro {
    background-color: white;
    text-align: center;
}

.intro p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--light-blue), var(--white));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-item p {
    margin-bottom: 20px;
    color: #666;
}

/* Services Tabs */
.sante-services {
    background-color: var(--light-blue);
}

.services-tabs {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #eee;
    background-color: var(--secondary-color);
}

.tab-btn {
    padding: 15px 25px;
    background-color: transparent;
    border: none;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
    background-color: var(--primary-color);
}

.tab-btn:hover {
    background-color: rgba(52, 152, 219, 0.7);
}

.tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.tab-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tab-image img:hover {
    transform: scale(1.05);
}

.tab-details h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.tab-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-details p {
    margin-bottom: 15px;
}

.tab-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.tab-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.tab-details li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Health Products */
.health-products {
    background-color: white;
}

.health-products p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.product-category {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

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

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

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.category-content p {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

/* Health Programs */
.health-programs {
    background-color: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.health-programs::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.health-programs::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(46, 204, 113, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.programs-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.program-tabs {
    background-color: var(--secondary-color);
    padding: 20px 0;
}

.program-tab {
    padding: 20px;
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.program-tab.active {
    background-color: rgba(52, 152, 219, 0.2);
    border-left-color: var(--primary-color);
}

.program-tab:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.tab-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.program-tab.active .tab-icon {
    background-color: var(--primary-color);
}

.program-tab h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.program-content-wrapper {
    padding: 30px;
}

.program-content {
    display: none;
}

.program-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.program-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.program-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.program-content p {
    margin-bottom: 20px;
}

.program-content ul {
    margin-bottom: 25px;
}

.program-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.program-content ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Team Section */
.health-team {
    background-color: white;
}

.health-team p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.team-member {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 152, 219, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1rem;
}

.member-desc {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials */
.sante-testimonials {
    background-color: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.testimonial {
    padding: 0 15px;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content:before {
    content: '\201C';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: 0.9rem;
    margin: 0;
    color: #777;
    font-style: normal;
}

/* FAQ Section */
.health-faq {
    background-color: white;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    background-color: var(--light-blue);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.accordion-header:hover {
    background-color: var(--medium-blue);
}

.accordion-header i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-content.active {
    padding: 20px;
    max-height: 1000px;
}

.accordion-content p {
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.sante-cta {
    background-image: linear-gradient(rgba(52, 152, 219, 0.9), rgba(52, 152, 219, 0.9)), url('https://via.placeholder.com/1920x500');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.sante-cta h2 {
    color: white;
}

.sante-cta h2:after {
    background-color: var(--accent-color);
}

.sante-cta p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.cta-btn-outline {
    background-color: transparent;
    border: 2px solid white;
}

.cta-btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--light-blue);
}

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

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 250px;
}

/* Health-specific animations */
.heartbeat {
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 30px;
}

.success-message i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.error-message {
    color: var(--danger-color);
    padding: 10px 15px;
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 3px solid var(--danger-color);
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Floating Health Icons */
.health-icon {
    position: absolute;
    opacity: 0.1;
    color: var(--primary-color);
    z-index: -1;
}

.health-icon.pulse {
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sante-header h1 {
        font-size: 3rem;
    }
    
    .sante-header p {
        font-size: 1.2rem;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-image {
        order: 1;
    }
    
    .tab-details {
        order: 2;
    }
    
    .programs-wrapper {
        grid-template-columns: 1fr;
    }
    
    .program-tabs {
        display: flex;
        overflow-x: auto;
        padding: 10px;
    }
    
    .program-tab {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        min-width: 120px;
        border-left: none;
        border-bottom: 5px solid transparent;
    }
    
    .program-tab.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary-color);
    }
    
    .tab-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .sante-header h1 {
        font-size: 2.5rem;
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        width: 50%;
        text-align: center;
        padding: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .sante-header h1 {
        font-size: 2rem;
    }
    
    .sante-header p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .accordion-header {
        font-size: 1rem;
    }
}