@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Marcellus&display=swap');

:root {
    --title-color: #101437;
    --title-rgb: 16, 20, 55;
    --link-hover: #53A9FF;
    --link-hover-dark: #3b8fd9;
    --text-color: #4a4a4a;
    --light-bg: #FFFAF6;
    --light-bg-tint: #F7EFE9;
    --border-color: rgba(16, 20, 55, 0.08);
    --white: #fff;
    --accent-gold: #C5A880;
    --accent-gold-light: #F4EBE1;
    --success-color: #2e7d32;
    
    --header-ff: "Marcellus", serif;
    --text-ff: "Inter", sans-serif;
    
    --shadow-sm: 0 4px 12px rgba(16, 20, 55, 0.03);
    --shadow-md: 0 12px 36px rgba(16, 20, 55, 0.06);
    --shadow-lg: 0 24px 48px rgba(16, 20, 55, 0.1);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--text-ff);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-ff);
    color: var(--title-color);
    line-height: 1.3;
    font-weight: 400;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 12px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-color);
}

strong {
    font-weight: 600;
    color: var(--title-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 4px;
    font-family: var(--text-ff);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--title-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 20, 55, 0.2);
}

.btn-primary:hover {
    background-color: var(--link-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(83, 169, 255, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--title-color);
    border: 1px solid var(--title-color);
}

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

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(197, 168, 128, 0.3);
}

.btn-accent:hover {
    background-color: #bfa178;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.45);
}

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

/* Layout Utilities */
section {
    padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-light-tint {
    background-color: var(--light-bg-tint);
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.grid {
    display: grid;
    gap: 30px;
}

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

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

/*-------------------- Container Styles (matching main site Bootstrap) --------------------*/
.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}
@media (min-width: 768px) {
    .container { max-width: 720px; }
}
@media (min-width: 992px) {
    .container { max-width: 960px; }
}
@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

/*-------------------- Header Styles --------------------*/
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-quick);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: var(--transition-quick);
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--title-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-quick);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--title-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.nav-phone i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

/*-------------------- Hero Section --------------------*/
.hero-section {
    padding-top: calc(80px + 6rem);
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #FFFAF6 0%, #F5ECDF 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(83, 169, 255, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--text-ff);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

.hero-title {
    color: var(--title-color);
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(16, 20, 55, 0.04);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--title-color);
    font-weight: 500;
}

.hero-trust-badge i {
    color: var(--accent-gold);
}

.hero-image-container {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.hero-image-card {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 250px;
    border-left: 4px solid var(--accent-gold);
    z-index: 3;
}

.hero-image-card i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.hero-image-card-text {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--title-color);
}

/*-------------------- Value Propositions (Why Us) --------------------*/
.props-grid {
    margin-top: 2rem;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
}

.prop-card {
    padding: 40px 30px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.prop-card:last-child {
    border-right: none;
}

.prop-icon {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.prop-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.prop-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/*-------------------- Doctor Bio Section --------------------*/
.doctor-section {
    position: relative;
}

.doctor-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.doctor-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.doctor-image-wrapper img {
    display: block;
    height: 520px;
    object-fit: cover;
}

.doctor-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--title-color);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 4px;
}

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

.stat-item {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid var(--accent-gold);
}

.stat-number {
    font-family: var(--header-ff);
    font-size: 1.8rem;
    color: var(--title-color);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
}

/*-------------------- Conditions Section --------------------*/
.conditions-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 3.5rem;
}

.condition-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: left;
}

.condition-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--link-hover);
}

.condition-icon {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: inline-block;
}

.condition-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-family: var(--text-ff);
    font-weight: 600;
    color: var(--title-color);
}

.condition-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/*-------------------- Facilities Section --------------------*/
.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.facility-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.facility-item {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.facility-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.4);
    transform: translateX(4px);
}

.facility-icon-num {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    background-color: var(--light-bg);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--header-ff);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.facility-item:hover .facility-icon-num {
    background-color: var(--accent-gold);
    color: var(--white);
}

.facility-content h3 {
    font-family: var(--text-ff);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.facility-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.facility-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.facility-image-wrapper img {
    display: block;
    height: 460px;
    object-fit: cover;
}

/*-------------------- Travel & Route Section --------------------*/
.travel-section {
    background-color: var(--title-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.travel-section h2 {
    color: var(--white);
}

.travel-section h2::after {
    background-color: var(--link-hover);
}

.travel-section p {
    color: rgba(255, 255, 255, 0.8);
}

.travel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.travel-modes {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.travel-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.travel-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--link-hover);
    transform: translateY(-2px);
}

.travel-icon {
    font-size: 2rem;
    color: var(--link-hover);
    line-height: 1;
}

.travel-info h3 {
    color: var(--white);
    font-family: var(--text-ff);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.travel-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.clinic-address-card {
    background-color: var(--white);
    color: var(--title-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--accent-gold);
}

.clinic-address-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.address-item {
    display: flex;
    gap: 15px;
}

.address-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.address-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.address-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--title-color);
}

/*-------------------- Testimonials Section --------------------*/
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
    min-width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-gold-light);
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-family: var(--header-ff);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    color: var(--title-color);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--text-ff);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    border: none;
    transition: var(--transition-quick);
}

.slider-dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/*-------------------- FAQ Section --------------------*/
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(83, 169, 255, 0.4);
}

.faq-header {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-header h3 {
    font-family: var(--text-ff);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 0;
    color: var(--title-color);
    transition: var(--transition-quick);
}

.faq-item.active .faq-header h3 {
    color: var(--link-hover);
}

.faq-icon-toggle {
    font-size: 1.1rem;
    color: var(--accent-gold);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

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

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 28px 24px 28px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
    max-height: 400px; /* adjusted to allow enough space for text */
}

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

/*-------------------- CTA Block Section --------------------*/
.cta-section {
    background: linear-gradient(135deg, #101437 0%, #1c225a 100%);
    color: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40%;
    height: 70%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.cta-section h2::after {
    display: none;
}

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

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

/*-------------------- Footer Styles --------------------*/
footer {
    padding-block: 6.25rem;
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 2.5fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-quick);
    line-height: 2;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info-item {
    display: flex;
    gap: 10px;
    font-size: 0.875rem;
}

.footer-info-item i {
    color: var(--link-hover);
    margin-top: 4px;
    font-size: 1.1rem;
}

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

.footer-info-item a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-info-item a:hover {
    color: var(--link-hover);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--text-color);
}

.footer-bottom a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--link-hover);
}

.social-icon {
    color: var(--text-color);
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition-quick);
}

.social-icon:hover {
    color: var(--link-hover);
}

/* Mobile Quick CTA Sticky Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 15px rgba(16, 20, 55, 0.1);
    z-index: 999;
    display: none;
    padding: 10px 16px;
    border-top: 1px solid var(--border-color);
}

.sticky-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-quick);
}

.sticky-btn-call {
    background-color: var(--white);
    color: var(--title-color);
    border: 1px solid var(--title-color);
}

.sticky-btn-book {
    background-color: var(--title-color);
    color: var(--white);
}

/*-------------------- Responsive Breakpoints --------------------*/
@media (max-width: 992px) {
    section {
        padding: 4.5rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-desc {
        margin-inline: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper img {
        height: 380px;
    }
    
    .hero-image-card {
        left: 20px;
        bottom: 20px;
    }
    
    .doctor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .doctor-image-wrapper img {
        height: 400px;
        width: 100%;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .facility-image-wrapper img {
        height: 350px;
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-cta {
        display: none;
    }
    
    .props-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .prop-card {
        border-bottom: 1px solid var(--border-color);
    }
    .prop-card:nth-child(3n) {
        border-right: none;
    }
    .prop-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .conditions-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: block;
    }
    
    section {
        padding-bottom: calc(4.5rem + 60px); /* Add margin for sticky bar */
    }
    
    .cta-section {
        padding-bottom: calc(5rem + 60px);
    }
    
    footer {
        padding-bottom: calc(30px + 60px);
    }
    
    .slide {
        padding: 10px 10px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .faq-header {
        padding: 18px 20px;
    }
    
    .faq-content {
        padding: 0 20px 20px 20px;
    }
    
    .props-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prop-card:nth-child(3n) {
        border-right: 1px solid var(--border-color);
    }
    .prop-card:nth-child(2n) {
        border-right: none;
    }
    .prop-card:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border-color);
    }
    .prop-card:last-child {
        border-bottom: none;
    }
    
    .conditions-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .props-grid {
        grid-template-columns: 1fr;
    }
    .prop-card {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }
    .prop-card:last-child {
        border-bottom: none;
    }
}
