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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #1a2c2e;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

:root {
    --primary-dark: #2e7d32;
    --primary: #66bb6a;
    --primary-light: #e8f5e9;
    --primary-soft: #c8e6c9;
    --accent: #e8a83a;
    --accent-light: #fef8e7;
    --secondary: #4a90e2;
    --secondary-light: #eef4fc;
    --warm: #e86f4a;
    --warm-light: #fef1ec;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-extra-slow: all 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

h1 .highlight {
    color: var(--primary);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 0.6rem 0;
    font-size: 0.8rem;
    opacity: 0;
    animation: slideDownSlow 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

@keyframes slideDownSlow {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-phone-link, .top-bar-email-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.3s ease;
}

.top-bar-phone-link:hover, .top-bar-email-link:hover {
    opacity: 0.85;
}

.top-bar-contact i, .top-bar-hours i {
    margin-right: 0.4rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-schedule-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-schedule-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.top-bar-schedule-btn i {
    font-size: 0.75rem;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideRightSlow 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.1s forwards;
}

@keyframes slideRightSlow {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: underlineSlide 0.3s ease-out;
}

@keyframes underlineSlide {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

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

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 101;
    }
    
    .nav-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--primary-dark);
        border-radius: 3px;
        transition: var(--transition);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li a {
        font-size: 1.1rem;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0 6rem;
    opacity: 0;
    animation: heroSlowFadeIn 1.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.2s forwards;
}

@keyframes heroSlowFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    animation: overlaySlowFadeIn 1.4s ease-out forwards;
}

@keyframes overlaySlowFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: contentSlowFlow 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.5s forwards;
}

@keyframes contentSlowFlow {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.98);
    }
    40% {
        opacity: 0.5;
        transform: translateY(10px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--warm-light);
    color: var(--warm);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: badgeSlowSlideUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.7s forwards;
    transform: translateY(25px);
}

@keyframes badgeSlowSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    color: white;
    opacity: 0;
    animation: headingSlowReveal 1s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.9s forwards;
    transform: translateY(35px);
}

@keyframes headingSlowReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
    animation: highlightSlowPulse 0.8s ease-out 1.3s both;
}

@keyframes highlightSlowPulse {
    0% {
        text-shadow: 0 0 0 rgba(102, 187, 106, 0);
    }
    50% {
        text-shadow: 0 0 15px rgba(102, 187, 106, 0.6);
    }
    100% {
        text-shadow: 0 0 0 rgba(102, 187, 106, 0);
    }
}

.hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0 1.5rem;
    opacity: 0;
    animation: paragraphSlowFadeIn 0.9s ease-out 1.1s forwards;
    transform: translateY(25px);
}

@keyframes paragraphSlowFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    opacity: 0;
    animation: featuresSlowFadeIn 0.8s ease-out 1.4s forwards;
}

@keyframes featuresSlowFadeIn {
    to {
        opacity: 1;
    }
}

.hero-feature {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
    animation: featureSlowSlideIn 0.6s ease-out forwards;
}

.hero-feature:nth-child(1) {
    animation-delay: 1.5s;
}
.hero-feature:nth-child(2) {
    animation-delay: 1.6s;
}
.hero-feature:nth-child(3) {
    animation-delay: 1.7s;
}

@keyframes featureSlowSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-feature i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.hero-feature:hover {
    background: rgba(102, 187, 106, 0.3);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonGroupSlowFadeIn 0.7s ease-out 1.8s forwards;
}

@keyframes buttonGroupSlowFadeIn {
    to {
        opacity: 1;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 187, 106, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(102, 187, 106, 0.4);
}

.btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary);
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0 7rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .btn-group {
        justify-content: center;
    }
}

/* Trust Badges */
.trust-badges {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.badge-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.badge-item i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* About Section (Homepage Preview) */
.about-section {
    padding: 4rem 0;
    background: white;
}

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

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.about-highlight {
    background: var(--primary-light);
    padding: 1.2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.about-highlight p {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.about-highlight p i {
    margin-right: 0.5rem;
}

.about-highlight p:last-child {
    margin-bottom: 0;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    padding: 4rem 0;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.service-card {
    background: white;
    padding: 1.8rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Insurance Section */
.insurance-section {
    background: white;
    padding: 4rem 0;
}

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

@media (min-width: 768px) {
    .insurance-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.insurance-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.insurance-list span {
    background: var(--secondary-light);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary);
}

.insurance-note-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0.5rem 0 1rem;
}

.insurance-note-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.insurance-image {
    border-radius: 24px;
    overflow: hidden;
    min-height: 250px;
}

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

/* Testimonials Section - Fully Responsive */
.testimonials-section {
    background: linear-gradient(135deg, #fef8e7 0%, #ffffff 100%);
    padding: 4rem 0;
}

.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .testimonial-slider-wrapper {
        gap: 1rem;
    }
}

.testimonial-slider-container {
    flex: 1;
    overflow: hidden;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider-container::-webkit-scrollbar {
    display: none;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    margin: 0 0.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2rem;
        border-radius: 24px;
        margin: 0 0.75rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.stars {
    color: #f5b342;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .stars {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
}

.testimonial-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        -webkit-line-clamp: 8;
    }
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    padding-top: 0.6rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .testimonial-author {
        padding-top: 0.8rem;
        font-size: 0.9rem;
    }
}

.slider-btn {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .slider-dots {
        gap: 0.8rem;
        margin-top: 2rem;
    }
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .dot {
        width: 10px;
        height: 10px;
    }
}

.dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .dot.active {
        width: 24px;
    }
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 4rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.schedule-centered-container {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
}

.schedule-appointment-btn-centered {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 280px;
    margin: 0 auto;
}

.schedule-appointment-btn-centered i {
    font-size: 1.2rem;
}

.schedule-appointment-btn-centered:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    color: white;
    box-shadow: 0 8px 20px rgba(102, 187, 106, 0.4);
}

.schedule-note-centered {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 1rem;
    text-align: center;
}

.contact-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.contact-info-item {
    text-align: center;
    padding: 1rem;
}

.contact-info-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-item p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.5;
}

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

.contact-info-item a:hover {
    text-decoration: underline;
}

.cancellation-centered {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.cancellation-centered i {
    color: var(--warm);
    margin-right: 0.5rem;
}

/* Office Location Section */
.location-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.location-info {
    padding: 1rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.location-address i {
    font-size: 1.8rem;
    color: var(--primary);
}

.location-address p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.location-details {
    margin: 1.5rem 0;
}

.location-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.location-detail-item i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 2rem;
}

.location-detail-item span {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.directions-btn {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.location-map {
    background: white;
    padding: 1rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 16px;
}

.map-note {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: 0.8rem;
}

/* ============================================ */
/* ABOUT PAGE STYLES - Mobile Responsive        */
/* ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Doctor Profile Section */
.doctor-profile-section {
    padding: 4rem 0;
    background: white;
}

.doctor-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

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

.doctor-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.doctor-info h2 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.doctor-info p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Hide doctor credentials (not used) */
.doctor-credentials {
    display: none;
}

/* Staff Section - Previous size with Denise on a separate row */
.staff-section {
    padding: 4rem 0;
    background: white;
}

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

/* Denise Morris card spans full width on its own row */
.staff-grid .staff-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

.staff-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.staff-image {
    position: relative;
    overflow: hidden;
}

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

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

.staff-info {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.staff-info h3 {
    margin-bottom: 0.25rem;
}

.staff-title {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.staff-bio {
    margin: 0.75rem 0;
}

.staff-bio p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Hide staff specialties (not used) */
.staff-specialties {
    display: none;
}

/* Mobile: Center staff descriptions on mobile */
@media (max-width: 768px) {
    .staff-card {
        text-align: center;
    }
    .staff-bio p {
        text-align: center;
    }
    .staff-info {
        padding: 1.5rem;
        text-align: center;
    }
    .staff-grid .staff-card:last-child {
        max-width: 100%;
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.philosophy-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.philosophy-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Schedule Button Container for About Page */
.schedule-button-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.schedule-button-container .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

/* About Page Responsive Styles */
@media (max-width: 992px) {
    .doctor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .doctor-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-grid .staff-card:last-child {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .doctor-profile {
        display: flex;
        flex-direction: column;
    }
    
    .doctor-image {
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .doctor-image img {
        max-width: 100%;
    }
    
    .doctor-info {
        text-align: center;
    }
    
    .staff-card {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .staff-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .staff-info {
        padding: 1.5rem;
        text-align: center;
    }
    
    .staff-bio p {
        text-align: center;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .staff-grid .staff-card:last-child {
        max-width: 100%;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header.centered h2 {
        font-size: 1.6rem;
    }
    
    .philosophy-card {
        padding: 1.2rem;
    }
    
    .philosophy-card i {
        font-size: 2rem;
    }
    
    .philosophy-card h3 {
        font-size: 1.1rem;
    }
    
    .philosophy-card p {
        font-size: 0.85rem;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .schedule-button-container .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-width: 240px;
    }
}

@media (max-width: 480px) {
    .doctor-info h2 {
        font-size: 1.5rem;
    }
    
    .doctor-info p {
        font-size: 0.9rem;
    }
    
    .staff-info h3 {
        font-size: 1.2rem;
    }
    
    .staff-bio p {
        font-size: 0.85rem;
    }
    
    .schedule-button-container .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .page-header {
        padding: 2.5rem 0;
    }
    
    .page-header-content h1 {
        font-size: 1.5rem;
    }
    
    .doctor-profile-section {
        padding: 2rem 0;
    }
    
    .staff-section {
        padding: 2rem 0;
    }
    
    .philosophy-section {
        padding: 2rem 0;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
footer {
    background: var(--gray-900);
    color: #cbd5e1;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 2rem;
    }
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

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

.footer-col p {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.footer-col i {
    margin-right: 0.5rem;
    width: 1.2rem;
}

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

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

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #334155;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-contact {
        justify-content: center;
    }
    
    .top-bar-right {
        justify-content: center;
        gap: 1rem;
    }
    
    .schedule-appointment-btn-centered {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-width: 240px;
    }
    
    .contact-info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-info-item {
        padding: 0.8rem;
    }
    
    .contact-info-item i {
        font-size: 1.5rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        text-align: center;
    }
    
    .location-address {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .location-detail-item {
        justify-content: center;
    }
    
    .directions-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .schedule-appointment-btn-centered {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    .directions-btn {
        flex-direction: column;
    }
    
    .directions-btn .btn {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-card p {
        font-size: 0.8rem;
        -webkit-line-clamp: 5;
    }
    
    .stars {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
        padding-top: 0.5rem;
    }
}