@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&family=Viaoda+Libre&display=swap");

:root {
    --bg-primary: #faf6f0;
    --bg-secondary: #f3ebe1;
    --bg-white: #ffffff;
    --color-text-dark: #2c2520;
    --color-text-muted: #61564f;
    --color-rust: #bd5b38;
    --color-rust-hover: #a04a2b;
    --color-gold: #c0954f;
    --color-gold-light: #f7ead7;
    --border-light: rgba(189, 91, 56, 0.15);
    --font-serif: "Cormorant Garamond", serif;
    --font-sans: "Outfit", sans-serif;
    --shadow-sm: 0 4px 12px rgba(44, 37, 32, 0.04);
    --shadow-md: 0 10px 30px rgba(44, 37, 32, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--bg-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
    }
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

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

/* Utility Layouts */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flex {
    display: flex;
    gap: 1.5rem;
}

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

/* Button & UI Elements */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-rust);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-rust-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(189, 91, 56, 0.3);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--color-rust);
    border: 1px solid var(--color-rust);
}

.btn-secondary:hover {
    background-color: var(--color-rust);
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background-color: #fff;
    color: var(--color-rust);
}

.btn-light:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Navigation */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(44, 37, 32, 0.04);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2.5rem;
}
.space {
    padding-top: 20px;
}

@media (min-width: 992px) {
    header {
        padding: 0.5rem 0;
    }
    .logo-img {
        height: 100px;
    }
    .nav-links {
        display: flex;
        align-items: center;
    }
}

.nav-links a {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--color-rust);
}

/* Nav Dropdown styling */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 1.75rem;
    transition: var(--transition);
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 280px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--bg-primary);
    color: var(--color-rust);
    padding-left: 1.8rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.btn-nav-appointment {
    padding: 0.6rem 1.4rem !important;
    font-size: 0.8rem !important;
    border-radius: 50px;
    color: white !important;
}

.btn-nav-appointment:hover {
    background-color: var(--color-rust-hover);
    color: white !important;
}

@media (min-width: 768px) {
    .nav-cta {
        display: block;
    }
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    cursor: pointer;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Nav Modal */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-links a {
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

/* Hero Section */
.hero {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-image: url("../images/bg-image-banner-1.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* align-items: start; */
      align-items: center;
    gap: 4rem;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-text h1 {
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    display: block;
    font-weight: 300;
    font-size: 0.6em;
    color: var(--color-rust);
}

.hero-text .subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.hero-image-container {
    border-radius: 120px 120px 30px 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--bg-white);
    /* aspect-ratio: 4/5; */
    background: var(--bg-secondary);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--color-rust);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.experience-badge .number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Specializations Section */
.specs {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.specs-title-row {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.specs-title-row h2 {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.specs-subtitle {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-text-dark);
    font-style: italic;
}

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

.spec-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-gold);
    font-size: 1.5rem;
}

.spec-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.spec-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.specs-banner {
    text-align: center;
    padding: 1.5rem;
    border: 1px dashed var(--color-gold);
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 2rem auto 0 auto;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-rust);
}

/* Expert Care Section */
.expert-care {
    background: var(--bg-primary);
}

.expert-care-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.expert-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .expert-row-1 {
        grid-template-columns: 1.1fr 0.9fr;
    }
    .expert-row-2 {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.expert-image-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--bg-white);
    background: var(--bg-white);
    aspect-ratio: 16/11;
    transition: var(--transition);
}

.expert-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.expert-image-card:hover img {
    transform: scale(1.04);
}

.expert-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.expert-text p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.expert-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.expert-feature-item {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-rust);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.expert-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-rust);
    box-shadow: var(--shadow-md);
}

.expert-feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    font-weight: 600;
}

.expert-feature-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Statistics Section */
.stats {
    background: linear-gradient(
        135deg,
        var(--bg-secondary) 0%,
        var(--bg-primary) 100%
    );
    padding: 5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-gold) 0%,
        var(--color-rust) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(189, 91, 56, 0.3);
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(189, 91, 56, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-rust);
    transition: var(--transition);
}

.stat-card:hover .stat-icon-wrapper {
    background: var(--color-rust);
    color: #ffffff;
    transform: scale(1.1);
}

.stat-svg-icon {
    width: 26px;
    height: 26px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-family: "Viaoda Libre", display;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
    transition: var(--transition);
}

.stat-card:hover .stat-number {
    color: var(--color-rust);
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Comprehensive Care Section */
.comprehensive {
    background: var(--bg-white);
}

.comprehensive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .comprehensive-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.comp-image-wrapper {
    position: relative;
}

.comp-image-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 8px solid var(--bg-primary);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
}

.comp-image-container img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.comp-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.comp-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 576px) {
    .comp-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comp-item {
    display: flex;
    gap: 1rem;
}

.comp-icon {
    font-size: 1.5rem;
    color: var(--color-rust);
    margin-top: 0.2rem;
}

.comp-item-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.comp-item-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Appointment CTA Section */
.cta-section {
    background-color: var(--color-rust);
    color: white;
    padding: 0.4rem 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Meet the Doctor Section */
.meet-doctor {
    background: var(--bg-primary);
}

.doctor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .doctor-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.doctor-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.doctor-image-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 6px solid var(--bg-white);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
}

.doctor-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.doctor-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.doctor-bio {
    margin-bottom: 2rem;
}

.doctor-services {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.doctor-services li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.doctor-services li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--color-rust);
}

/* Patient Reviews Section (Google Review style) */
.reviews {
    background-color: var(--bg-white);
}

.reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.reviews-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.google-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.google-brand img {
    height: 25px;
}

.google-rating {
    font-weight: 600;
    color: var(--color-text-dark);
}

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

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

.review-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-rust);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-rust);
    border: 1px solid var(--border-light);
}

.user-info h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.review-stars {
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Contact Form Section */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.contact-info-col h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    list-style: none;
    margin-top: 2rem;
}

.contact-details li {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-details-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(189, 91, 56, 0.08);
    color: var(--color-rust);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-details li:hover .contact-details-icon {
    background-color: var(--color-rust);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(189, 91, 56, 0.25);
}

.contact-details-text h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-details-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(189, 91, 56, 0.2);
    background-color: var(--bg-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-rust);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(189, 91, 56, 0.1);
}

textarea.form-control {
    resize: vertical;
}

/* Footer Section */
footer {
    background: var(--color-text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0  0;
    border-top: 5px solid var(--color-rust);
}

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

.footer-col h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-rust);
    padding-left: 5px;
}
.footer-bottom p{
  margin-bottom: 0px;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--color-rust);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 1;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
}

.reveal-left {
    opacity: 1;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    padding-left: 1px;
}

.reveal-right {
    opacity: 1;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
}

.delay-100 {
    transition-delay: 100ms;
}
.delay-200 {
    transition-delay: 200ms;
}
.delay-300 {
    transition-delay: 300ms;
}

/* Service Pages Styles */
.service-header-sec {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: var(--bg-white);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.service-header-sec h1 {
    font-size: 3rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}
.container_ {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}
@media (min-width: 768px) {
    .service-header-sec h1 {
        font-size: 3.5rem;
    }
}

.service-hero-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .service-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-hero-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.service-hero-text p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.service-hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--bg-white);
    background: var(--bg-white);
    aspect-ratio: 16/11;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-cards-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-rust);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.symptoms-section {
    background: var(--color-rust);
    color: white;
    padding: 1rem 0;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .symptoms-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.symptoms-left h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.symptoms-left p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.symptoms-right ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .symptoms-right ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.symptoms-right li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.symptoms-right li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--color-gold-light);
    font-size: 1.2rem;
}

.treatment-detail-section {
    padding: 0.5rem 0;
    background: var(--bg-white);
}

.treatment-detail-grid {
    display: block;

    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .treatment-detail-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.treatment-detail-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.treatment-detail-left p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.treatment-detail-right {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.treatment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.treatment-list li {
    position: relative;
    padding-left: 2rem;
}

.treatment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-rust);
    font-weight: bold;
    font-size: 1.2rem;
}

.treatment-list h4 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--color-text-dark);
}

.treatment-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.comprehensive-support-sec {
    padding: 1rem 0;
    background: var(--bg-primary);
}

.comprehensive-support-sec h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comprehensive-support-sec .sec-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

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

.support-highlight-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.support-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-rust);
}

.support-highlight-card h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-dark);
}

.support-highlight-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    border: 1px solid #f5c6cb;
}
.alert-danger ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

/* PMOS Impacts Grid Layout Styles */
.pmos-impacts-row {
    padding: 4rem 0 2rem 0;
}

.pmos-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pmos-impact-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pmos-impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-rust);
}

.pmos-impact-icon {
    font-size: 1.5rem;
    color: var(--color-rust);
}

.pmos-impact-title {
    font-weight: 500;
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    font-size: 1.05rem;
}

.pmos-text-container {
    margin: 0 auto;
}

.pmos-highlight-quote {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
}

/* PMOS Symptoms Section Styles */
.pmos-symptoms-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 2rem;
    color: white;
    transition: var(--transition);
}

.pmos-symptoms-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.pmos-symptoms-card h4 {
    color: var(--color-gold-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.pmos-symptoms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pmos-symptoms-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.pmos-symptoms-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--color-gold-light);
}

.pmos-symptoms-list li:last-child {
    margin-bottom: 0;
}

/* PMOS Symptoms Section Detail Alignment Styles */
.symptoms-left-content {
    margin-bottom: 2rem;
}

.symptoms-left-desc {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.symptoms-left-specialist-title {
    margin-top: 2rem;
    color: var(--color-gold-light);
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.symptoms-left-specialist-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.pmos-symptoms-grid {
    display: grid;

    gap: 1.5rem;
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    background: var(--bg-white);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    outline: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-rust);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
    color: var(--color-gold);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ============================================
   FAQ Page — Full Page Styles
   ============================================ */

/* Page subtitle under H1 */
.faq-page-subtitle {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--color-gold);
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* FAQ Section wrapper */
.faq-section {
    background: var(--bg-primary);
    padding: 5rem 0;
}

/* col-10 centered container — 83.33% width */
.faq-outer-container {
    width: 83.33%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .faq-outer-container {
        width: 90%;
    }
}

/* Override existing faq-item for this page — make it feel richer */
.faq-section .faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-section .faq-item:hover {
    border-color: rgba(189, 91, 56, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-section .faq-item[open] {
    background: var(--bg-white);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

/* Left rust accent bar when open */
.faq-section .faq-item[open] {
    border-left: 4px solid var(--color-rust);
}

.faq-section .faq-question {
    padding: 1rem 2rem;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    outline: none;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.faq-section .faq-question::-webkit-details-marker {
    display: none;
}

.faq-section .faq-question:hover {
    color: var(--color-rust);
}

/* Icon circle for +/× */
.faq-section .faq-question::after {
    content: "+";
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-gold-light);
    color: var(--color-rust);
    font-size: 1.4rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-section .faq-item[open] .faq-question::after {
    content: "+";
    transform: rotate(45deg);
    background: var(--color-rust);
    color: #fff;
}

/* Animated wrapper — height is driven by JS */
.faq-section .faq-body {
    overflow: hidden;
    transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: height;
}

/* Inner content — no transition here, just spacing & text */
.faq-section .faq-answer {
    padding: 0.6rem 2rem 1.6rem 2rem;
    color: var(--color-text-muted);
    font-size: 0.97rem;
    line-height: 1.75;
    border-top: 1px solid var(--border-light);
}

.faq-section .faq-answer p {
    margin-bottom: 0;
}

/* ============================================
   FAQ CTA Section - Premium Redesign
   ============================================ */
.faq-cta-section {
    padding: 6rem 2rem;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq-cta-card {
    width: 100%;
    max-width: 960px;
    background-image: url(../images/bg-image-banner-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background: linear-gradient(135deg, var(--color-text-dark) 0%, #3e3229 100%); */
    border-radius: 24px;
    padding: 3rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 37, 32, 0.15);
    border: 1px solid rgba(192, 149, 79, 0.25);
    text-align: center;
}

.faq-cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#2c2520a1;
}
/* Decorative background light blobs */
.faq-cta-pattern-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189, 91, 56, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.faq-cta-pattern-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 149, 79, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta-badge {
    display: inline-block;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.faq-cta-card h2 {
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.faq-cta-card h2 i {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-gold-light);
}

.faq-cta-card p {
    color: #e5dfd9;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.faq-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Premium custom buttons for CTA */
.btn-light-gold {
    background-color: var(--color-gold);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(192, 149, 79, 0.2);
}

.btn-light-gold:hover {
    background-color: #d1a55c;
    border-color: #d1a55c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 149, 79, 0.35);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-icon {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .faq-cta-card {
        padding: 3rem 2rem;
        border-radius: 16px;
    }
    
    .faq-cta-card h2 {
        font-size: 2.2rem;
    }
    
    .faq-cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .faq-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Doctor Credentials List — About Page
   ============================================ */

.doctor-credentials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0 1.75rem 0;
    padding: 0;
}

.doctor-credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    cursor: default;
}

.doctor-credential-item:hover {
    transform: translateX(6px);
}

/* Icon wrapper — base */
.credential-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.credential-icon svg {
    width: 20px;
    height: 20px;
}

/* Individual color themes per degree */
.credential-icon--mbbs {
    background: rgba(189, 91, 56, 0.1);
    color: var(--color-rust);
}
.doctor-credential-item:hover .credential-icon--mbbs {
    background: var(--color-rust);
    color: #fff;
}

.credential-icon--ms {
    background: rgba(192, 149, 79, 0.12);
    color: var(--color-gold);
}
.doctor-credential-item:hover .credential-icon--ms {
    background: var(--color-gold);
    color: #fff;
}

.credential-icon--dnb {
    background: rgba(30, 130, 120, 0.1);
    color: #1e8278;
}
.doctor-credential-item:hover .credential-icon--dnb {
    background: #1e8278;
    color: #fff;
}

.credential-icon--dip {
    background: rgba(110, 60, 160, 0.1);
    color: #6e3ca0;
}
.doctor-credential-item:hover .credential-icon--dip {
    background: #6e3ca0;
    color: #fff;
}

/* Text portion */
.credential-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.credential-degree {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    letter-spacing: 0.3px;
}

.credential-institute {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-top: 0.1rem;
}

.credential-year {
    font-weight: 500;
    color: var(--color-rust);
    font-size: 0.8rem;
}

@media (max-width: 576px) {
    .doctor-credential-item {
        padding: 0.65rem 0.9rem;
        gap: 0.8rem;
    }
    .credential-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    .credential-icon svg {
        width: 17px;
        height: 17px;
    }
    .credential-degree {
        font-size: 0.88rem;
    }
}
