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

:root {
    --primary-orange: #EF8236;
    --primary-orange-dark: #D06F2A;
    --dark-grey: #383838;
    --light-grey: #F8F8F8;
    --white: #FFFFFF;
    --accent-blue: #007BFF;
    --font-primary: 'Montserrat', sans-serif;
    --font-fallback: 'Lato', sans-serif;
    --header-height: 80px;
    --header-height-scrolled: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fallback);
    color: var(--dark-grey);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-left: 10px;
}

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

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-link.active {
    font-weight: 600;
}

.header-cta {
    margin-left: 30px;
}

.button {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.button-primary {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.button-primary:hover {
    background: var(--primary-orange-dark);
    border-color: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.button-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.header.scrolled .button {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--dark-grey);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
}

.mobile-nav-link {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-grey);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-orange);
}

.mobile-cta {
    margin-top: 30px;
}

.mobile-phone-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 998;
}

.mobile-phone-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(56, 56, 56, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero .button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 130, 54, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(239, 130, 54, 0); }
}

.hero-home {
    background-image: url('../images/hero-home.png');
}

/* Mission Section */
.mission {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
}

.mission h2 {
    font-size: 2rem;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.mission p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background: var(--light-grey);
}

.services-overview h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 20px;
    background: var(--white);
}

.why-choose-us h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-content {
    padding: 20px;
}

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

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.why-item h3 {
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: var(--light-grey);
}

.testimonials h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

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

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.testimonial-slide blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-grey);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-btn {
    background: var(--white);
    border: 2px solid var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-orange);
}

.carousel-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-orange);
}

.carousel-btn:hover svg {
    fill: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 20px;
    background: var(--primary-orange);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
}

.cta-banner .button {
    background: var(--white);
    color: var(--primary-orange);
    border-color: var(--white);
}

.cta-banner .button:hover {
    background: var(--dark-grey);
    color: var(--white);
    border-color: var(--dark-grey);
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 40px;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 10px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 0.9rem;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-legal {
    margin-top: 10px;
}

.footer-legal a {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0 10px;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

/* Mobile Footer Accordion */
.footer-accordion {
    display: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1rem;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 500px;
}

.accordion-content ul li {
    padding: 10px 0;
}

/* Page Hero Sections */
.hero-about {
    background-image: url('../images/about-team.png');
}

.hero-services {
    background-image: url('../images/hero-home.png');
    background-position: center;
}

.hero-contact {
    background-image: url('../images/hero-home.png');
    background-position: center;
}

.hero-insurance {
    background-image: url('../images/hero-home.png');
    background-position: center;
}

.hero-blog {
    background-image: url('../images/hero-home.png');
    background-position: center;
}

/* About Page Styles */
.our-story {
    padding: 80px 20px;
    background: var(--white);
}

.our-story h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 40px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-grey);
    border-left: 4px solid var(--primary-orange);
    padding-left: 30px;
    margin: 40px 0;
}

.story-quote cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    margin-top: 10px;
    color: #666;
}

/* Team Section */
.our-team {
    padding: 80px 20px;
    background: var(--light-grey);
}

.our-team h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.team-info h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 5px;
}

.team-info .title {
    font-size: 0.85rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.team-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Patient Approach */
.patient-approach {
    padding: 80px 20px;
    background: var(--white);
}

.patient-approach h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.approach-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.approach-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.approach-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.approach-item h3 {
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.approach-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Services Page Styles */
.service-details {
    padding: 80px 20px;
    background: var(--white);
}

.service-details h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 40px;
    background: var(--light-grey);
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-item:nth-child(even) {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 30px;
    flex-shrink: 0;
}

.service-item-content {
    flex: 1;
}

.service-item h3 {
    font-size: 1.4rem;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Process Section */
.our-process {
    padding: 80px 20px;
    background: var(--light-grey);
}

.our-process h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Contact Page Styles */
.contact-details-form {
    padding: 80px 20px;
    background: var(--white);
}

.contact-details-form h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--primary-orange);
}

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

.contact-info ul {
    margin-top: 30px;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.contact-info ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-orange);
    margin-right: 10px;
}

/* Contact Form */
.contact-form {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-fallback);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Location & Hours */
.location-hours {
    padding: 80px 20px;
    background: var(--light-grey);
}

.location-hours h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-info h3 {
    font-size: 1.3rem;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.hours-list {
    margin-top: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
}

.hours-list li span:last-child {
    font-weight: 600;
    color: var(--dark-grey);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: none;
}

/* Insurance Page Styles */
.accepted-insurance {
    padding: 80px 20px;
    background: var(--white);
}

.accepted-insurance h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.insurance-item {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.insurance-item:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.insurance-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Billing Policies */
.billing-policies {
    padding: 80px 20px;
    background: var(--light-grey);
}

.billing-policies h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 40px;
}

.billing-content {
    max-width: 800px;
    margin: 0 auto;
}

.billing-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.billing-content ul {
    margin: 30px 0;
}

.billing-content ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.billing-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Patient Forms */
.patient-forms {
    padding: 80px 20px;
    background: var(--white);
}

.patient-forms h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.forms-list {
    max-width: 600px;
    margin: 0 auto;
}

.form-download {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-download:hover {
    background: var(--dark-grey);
    color: var(--white);
}

.form-download svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-orange);
    margin-right: 15px;
    flex-shrink: 0;
}

.form-download:hover svg {
    fill: var(--white);
}

.form-download span {
    font-size: 1rem;
}

/* Blog Page Styles */
.blog-posts {
    padding: 80px 20px;
    background: var(--white);
}

.blog-posts h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card {
    background: var(--light-grey);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: var(--dark-grey);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.blog-card .button {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Blog Sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-sidebar {
    padding: 30px;
    background: var(--light-grey);
    border-radius: 10px;
    height: fit-content;
}

.blog-sidebar h3 {
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.search-form {
    margin-top: 30px;
}

.search-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav, .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .mobile-phone-btn {
        display: flex;
    }
    
    .hero {
        min-height: 50vh;
        padding: 100px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-image {
        order: -1;
    }
    
    .footer-grid {
        display: none;
    }
    
    .footer-accordion {
        display: block;
    }
    
    .footer-brand {
        display: block;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item img {
        margin: 0 auto 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-banner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-content {
        opacity: 1;
        transform: none;
    }
}
