/* ========================================
   Amanda Butler Veterinary Physiotherapy
   Custom Stylesheet
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-dark: #2A2D30;
    --medium-grey: #9BA8AF;
    --light-blue-grey: #CBDBE5;
    --lightest-blue: #D0EAF7;
    --white: #FFFFFF;
    
    /* Using web-safe alternatives for custom fonts */
    --font-primary: "amandine", sans-serif;
    --font-secondary: 'Roboto Condensed', 'Arial Narrow', sans-serif;
    
    --transition: all 0.3s ease;
    
    /* Main color scheme */
    --bg-color: #2A2D30;
    --text-color: #FFFFFF;
    --heading-color: #D0EAF7;
    --link-color: #D0EAF7;
    --link-hover: #CBDBE5;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    max-width: 100vw;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

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

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

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

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

.container {
    max-width: 1200px;
}

/* ===== Header / Navigation ===== */
.site-header {
    background-color: rgba(42, 45, 48, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: .5rem 0;
}

.navbar-brand .logo {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand .logo:hover {
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1rem;
    color: var(--white) !important;
    padding: 0.5rem 0.75rem !important;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--lightest-blue);
    transition: var(--transition);
}

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

.nav-link.btn-contact {
    background-color: var(--lightest-blue);
    color: var(--primary-dark) !important;
    border-radius: 25px;
    padding: 0.6rem 1.5rem !important;
    margin-left: 0.5rem;
}

.nav-link.btn-contact::after {
    display: none;
}

.nav-link.btn-contact:hover {
    background-color: var(--light-blue-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(208, 234, 247, 0.3);
}

/* Mobile menu button */
.navbar-toggler {
    border: 2px solid var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 45, 48, 0.8) 0%, rgba(42, 45, 48, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--lightest-blue);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-content .tagline {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .credentials {
    font-size: 1.1rem;
    color: var(--light-blue-grey);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn-primary-custom {
    background-color: var(--lightest-blue);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--lightest-blue);
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--lightest-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(208, 234, 247, 0.3);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== Section Styling ===== */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: rgba(155, 168, 175, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--lightest-blue);
    margin-bottom: 1rem;
}

.section-header .underline {
    width: 80px;
    height: 3px;
    background-color: var(--lightest-blue);
    margin: 0 auto 1.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-blue-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Cards ===== */
.service-card,
.info-card {
    background-color: rgba(155, 168, 175, 0.08);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(203, 219, 229, 0.2);
}

.service-card:hover,
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(208, 234, 247, 0.2);
    border-color: var(--lightest-blue);
}

.service-card .icon,
.info-card .icon {
    font-size: 3rem;
    color: var(--lightest-blue);
    margin-bottom: 1.5rem;
}

.service-card h3,
.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--lightest-blue);
    text-align: center;
    padding: 1rem;
}

.service-card p,
.info-card p {
    color: var(--white);
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--white);
}

.service-card ul li::before {
    content: '🐾';
    position: absolute;
    left: 0;
}

/* ===== Testimonial Section ===== */
.testimonial-card {
    background-color: rgba(155, 168, 175, 0.08);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--lightest-blue);
    margin-bottom: 2rem;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--lightest-blue);
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--lightest-blue);
    font-size: 1.2rem;
}

/* ===== Image Gallery ===== */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Contact Form ===== */
.contact-form {
    background-color: rgba(155, 168, 175, 0.08);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(203, 219, 229, 0.2);
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--lightest-blue);
}

.form-control {
    border: 2px solid rgba(203, 219, 229, 0.3);
    border-radius: 5px;
    padding: 0.75rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
    background-color: rgba(42, 45, 48, 0.5);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--medium-grey);
}

.form-control:focus {
    border-color: var(--lightest-blue);
    box-shadow: 0 0 0 0.2rem rgba(208, 234, 247, 0.25);
    outline: none;
    background-color: rgba(42, 45, 48, 0.7);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.site-footer .footer-logo {
    height: 100px;
    width: auto;
}

.site-footer .tagline {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.site-footer .credentials {
    font-size: 0.9rem;
    color: var(--light-blue-grey);
    line-height: 1.8;
}

.site-footer h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--light-blue-grey);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.8rem;
    color: var(--medium-grey);
    width: 20px;
}

.contact-info a {
    color: var(--light-blue-grey);
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--medium-grey);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--medium-grey);
    margin-top: 3rem;
    padding-top: 2rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--light-blue-grey);
}

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

/* ===== Info Boxes ===== */
.info-box {
    background-color: rgba(208, 234, 247, 0.1);
    border-left: 4px solid var(--lightest-blue);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--lightest-blue);
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0;
    color: var(--white);
}

/* ===== Badges & Icons ===== */
.badge-custom {
    background-color: var(--lightest-blue);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin: 0.3rem;
}

.paw-bullet {
    color: var(--lightest-blue);
    margin-right: 0.5rem;
}

/* ===== Homepage Carousel ===== */
.hero-carousel {
    height: 90vh;
    min-height: 600px;
}

.hero-carousel .carousel-item {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 45, 48, 0.85) 0%, rgba(42, 45, 48, 0.7) 100%);
    z-index: 1;
}

.hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-carousel .carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--lightest-blue);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-carousel .carousel-caption p {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    font-style: italic;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: var(--transition);
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    opacity: 1;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--lightest-blue);
    border: none;
    opacity: 0.5;
}

.hero-carousel .carousel-indicators button.active {
    opacity: 1;
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.feature-box .feature-icon {
    font-size: 4rem;
    color: var(--lightest-blue);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: var(--lightest-blue);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--light-blue-grey);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    transition: var(--transition);
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(135deg, rgba(208, 234, 247, 0.1) 0%, rgba(203, 219, 229, 0.05) 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--lightest-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--light-blue-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Services Grid ===== */
.services-grid {
    margin-top: 3rem;
}

/* ===== Logo Section ===== */
.logo-section {
    padding: 3rem 0;
    background-color: rgba(155, 168, 175, 0.05);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    filter: grayscale(100%) brightness(200%);
    opacity: 0.6;
    transition: var(--transition);
    max-width: 150px;
}

.logo-item:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.05);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(208, 234, 247, 0.15) 0%, rgba(203, 219, 229, 0.1) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(208, 234, 247, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.cta-section h2 {
    font-size: 3rem;
    color: var(--lightest-blue);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--light-blue-grey);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Preview Section ===== */
.about-preview {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.about-preview .about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-preview .about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-preview .about-image:hover img {
    transform: scale(1.05);
}

.about-preview .about-content {
    flex: 1;
}

.about-preview .about-content h3 {
    font-size: 2rem;
    color: var(--lightest-blue);
    margin-bottom: 1.5rem;
}

.about-preview .about-content p {
    color: var(--light-blue-grey);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== Testimonials Carousel ===== */
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-carousel .carousel-item {
    padding: 2rem 3rem;
}

.testimonials-carousel .testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.testimonials-carousel .testimonial-author {
    text-align: center;
    font-size: 1.2rem;
    color: var(--lightest-blue);
    font-weight: 600;
}

.carousel-control-prev {
  left: -8rem;
}

.carousel-control-next {
  right: -8rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-link {
        padding: 0.8rem 0 !important;
    }
    
    .nav-link.btn-contact {
        margin: 1rem 0 0 0;
        display: inline-block;
    }
    
    .hero-content h1,
    .hero-carousel .carousel-caption h1 {
        font-size: 2.8rem;
    }
    
    .hero-content .tagline,
    .hero-carousel .carousel-caption p {
        font-size: 1.5rem;
    }
    
    .about-preview {
        flex-direction: column;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-section,
    .hero-carousel,
    .hero-carousel .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    
    .navbar-brand .logo {
        height: 60px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1,
    .hero-carousel .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .hero-content .tagline,
    .hero-carousel .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .info-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .hero-content .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
    }
    
    .btn-primary-custom {
        margin-bottom: 1rem;
    }
    
    .testimonials-carousel .carousel-item {
        padding: 1rem;
    }
    
    .testimonials-carousel .testimonial-text {
        font-size: 1.1rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== Utility Classes ===== */
.text-primary-color {
    color: var(--primary-dark);
}

.text-secondary-color {
    color: var(--medium-grey);
}

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

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

.mb-large {
    margin-bottom: 4rem;
}

.mt-large {
    margin-top: 4rem;
}

/* Backgrounds */

.testimonials-section {
  background: linear-gradient(to top, rgba(42,45,48,.9),rgba(42,45,48,.8)),url(/images/clients-bg.jpeg);
  background-size: cover;
}

.cta-section {
  background: linear-gradient(to top, rgba(42,45,48,.9),rgba(42,45,48,.8)),url(/images/dog.jpeg);
  background-size: cover;
}

/* Featured images */

.featured-images img {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    height: 20rem;
    object-fit: cover;
    margin-bottom: 3rem;
    width: 100%;
}


/* ===== Page Headers ===== */
.page-header {
    background: linear-gradient(135deg, rgba(208, 234, 247, 0.15) 0%, rgba(203, 219, 229, 0.1) 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--lightest-blue);
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.3rem;
    color: var(--light-blue-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Dropdown Menu Styling ===== */
.dropdown-menu {
    background-color: var(--primary-dark);
    border: 1px solid rgba(203, 219, 229, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(208, 234, 247, 0.1);
    color: var(--lightest-blue);
}

.nav-link.dropdown-toggle::after {
    margin-left: 0.5rem;
}

/* ===== Pricing Cards ===== */
.pricing-card {
    background-color: rgba(155, 168, 175, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(203, 219, 229, 0.2);
    height: 100%;
}

.pricing-header {
    background-color: var(--lightest-blue);
    color: var(--primary-dark);
    padding: 1.5rem;
    text-align: center;
}

.pricing-header h2 {
    color: var(--primary-dark);
    margin-bottom: 0;
    font-size: 1.8rem;
}

.pricing-body {
    padding: 2rem;
}

.price-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-item h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.price-item .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lightest-blue);
    font-family: var(--font-primary);
}

.discount-note {
    background-color: rgba(208, 234, 247, 0.1);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.discount-note p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--light-blue-grey);
}

.travel-info {
    margin-bottom: 1.5rem;
}

.travel-info h4 {
    color: var(--lightest-blue);
    font-size: 1.2rem;
}

.contact-prompt {
    margin-bottom: 1.5rem;
}

.referral-note {
    background-color: rgba(208, 234, 247, 0.15);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.referral-note p {
    margin-bottom: 0;
    color: var(--lightest-blue);
}

.pricing-card-compact {
    background-color: rgba(155, 168, 175, 0.08);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(203, 219, 229, 0.2);
}

.pricing-card-compact h2 {
    color: var(--lightest-blue);
    margin-bottom: 1.5rem;
}

.price-display {
    margin: 2rem 0;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--lightest-blue);
    font-family: var(--font-primary);
    display: block;
}

.price-duration {
    font-size: 1.2rem;
    color: var(--light-blue-grey);
}

/* ===== Travel Fees Table ===== */
.travel-fees-table {
    background-color: rgba(155, 168, 175, 0.08);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(203, 219, 229, 0.2);
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(203, 219, 229, 0.1);
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-zone {
    flex: 1;
}

.fee-zone strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
}

.fee-zone small {
    color: var(--medium-grey);
}

.fee-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--lightest-blue);
    text-align: right;
}

.fee-amount.highlight {
    color: #7CFC00;
}

/* ===== Conditions Lists ===== */
.conditions-list {
    background-color: rgba(155, 168, 175, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(203, 219, 229, 0.2);
}

.conditions-list h4 {
    color: var(--lightest-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.conditions-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conditions-list ul li {
    padding: 0.4rem 0;
    color: var(--white);
    position: relative;
    padding-left: 1.2rem;
}

.conditions-list ul li::before {
    content: '•';
    color: var(--lightest-blue);
    position: absolute;
    left: 0;
}

/* ===== Physio Images ===== */
.physio-images img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.physio-images img:hover {
    transform: scale(1.02);
}

.gallery-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* ===== About Page ===== */
.about-image-large img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.credentials-box {
    background-color: rgba(208, 234, 247, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--lightest-blue);
}

.credentials-box h4 {
    color: var(--lightest-blue);
    margin-bottom: 1rem;
}

.credentials-box ul li {
    color: var(--white);
}

/* ===== Testimonials Page ===== */
.testimonial-card-full {
    background-color: rgba(155, 168, 175, 0.08);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--lightest-blue);
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote .quote-icon {
    font-size: 2.5rem;
    color: var(--lightest-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-author-full {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(203, 219, 229, 0.2);
}

.testimonial-author-full strong {
    display: block;
    color: var(--lightest-blue);
    font-size: 1.2rem;
}

.testimonial-author-full .animal-type {
    color: var(--medium-grey);
    font-size: 0.95rem;
}

/* ===== Contact Page ===== */
.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--lightest-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.contact-info-text h4 {
    color: var(--lightest-blue);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-info-text p {
    margin-bottom: 0;
}

.social-contact h3 {
    color: var(--lightest-blue);
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn i {
    margin-right: 0.5rem;
}

.social-btn.facebook {
    background-color: #1877F2;
    color: var(--white);
}

.social-btn.facebook:hover {
    background-color: #0d65d9;
    color: var(--white);
    transform: translateY(-2px);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-btn.instagram:hover {
    opacity: 0.9;
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Vet Referral Form ===== */
.form-section {
    background-color: rgba(208, 234, 247, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-section h4 {
    color: var(--lightest-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.form-check-input {
    background-color: rgba(42, 45, 48, 0.5);
    border-color: var(--light-blue-grey);
}

.form-check-input:checked {
    background-color: var(--lightest-blue);
    border-color: var(--lightest-blue);
}

.form-check-label {
    color: var(--light-blue-grey);
}

/* ===== Map Container ===== */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Why Physio Section ===== */
.why-physio-section .lead {
    font-size: 1.4rem;
    color: var(--white);
    font-style: italic;
}

.why-physio-section p {
    color: var(--light-blue-grey);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .fee-row {
        flex-direction: column;
        text-align: center;
    }
    
    .fee-amount {
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        justify-content: center;
    }
}

.nav-link.dropdown-toggle::after {
  margin-left: 0.5rem;

}
.nav-link::after {
    display: none;
}

/* Social media links in nav */
.nav-link.social-nav-link {
    padding: 0.5rem 0.8rem !important;
    font-size: 1.1rem;
}

.nav-link.social-nav-link:hover {
    color: var(--lightest-blue) !important;
    transform: scale(1.1);
}

.nav-link.social-nav-link::after {
    display: none;
}

/* headers */

.page-header {
    background-position: center;
    background-size: cover;
}

.about-header {
    background-image: linear-gradient(to top, rgba(42, 45, 48, 0.5) 0%, rgba(42, 45, 48, 0.5) 100%), url('/images/hero-1.jpeg');
}

.equine-header {
    background-image: linear-gradient(to top, rgba(42, 45, 48, 0.5) 0%, rgba(42, 45, 48, 0.5) 100%), url('/images/hero-2.jpg');
}

.canine-feline-header {
    background-image: linear-gradient(to top, rgba(42, 45, 48, 0.5) 0%, rgba(42, 45, 48, 0.5) 100%), url('/images/hero-3.jpeg');
}

.areas-header {
    background-image: linear-gradient(to top, rgba(42, 45, 48, 0.5) 0%, rgba(42, 45, 48, 0.5) 100%), url('/media/b00bopjn/little-haven-9719727_1920.jpg');
}