/* ===================================
   Battleford Physiotherapy - Main Stylesheet
   Shared styles for all pages
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #00809a;
    --secondary-color: #0077b6;
    --accent-color: #90e0ef;
    --dark-color: #03045e;
    --text-color: #333333;
    --light-bg: #f7f9fc;
    --white: #ffffff;
    --success-color: #06d6a0;
    --warning-color: #ffd166;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

/* Section Padding */
.section-padding {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 25px 0;
    }
}

/* ===================================
   Top Header
   =================================== */
.top-header {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-header a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.top-header a:hover {
    color: var(--accent-color);
}

.top-header i {
    color: var(--primary-color);
    margin-right: 8px;
}

@media (max-width: 576px) {
    .top-header {
        font-size: 0.75rem;
    }
}

/* ===================================
   Navigation
   =================================== */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s;
}

.main-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
}

.navbar-brand i {
    font-size: 2rem;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
}

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

.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='%2300b4d8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    padding: 8px 16px !important;
    transition: all 0.3s;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

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

.btn-appointment {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
    color: var(--white) !important;
}

@media (max-width: 991px) {
    .btn-appointment {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   Hero Section (Home Page)
   =================================== */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0 110px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(144, 224, 239, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-section p {
        font-size: 1rem;
    }
}

.btn-hero {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 576px) {
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}

.btn-primary-hero {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary-hero:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-hero:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Custom Primary Button */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
}

/* ===================================
   Hero Image Slider
   =================================== */
.hero-slider {
    position: relative;
    z-index: 2;
}

.hero-slider .carousel-item img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .hero-slider {
        margin-top: 40px;
    }
}

/* Custom Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 180, 216, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.hero-slider .carousel-control-prev {
    left: 10px;
}

.hero-slider .carousel-control-next {
    right: 10px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
}

.hero-slider .carousel-indicators {
    margin-bottom: -30px;
}

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

.hero-slider .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
}

/* ===================================
   Page Header (About Page)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 35px 0 35px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 20px 0 0;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 3;
    margin-top: -50px;
    border-radius: 20px 20px 0 0;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }
}

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

@media (max-width: 576px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

@media (max-width: 576px) {
    .service-card {
        padding: 30px 20px;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s;
}

@media (max-width: 576px) {
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

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

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

@media (max-width: 576px) {
    .service-card h4 {
        font-size: 1.25rem;
    }
}

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

/* ===================================
   About Content Section
   =================================== */
.about-content-section {
    background: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .about-image {
        margin-bottom: 40px;
    }
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

@media (max-width: 576px) {
    .about-badge {
        padding: 15px;
        bottom: 15px;
        right: 15px;
    }
}

.about-badge h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

@media (max-width: 576px) {
    .about-badge h3 {
        font-size: 1.75rem;
    }
}

.about-badge p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.feature-list i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* ===================================
   Mission & Vision
   =================================== */
.mission-vision {
    background: var(--light-bg);
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
}

@media (max-width: 576px) {
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.mission-card h3,
.vision-card h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-card h3 i,
.vision-card h3 i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* ===================================
   Core Values
   =================================== */
.core-values {
    background: var(--white);
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* ===================================
   Team Section
   =================================== */
.team-section {
    background: var(--light-bg);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-image {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

@media (max-width: 576px) {
    .team-image {
        height: 250px;
    }
}

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

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

@media (max-width: 576px) {
    .team-info {
        padding: 20px;
    }
}

.team-info h5 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

@media (max-width: 576px) {
    .team-info h5 {
        font-size: 1.25rem;
    }
}

.team-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s;
    text-decoration: none;
}

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

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .cta-section p {
        font-size: 1rem;
    }
}

.btn-cta {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.25rem;
}

.footer p {
    opacity: 0.8;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

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

.footer-social a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 576px) {
    .footer-bottom {
        font-size: 0.875rem;
    }
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border: none;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
}

@media (max-width: 576px) {
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   Physiotherapy Page Styles
   =================================== */

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: none;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

/* Service Hero Section */
.service-hero-section {
    background: var(--white);
}

.service-hero-section .lead {
    font-size: 1.15rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--light-bg);
}

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

@media (max-width: 576px) {
    .feature-box {
        padding: 30px 20px;
    }
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-box h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Physio Services Section */
.physio-services-section {
    background: var(--white);
}

.service-detail-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

@media (max-width: 576px) {
    .service-detail-card {
        padding: 25px 20px;
    }
}

.service-detail-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
    transform: translateY(-5px);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.service-detail-card h4 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-detail-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    background: var(--light-bg);
}

.benefits-list h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.custom-check-list {
    list-style: none;
    padding: 0;
}

.custom-check-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-color);
}

.custom-check-list i {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Treatment Process Section */
.treatment-process-section {
    background: var(--white);
}

.process-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

@media (max-width: 576px) {
    .process-card {
        padding: 30px 20px;
    }
}

.process-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-card h4 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* CTA Section Alternative */
.cta-section-alt {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-alt::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.cta-section-alt h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .cta-section-alt h2 {
        font-size: 2rem;
    }
}

.cta-section-alt .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-section-alt .btn-light:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Specialized Treatments Accordion */
.specialized-treatments-section {
    background: var(--light-bg);
}

.accordion-treatment {
    border-radius: 15px;
    overflow: hidden;
}

.accordion-treatment .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    background: var(--white);
}

.accordion-treatment .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-treatment .accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.15rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s;
    position: relative;
}

@media (max-width: 576px) {
    .accordion-treatment .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

.accordion-treatment .accordion-button i {
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s;
}

.accordion-treatment .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.2);
}

.accordion-treatment .accordion-button:not(.collapsed) i {
    color: var(--white);
    transform: scale(1.1);
}

.accordion-treatment .accordion-button:hover {
    background: var(--light-bg);
}

.accordion-treatment .accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.accordion-treatment .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-treatment .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300b4d8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s;
}

.accordion-treatment .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-treatment .accordion-body {
    padding: 25px;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.8;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 576px) {
    .accordion-treatment .accordion-body {
        padding: 20px;
    }
}

.accordion-treatment .accordion-body p {
    margin-bottom: 15px;
}

.accordion-treatment .accordion-body p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Products Page Styles
   =================================== */

/* Products Intro */
.products-intro {
    background: var(--white);
}

.products-intro .lead {
    font-size: 1.15rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.8;
}

/* Products Grid */
.products-grid {
    background: var(--light-bg);
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.9), rgba(0, 119, 182, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.3s;
}

.product-card:hover .product-overlay i {
    transform: scale(1);
}

.product-content {
    padding: 30px 25px;
}

@media (max-width: 576px) {
    .product-content {
        padding: 25px 20px;
    }
}

.product-content h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 576px) {
    .product-content h4 {
        font-size: 1.3rem;
    }
}

.product-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.product-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Products Why Choose */
.products-why-choose {
    background: var(--white);
}

.feature-box-alt {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s;
    height: 100%;
}

.feature-box-alt:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
    transform: translateY(-5px);
}

.feature-icon-alt {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s;
}

.feature-box-alt:hover .feature-icon-alt {
    transform: scale(1.1) rotate(5deg);
}

.feature-box-alt h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-box-alt p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   Product Detail Pages Styles
   =================================== */

/* Product Dropdown Menu */
.dropdown-menu-products {
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
}

/* Product Detail Hero */
.product-detail-hero {
    background: var(--white);
}

/* Product Benefits */
.product-benefits {
    background: var(--light-bg);
}

.benefit-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-card h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Who Needs Section */
.who-needs-section {
    background: var(--white);
}

.condition-list h4 {
    font-size: 1.4rem;
    color: var(--dark-color);
    font-weight: 700;
}

/* Fitting Process */
.fitting-process {
    background: var(--light-bg);
}

.process-card-small {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.process-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.15);
}

.process-number-small {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.process-card-small h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 20px 0 10px;
    font-weight: 700;
}

.process-card-small p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================
   Services Listing Page Styles
   =================================== */

.services-intro {
    background: var(--white);
}

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

.service-listing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.2);
}

.service-listing-image {
    height: 250px;
    overflow: hidden;
}

.service-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-listing-card:hover .service-listing-image img {
    transform: scale(1.1);
}

.service-listing-content {
    padding: 30px;
}

@media (max-width: 576px) {
    .service-listing-content {
        padding: 25px 20px;
    }
}

.service-listing-content h3 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 576px) {
    .service-listing-content h3 {
        font-size: 1.5rem;
    }
}

.service-listing-content p {
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-highlights li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-highlights li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===================================
   Contact Page Styles
   =================================== */

/* Contact Info Cards V2 */
.contact-info-section {
    background: var(--white);
}

.contact-info-card-v2 {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card-v2:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s;
}

.contact-info-card-v2:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card-v2 h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info-card-v2 p {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-info-card-v2 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card-v2 a:hover {
    color: var(--secondary-color);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Map and Form Section */
.map-form-section {
    background: var(--white);
}

.map-container {
    width: 100%;
    height: 700px;
    position: relative;
}

@media (max-width: 991px) {
    .map-container {
        height: 400px;
    }
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Details Wrapper */
.contact-details-wrapper {
    padding: 60px 50px;
    background: var(--light-bg);
    height: 100%;
    min-height: 700px;
}

@media (max-width: 991px) {
    .contact-details-wrapper {
        min-height: auto;
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .contact-details-wrapper {
        padding: 30px 20px;
    }
}

.contact-details-header {
    margin-bottom: 40px;
}

.contact-details-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .contact-details-header h2 {
        font-size: 2rem;
    }
}

.contact-details-header p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Contact Detail Box */
.contact-detail-box {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .contact-detail-box {
        padding: 20px;
    }
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail-item:first-child {
    padding-top: 0;
}

.detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.detail-content {
    flex: 1;
}

.detail-content h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-content p {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.8;
}

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

.detail-content a:hover {
    color: var(--secondary-color);
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 5px;
    transition: all 0.3s;
}

.detail-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Compact Hours */
.hours-compact {
    margin-top: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
}

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

.hours-row .day {
    font-weight: 600;
    color: var(--dark-color);
}

.hours-row .time {
    color: var(--primary-color);
    font-weight: 600;
}

.hours-row.closed .time {
    color: #757575;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .quick-actions {
        flex-direction: column;
    }
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
    color: var(--white);
}

.btn-action-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-action-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.social-media-section h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links-large a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
}

/* Opening Hours Section */
.opening-hours-section {
    background: var(--white);
}

.hours-list {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.hours-item.closed .time {
    color: #999;
}

.hours-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(1);
}

.accordion-body {
    padding: 25px;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.8;
}

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

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

.bg-white {
    background-color: var(--white) !important;
}

/* Team Carousel Styles - Add this to your existing styles.css */

.team-carousel-multi {
    position: relative;
    padding: 0 60px;
}

@media (max-width: 1200px) {
    .team-carousel-multi {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .team-carousel-multi {
        padding: 0 40px;
    }
}

/* Slow down the slide transition */
#teamCarousel .carousel-item {
    transition: transform 1.2s ease-in-out;
}

#teamCarousel .carousel-control-prev,
#teamCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
}

#teamCarousel .carousel-control-prev {
    left: 0;
}

#teamCarousel .carousel-control-next {
    right: 0;
}

.team-image {
    height: 350px;  /* Increase from 300px */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* This crops the image to fit */
    object-position: center top;  /* Focus on top of image (face) */
}

@media (max-width: 768px) {
    #teamCarousel .carousel-control-prev,
    #teamCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

#teamCarousel .carousel-control-prev:hover,
#teamCarousel .carousel-control-next:hover {
    opacity: 0.9;
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.5);
    transform: translateY(-50%) scale(1.1);
}

#teamCarousel .carousel-control-prev-icon,
#teamCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

#teamCarousel .carousel-indicators {
    margin-bottom: 0px;
    position: relative;
}

#teamCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00b4d8;
    border: none;
    opacity: 0.5;
    margin: 0 5px;
    transition: all 0.3s;
}

#teamCarousel .carousel-indicators button.active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
}


.thankyouIcon{
  color: var(--primary-color);
  font-size: 60px;
  display: block;
}

/* Contact Form Box Styles - Add to your styles.css */

.contact-form-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

@media (max-width: 576px) {
    .contact-form-box {
        padding: 30px 20px;
    }
}

.contact-form-box h3 {
    font-size: 1.75rem;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-form-box .form-label {
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form-box .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s;
}

.contact-form-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.15);
}

.contact-form-box .form-control::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.contact-form-box textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-box .text-danger {
    color: #dc3545 !important;
}

.contact-form-box .invalid-feedback {
    font-size: 0.875rem;
}

/* Make contact detail box match form height */
.contact-detail-box.h-100 {
    display: flex;
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-form-box {
        margin-top: 30px;
    }
}

/* Updated map-form-section for proper spacing */
.map-form-section {
    background: var(--light-bg);
}

.mt-n10{
    margin-top: -10px;
}

.tm-widget{
  margin-top: -55px !important;
}

.tm-overall-cta, .go2048136271{
  display: none !important;
}

.tb_rv_banner_btn_wrap{
  display: none;
}

/* ===================================
   Modern & Efficient Billing Section
   =================================== */

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

/* Billing Content */
.billing-content {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .billing-content {
        padding: 30px 20px;
    }
}

.billing-item {
    margin-bottom: 30px;
}

.billing-item:last-child {
    margin-bottom: 0;
}

.billing-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.billing-item h4 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.billing-item p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* Insurance Providers Title */
.insurance-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .insurance-title {
        font-size: 1.5rem;
    }
}

/* Insurance Grid Layout */
.insurance-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insurance-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: center;
}

.insurance-row-centered {
    grid-template-columns: repeat(4, 1fr);
    max-width: 85%;
    margin: 0 auto;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .insurance-row {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .insurance-row-centered {
        grid-template-columns: repeat(4, 1fr);
        max-width: 75%;
    }
}

@media (max-width: 992px) {
    .insurance-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .insurance-row-centered {
        grid-template-columns: repeat(4, 1fr);
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .insurance-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .insurance-row-centered {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .insurance-row,
    .insurance-row-centered {
        grid-template-columns: 2fr;
        max-width: 100%;
    }
}

/* Insurance Card */
.insurance-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
}

@media (max-width: 768px) {
    .insurance-card {
        padding: 20px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .insurance-card {
        padding: 20px;
        max-width: 100%;
    }
}

/* Animated gradient border effect on hover */
.insurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.insurance-card:hover::before {
    opacity: 1;
}

.insurance-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.25);
}

/* Logo container */
.insurance-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .insurance-logo {
        height: 70px;
    }
}

.insurance-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s;
}

.insurance-card:hover .insurance-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Staggered animation on page load */
.insurance-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.insurance-row:nth-child(1) .insurance-card:nth-child(1) { animation-delay: 0.1s; }
.insurance-row:nth-child(1) .insurance-card:nth-child(2) { animation-delay: 0.2s; }
.insurance-row:nth-child(1) .insurance-card:nth-child(3) { animation-delay: 0.3s; }
.insurance-row:nth-child(1) .insurance-card:nth-child(4) { animation-delay: 0.4s; }
.insurance-row:nth-child(1) .insurance-card:nth-child(5) { animation-delay: 0.5s; }

.insurance-row:nth-child(2) .insurance-card:nth-child(1) { animation-delay: 0.6s; }
.insurance-row:nth-child(2) .insurance-card:nth-child(2) { animation-delay: 0.7s; }
.insurance-row:nth-child(2) .insurance-card:nth-child(3) { animation-delay: 0.8s; }
.insurance-row:nth-child(2) .insurance-card:nth-child(4) { animation-delay: 0.9s; }

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

/* Insurance Note */
.insurance-note {
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .insurance-note {
        padding: 15px 20px;
        display: block;
        text-align: left;
    }
}

.insurance-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .insurance-note i {
        display: block;
        margin-bottom: 10px;
    }
}

.insurance-note span {
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
}

/* ===================================
   Clinic Policies Page Styles
   =================================== */

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

.policy-intro {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.policy-intro .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Policy Card */
.policy-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 30px 20px;
    }
}

.policy-card:hover {
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
    transform: translateY(-5px);
}

/* Policy Header */
.policy-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--light-bg);
}

@media (max-width: 576px) {
    .policy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .policy-icon {
        width: 60px;
        height: 60px;
    }
}

.policy-icon i {
    font-size: 2rem;
    color: var(--white);
}

.policy-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 700;
    flex: 1;
}

@media (max-width: 768px) {
    .policy-header h2 {
        font-size: 1.5rem;
    }
}

/* Policy Subtitle */
.policy-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.85;
}

/* Policy Content */
.policy-content {
    margin-top: 20px;
}

.policy-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e0e0e0;
}

.policy-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 576px) {
    .policy-item h4 {
        font-size: 1.15rem;
    }
}

.policy-item h4 i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.policy-item p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-item ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.policy-item ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-color);
    line-height: 1.7;
}

.policy-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-item strong {
    color: var(--dark-color);
    font-weight: 700;
}

/* Policy Footer */
.policy-footer .alert {
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.policy-footer .alert h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-footer .alert h5 i {
    color: var(--primary-color);
}

.policy-footer .alert p {
    color: var(--text-color);
    line-height: 1.7;
}

.policy-footer .alert a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.policy-footer .alert a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}


/* ===================================
   Team Swiper Slider Styles
   Add this to your main styles.css
   =================================== */

/* Team Slider Wrapper */
.team-slider-wrapper {
    position: relative;
    padding: 0 60px 60px;
}

@media (max-width: 768px) {
    .team-slider-wrapper {
        padding: 0 50px 50px;
    }
}

@media (max-width: 576px) {
    .team-slider-wrapper {
        padding: 0 40px 40px;
    }
}

/* Swiper Container */
.teamSwiper {
    width: 100%;
    padding-bottom: 50px !important;
}

/* Swiper Slide */
.teamSwiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Team Card Updates for Swiper */
.teamSwiper .team-card {
    width: 100%;
    height: 100%;
}

/* Navigation Buttons */
.teamSwiper .swiper-button-next,
.teamSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

.teamSwiper .swiper-button-next::after,
.teamSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.teamSwiper .swiper-button-next {
    right: 0;
}

.teamSwiper .swiper-button-prev {
    left: 0;
}

@media (max-width: 768px) {
    .teamSwiper .swiper-button-next,
    .teamSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .teamSwiper .swiper-button-next::after,
    .teamSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

.teamSwiper .swiper-button-next:hover,
.teamSwiper .swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.5);
}

/* Pagination Bullets */
.teamSwiper .swiper-pagination {
    bottom: 0 !important;
}

.teamSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s;
}

.teamSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Dynamic Bullets */
.teamSwiper .swiper-pagination-bullet-active-main {
    transform: scale(1.2);
}

/* Smooth Card Transitions */
.teamSwiper .swiper-slide {
    transition: transform 0.3s, opacity 0.3s;
}

.teamSwiper .swiper-slide-active .team-card,
.teamSwiper .swiper-slide-next .team-card,
.teamSwiper .swiper-slide-prev .team-card {
    opacity: 1;
}

/* Center Mode Effect */
.teamSwiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(.swiper-slide-prev) .team-card {
    opacity: 0.7;
    transform: scale(0.95);
}

/* Loading State */
.teamSwiper.swiper-initialized .team-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

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

/* Grab Cursor */
.teamSwiper {
    cursor: grab;
}

.teamSwiper:active {
    cursor: grabbing;
}

/* Responsive adjustments for team cards in slider */
@media (max-width: 991px) {
    .team-slider-wrapper {
        padding: 0 45px 50px;
    }
}

@media (max-width: 640px) {
    .team-slider-wrapper {
        padding: 0 35px 45px;
    }
}

/* ===================================
   NAVBAR FIXES FOR TABLET/iPAD PRO
   Add these to your styles.css
   =================================== */

/* Fix for iPad Pro and Tablet Navigation */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Reduce spacing between nav items on iPad Pro */
    .navbar-nav .nav-link {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.95rem;
    }
    
    /* Reduce dropdown padding */
    .navbar-nav .dropdown-menu {
        font-size: 0.9rem;
    }
    
    /* Make Book Appointment button smaller */
    .btn-appointment {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }
}

/* Specific fix for iPad Pro 1024x1366 */
@media (min-width: 1024px) and (max-width: 1024px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.9rem;
    }
    
    .btn-appointment {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
    }
}

/* Alternative: Force hamburger menu on iPad Pro if needed */
/* Uncomment this section if you want hamburger menu on iPad instead */
/*
@media (max-width: 1100px) {
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-toggler {
        display: block !important;
    }
}
*/

/* Top Header Adjustments for Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
    .top-header {
        font-size: 0.85rem;
    }
    
    .top-header a,
    .top-header span {
        font-size: 0.85rem;
    }
    
    .top-header .gap-3 {
        gap: 1rem !important;
    }
}

/* Logo Size Adjustment for Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-brand img {
        max-height: 50px;
        width: auto;
    }
}

/* Ensure nav items don't wrap */
@media (min-width: 992px) {
    .navbar-nav {
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .navbar-nav .nav-item {
        white-space: nowrap;
    }
}

/* Compact navbar for medium screens (iPad Pro) */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Reduce container padding */
    .main-nav .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Tighter nav spacing */
    .navbar-nav {
        gap: 0.3rem;
    }
    
    /* Smaller dropdowns */
    .navbar-nav .dropdown-menu {
        min-width: 180px;
    }
}

/* Emergency fix - Force hamburger on specific breakpoint */
/* Use this if layout still breaks - uncomment below */
/*
@media (max-width: 1150px) {
    .navbar-expand-lg {
        flex-direction: column;
    }
    
    .navbar-expand-lg .navbar-collapse {
        width: 100%;
    }
    
    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        width: 100%;
    }
    
    .navbar-expand-lg .nav-link {
        padding: 0.8rem 1rem !important;
        width: 100%;
    }
    
    .navbar-expand-lg .btn-appointment {
        margin-top: 1rem;
        width: 100%;
    }
}
*/
