/* Style 5: Elegant with Serif Fonts */

/* Global Styles */
:root {
    --primary: #3b5d7a;
    --primary-light: #4a749a;
    --primary-dark: #2d4a61;
    --secondary: #b89d5c;
    --secondary-light: #cdb47e;
    --secondary-dark: #a48a4c;
    --dark: #2c3e50;
    --text: #4a4a4a;
    --text-light: #6c7a89;
    --light: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #eaeaea;
    --gray-dark: #aaa;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

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

section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.btn:hover:before {
    left: 0;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
}

.btn-light {
    background-color: var(--light);
    color: var(--primary);
    border-color: var(--light);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--light);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.title-decoration span {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: var(--secondary);
}

.title-decoration i {
    margin: 0 15px;
    font-size: 12px;
    color: var(--secondary);
}

.title-decoration.light span {
    background-color: var(--light);
}

.title-decoration.light i {
    color: var(--light);
}

.section-description {
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.image-placeholder {
//    background-color: var(--gray-light);
    color: var(--text-light);
    padding: 40px;
    text-align: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
    color: var(--dark);
}

.loader-logo span {
    color: var(--primary);
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background-color: var(--primary);
    padding: 10px 0;
    color: var(--light);
}

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

.contact-info span {
    margin-right: 20px;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
}

.contact-info span i {
    margin-right: 8px;
}

.header-social a {
    color: var(--light);
    margin-left: 15px;
    font-size: 18px;
}

.header-social a:hover {
    color: var(--secondary-light);
}

.header-main {
    background-color: var(--light);
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.header-main.sticky {
    padding: 10px 0;
}

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

.logo h1 {
    font-size: 26px;
    margin: 0;
}

.logo span {
    color: var(--primary);
}

.main-menu {
    display: flex;
    align-items: center;
}

.main-menu li {
    margin-left: 30px;
    position: relative;
}

.main-menu li a {
    color: var(--dark);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
}

.main-menu li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-menu li a:hover:after,
.main-menu li a.active:after {
    width: 100%;
}

.main-menu li a:hover,
.main-menu li a.active {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--dark);
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    background-color: var(--gray-light);
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-subtitle {
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 50px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image .image-placeholder {
   // height: 450px;
   // box-shadow: var(--shadow);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image .image-placeholder {
    height: 450px;
    box-shadow: var(--shadow);
}

.about-experience {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--primary);
    color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: var(--shadow);
}

.experience-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

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

.about-features li i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 7px;
}

.about-features li span {
    color: var(--text);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}

/* Services Section */
.services {
//    background-color: var(--gray-light);
}

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

.foot-health-text {
    flex: 1;
}

.foot-health-text p.hero-description {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
    font-family: 'Lora', serif;
    line-height: 1.8;
}

.foot-health-image {
    flex: 1;
    text-align: center;
}

.foot-health-image img {
    max-width: 100%;
//    border-radius: 5px;
//    box-shadow: var(--shadow);
}

.foot-health-services {
    margin: 25px 0 35px;
}

.foot-health-services li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--text-light);
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.6;
}

.foot-health-services li i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 7px;
}

.foot-health-services li span {
    flex: 1;
}

.foot-health-text {
    flex: 1;
}

.foot-health-image {
    flex: 1;
    text-align: center;
}

.foot-health-image img {
    max-width: 100%;
 //   border-radius: 5px;
//    box-shadow: var(--shadow);
}

.foot-health-services {
    margin: 25px 0;
}

.foot-health-services li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text);
}

.foot-health-services li i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 7px;
}

.foot-health-contact {
    margin-top: 40px;
//    padding: 30px;
    background-color: var(--light);
//    border-radius: 5px;
//    box-shadow: var(--shadow);
}

.foot-health-contact p.hero-description {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.foot-health-contact a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
}

.foot-health-contact a:hover {
    color: var(--secondary-dark);
}

.foot-health-contact .credentials {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.6;
}

.foot-health-contact p {
    margin-bottom: 15px;
}

.foot-health-contact a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.foot-health-contact a:hover {
    color: var(--secondary);
}

.foot-health-contact .credentials {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 0;
}

/* Responsive styles for foot health section */
@media (max-width: 992px) {
    .foot-health-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .foot-health-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .foot-health-text p.hero-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .foot-health-text p.hero-description {
        font-size: 18px;
    }
    
    .foot-health-services li {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .foot-health-services li {
        align-items: flex-start;
    }
    
    .foot-health-services li i {
        margin-top: 5px;
    }
    
    .foot-health-contact {
        padding: 25px 20px;
    }
    
    .foot-health-contact p.hero-description {
        font-size: 18px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: var(--light);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--gray-light);
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 30px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background-color: var(--primary);
    color: var(--light);
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Why Choose Us Section */
.why-choose {
    background-color: var(--primary);
    color: var(--light);
}

.why-choose .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-content {
    flex: 1;
}

.why-choose-content .section-subtitle,
.why-choose-content .section-title {
    color: var(--light);
    text-align: left;
}

.why-choose-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.why-choose-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary);
    margin-right: 20px;
}

.feature-text h3 {
    color: var(--light);
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-text p {
    margin-bottom: 0;
}

.why-choose-image {
    flex: 1;
}

.why-choose-image .image-placeholder {
  //  height: 450px;
 //   background-color: rgba(255, 255, 255, 0.1);
 //   color: rgba(255, 255, 255, 0.7);
  //  box-shadow: var(--shadow);
}

/* Specialists Section */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.specialist-card {
    background-color: var(--light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.specialist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.specialist-image {
    position: relative;
}

.specialist-image .image-placeholder {
    height: 300px;
}

.specialist-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.specialist-card:hover .specialist-social {
    opacity: 1;
}

.specialist-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light);
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.specialist-social a:hover {
    background-color: var(--primary);
    color: var(--light);
}

.specialist-details {
    padding: 30px;
}

.specialist-details h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.specialist-title {
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.specialist-details p {
    margin-bottom: 20px;
}

.specialist-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialist-credentials span {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    background-color: var(--gray-light);
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--text-light);
}

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

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: var(--light);
    padding: 60px 40px 40px;
    box-shadow: var(--shadow);
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 20px;
}

blockquote {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
}

.author-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: var(--primary);
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-navigation button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light);
    border: none;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-navigation button:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.contact-content.centered .contact-info {
    max-width: 500px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background-color: var(--primary);
    color: var(--light);
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-details p {
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--light);
    padding: 50px 40px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray);
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 93, 122, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
}

.footer-main {
    padding: 80px 0 40px;
}

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

.footer-logo h2 {
    font-size: 28px;
    color: var(--light);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-light);
}

.footer-links h3,
.footer-services h3 {
    color: var(--light);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h3:after,
.footer-services h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links ul a,
.footer-services ul a {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Source Sans Pro', sans-serif;
    transition: var(--transition);
}

.footer-links ul a:hover,
.footer-services ul a:hover {
    color: var(--light);
    padding-left: 10px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 50px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        transition: var(--transition);
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .main-menu li a {
        display: block;
        font-size: 18px;
    }
    
    .hero .container,
    .about-content,
    .why-choose .container,
    .contact-content {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 50px;
    }
    
    .why-choose-image {
    //    margin-top: 50px;
    }
    
    .services-grid,
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .hero {
        padding: 150px 0 70px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-experience {
        right: 0;
        bottom: 0;
        width: 120px;
        height: 120px;
    }
    
    .services-grid,
    .specialists-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        padding: 50px 30px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .contact-info .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 30px;
    }
}