/* ===================================================
   DentiSalud - Diseño Profesional de Clínica Dental
   ================================================== */

:root {
    --primary-color: #0066cc;
    --secondary-color: #1abc9c;
    --accent-color: #e7ab3c;
    --dark-color: #232323;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-color: #232323;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
}

/* ===================================================
   Base & Typography
   ================================================== */

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    color: black;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.4;
}

p {
    line-height: 1.8;
    color: var(--text-color);
}

/* ===================================================
   WhatsApp Floating Button - Enhanced
   ================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35),
                0 0 0 4px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0da57a 100%);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5),
                0 0 0 4px rgba(255, 255, 255, 0.3);
}

.whatsapp-float i {
    color: #fff;
    font-size: 35px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===================================================
   Hero Slider Styles - Professional Design
   ================================================== */

.hero-slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 600px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 800px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(26, 26, 46, 0.75) 0%,
        rgba(26, 26, 46, 0.5) 40%,
        rgba(44, 62, 80, 0.3) 100%);
    z-index: 1;
    backdrop-filter: blur(1px);
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.slide-subtitle {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 15px;
}

.slide-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #0066cc 0%, #1abc9c 100%);
    border-radius: 2px;
}

.slide-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 500px;
    font-weight: 300;
}

.slide-title + .slide-description {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 20px;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(0, 102, 204, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Indicators (Dots) */
.slider-dots {
    position: absolute;
    bottom: 23px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(135deg, #0066cc 0%, #1abc9c 100%);
    width: 32px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* ===================================================
   Appointment Form - Premium Design
   ================================================== */

.appointment-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 1px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.appointment-form:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2),
                0 0 1px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.appointment-form h3 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.appointment-form::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #1abc9c 100%);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.appointment-form .form-group {
    margin-bottom: 16px;
}

.appointment-form .form-control,
.appointment-form select.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
    color: var(--text-color);
}

.appointment-form .form-control::placeholder {
    color: rgba(44, 62, 80, 0.5);
}

.appointment-form .form-control:focus,
.appointment-form select.form-control:focus {
    border-color: #0066cc;
    background: #fff;
    box-shadow: 0 0 0 0.3rem rgba(0, 102, 204, 0.1),
                inset 0 1px 2px rgba(0, 0, 0, 0.05);
    outline: none;
}

.appointment-form .btn {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.appointment-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.appointment-form .btn:hover::before {
    left: 100%;
}

.appointment-form .btn:hover {
    background: linear-gradient(135deg, #004a99 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
}

.appointment-form .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.25);
}

.appointment-form .btn i {
    margin-right: 8px;
}

/* ===================================================
   Top Bar & Navigation - Professional
   ================================================== */

.top-bar-area {
    background: linear-gradient(90deg, #f8f9fa 0%, #fffbf0 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.top-bar-area .info-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-bar-area .info-box ul li {
    display: inline-block;
    margin-right: 25px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.top-bar-area .info-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.top-bar-area .social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-bar-area .social ul li {
    display: inline-block;
    margin-left: 15px;
}

.top-bar-area .social ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-area .social ul li a:hover {
    color: #0066cc;
}

/* Clase para top-bar con fondo oscuro - No interfiere con breadcrumb */
.top-bar-white .info-box ul li {
    color: #fff !important;
}

.top-bar-white .info-box ul li i {
    color: #fff !important;
}

.top-bar-white .info-box ul li::before {
    background: #fff !important;
}

.top-bar-white .social ul li a {
    color: #fff !important;
}

.top-bar-white .social ul li a:hover {
    color: #fff !important;
    opacity: 0.8;
}

/* Navigation Bar - Bootstrap 5 */
.navbar {
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
    padding: 8px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand img {
    max-height: 50px !important;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Navbar Toggler (Bootstrap 5) */
.navbar-toggler {
    border: 2px solid var(--primary-color) !important;
    border-radius: 6px;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 102, 204, 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='%230066cc' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

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

/* ===================================================
   Top Services Area - Quick Info Cards
   ================================================== */

.top-services-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #fffbf0 100%);
    padding: 60px 0 !important;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 5;
}

.top-services-area .services-items {
    display: grid;
    gap: 30px;
}

.top-services-area .single-item {
    margin-bottom: 0;
}

.top-services-area .item {
    background: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.top-services-area .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0066cc 0%, #1abc9c 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.top-services-area .item:hover::before {
    transform: scaleX(1);
}

.top-services-area .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.top-services-area .icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #1abc9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.top-services-area .item:hover .icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3);
}

.top-services-area .icon i {
    color: #fff;
    font-size: 40px;
    line-height: 1;
}

.top-services-area .info h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 800;
}

.top-services-area .info span {
    color: #0066cc;
    font-weight: 700;
    font-size: 15px;
    display: block;
    letter-spacing: 0.3px;
}

/* ===================================================
   Choose Us Area - Why Choose Section
   ================================================== */

.choose-us-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 !important;
    position: relative;
}

.choose-us-area::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='50' fill='%23eaeaea' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.choose-us-area .info {
    position: relative;
    z-index: 2;
}

.choose-us-area h5 {
    color: #0066cc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.choose-us-area h5::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #0066cc 0%, #1abc9c 100%);
    border-radius: 2px;
}

.choose-us-area h2 {
    font-size: 45px;
    margin-bottom: 40px;
    color: var(--dark-color);
    line-height: 1.3;
}

.choose-us-area .item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.choose-us-area .item::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 100px;
    height: 100px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.choose-us-area .item:hover::before {
    right: -20px;
    top: -20px;
}

.choose-us-area .item:hover {
    transform: translateX(10px);
    border-left-color: #1abc9c;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.12);
}

.choose-us-area .item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.choose-us-area .item p {
    color: black;
    font-size: 14px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.choose-us-area .btn {
    margin-top: 20px;
}

/* ===================================================
   Department/Services Area
   ================================================== */

.department-area {
    padding: 80px 0 !important;
}

.bg-gray {
    background: linear-gradient(135deg, #f8f9fa 0%, #fffbf0 100%) !important;
}

.site-heading {
    margin-bottom: 60px;
}

.site-heading h5 {
    color: #0066cc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-heading h5::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #0066cc 0%, #1abc9c 100%);
    border-radius: 2px;
}

.site-heading h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.site-heading p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;
}

.department-items .single-item {
    margin-bottom: 30px;
}

.department-items .item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.department-items .item:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 50px rgba(0, 102, 204, 0.2);
    border-color: #0066cc;
}

.department-items .thumb {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.department-items .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.department-items .item:hover .thumb img {
    transform: scale(1.1) rotate(2deg);
}

.department-items .info {
    padding: 30px 25px;
    position: relative;
}

.department-items .icon {
    display: inline-block;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0066cc 0%, #1abc9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: -50px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    position: relative;
    z-index: 2;
}

.department-items .icon i {
    color: #fff;
    font-size: 32px;
    line-height: 1;
}

.department-items .info h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.department-items .info p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.department-items .info a {
    color: #0066cc;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.department-items .info a:hover {
    color: #1abc9c;
    transform: translateX(5px);
}

/* ===================================================
   Appointment Area
   ================================================== */

.appoinment-area {
    position: relative;
    padding: 80px 0 !important;
    background-position: center center !important;
    background-size: cover !important;
    overflow: hidden;
}

.appoinment-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.appoinment-area .row {
    position: relative;
    z-index: 2;
}

.appoinment-area .info h5 {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.appoinment-area .info h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
}

.appoinment-area .info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.appoinment-area .appoinment-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.appoinment-area .appoinment-box h3 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 800;
    font-size: 26px;
}

.appoinment-area .appoinment-box::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #1abc9c 100%);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.appoinment-area .form-group {
    margin-bottom: 16px;
}

.appoinment-area .form-control,
.appoinment-area select.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
}

.appoinment-area .form-control:focus,
.appoinment-area select.form-control:focus {
    border-color: #0066cc;
    background: #fff;
    outline: none;
}

.appoinment-area .btn {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-weight: 700;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.appoinment-area .btn:hover {
    background: linear-gradient(135deg, #004a99 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
}
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #1abc9c);
    margin: 0 auto;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-color);
    font-size: 16px;
    margin-top: 15px;
    font-weight: 300;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #1abc9c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 66, 204, 0.15);
    transform: translateY(-8px);
    border-color: #0066cc;
}

.service-card i {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover i {
    color: #1abc9c;
    transform: scale(1.15) rotate(5deg);
}

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

.service-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Doctor/Team Cards */
.doctor-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.doctor-card:hover {
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.2);
    transform: translateY(-8px);
    border-color: #0066cc;
}

.doctor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.doctor-card .info {
    padding: 25px;
}

.doctor-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.doctor-card .specialty {
    color: #0066cc;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* ===================================================
   Testimonial Area & Cards
   ================================================== */
.testimonial-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fbff 50%, #f0faf5 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-area::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-area::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 102, 204, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.12);
    transform: translateY(-6px);
    border-color: rgba(0, 102, 204, 0.15);
}

.testimonial-card .quote-icon {
    margin-bottom: 18px;
}

.testimonial-card .quote-icon i {
    font-size: 28px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-card .stars {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-card .stars i {
    color: #f5c518;
}

.testimonial-card .stars i.empty {
    color: #ddd;
}

.testimonial-card .testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-author .author-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8f4fd;
}

.testimonial-author .avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.testimonial-author .author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.testimonial-author .author-info span {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Owl Carousel Dots for Testimonials */
.testimonial-area .owl-dots {
    text-align: center;
    margin-top: 35px;
}

.testimonial-area .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonial-area .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 28px;
    border-radius: 5px;
}

/* ===================================================
   Responsive - Tablet (≤991px)
   ================================================== */

@media (max-width: 991px) {
    .slider-wrapper {
        height: 480px;
    }

    .slide-title {
        font-size: 42px;
    }

    .slide-subtitle {
        font-size: 12px;
    }

    .slide-description {
        font-size: 16px;
    }

    .appointment-form {
        padding: 30px;
    }

    .appointment-form h3 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .navbar-brand img.logo {
        max-height: 45px !important;
    }

    /* Interior Pages - Tablet */
    .breadcrumb-area h1 {
        font-size: 36px;
    }

    .about-area .about-info {
        padding-left: 20px;
        margin-top: 30px;
    }

    .doctor-area .doctor-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .blog-area .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-area .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-area .form-section {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   Responsive - Mobile (≤767px)
   ================================================== */

@media (max-width: 767px) {
    .slider-wrapper {
        height: 420px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .slide-description {
        font-size: 14px;
        max-width: 100%;
    }

    .slide-content .row {
        flex-direction: column;
    }

    .slide-content .row > [class*="col-"] {
        padding: 20px 15px !important;
    }

    .appointment-form {
        padding: 25px;
        margin-top: 20px;
    }

    .appointment-form h3 {
        font-size: 20px;
    }

    .slider-nav {
        display: none;
    }

    .slider-dots {
        bottom: 18px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 28px;
    }

    .top-bar-area {
        padding: 8px 0;
    }

    .top-bar-area .info-box ul li {
        display: inline-block;
        margin-right: 10px;
        font-size: 11px;
        padding-left: 0;
    }

    .top-bar-area .info-box ul li::before {
        display: none;
    }

    .top-bar-area .social {
        display: none;
    }

    /* Navbar Mobile - Bootstrap 5 */
    .navbar-brand img {
        max-height: 40px !important;
    }

    .navbar-collapse {
        border-top: 1px solid #eee;
        max-height: 350px;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #f5f5f5;
    }

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

    /* Testimonials Mobile */
    .testimonial-area {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 25px 20px 22px;
    }

    .testimonial-card .testimonial-text {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .testimonial-author .author-avatar img,
    .testimonial-author .avatar-placeholder {
        width: 44px;
        height: 44px;
    }

    .testimonial-author .author-info h5 {
        font-size: 14px;
    }

    /* Breadcrumb Mobile */
    .breadcrumb-area {
        padding: 40px 0 !important;
        text-align: center;
    }

    .breadcrumb-area h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .breadcrumb-area .breadcrumb li {
        font-size: 12px;
        margin-right: 14px;
    }

    /* About Mobile */
    .about-area {
        padding: 50px 0;
    }

    .about-area .about-info {
        padding-left: 0;
        margin-top: 25px;
    }

    .about-area .about-info h2 {
        font-size: 28px;
    }

    /* Doctor Mobile */
    .doctor-area .doctor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .doctor-area .doctor-img {
        height: 200px;
    }

    .doctor-area .doctor-info {
        padding: 15px;
    }

    .doctor-area .doctor-info h4 {
        font-size: 15px;
    }

    /* Blog Mobile */
    .blog-area {
        padding: 50px 0;
    }

    .blog-area .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-area .blog-img {
        height: 200px;
    }

    /* Contact Mobile */
    .contact-area {
        padding: 50px 0;
    }

    .contact-area .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-area .contact-info-box {
        padding: 25px 20px;
    }

    .contact-area .form-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form h3 {
        font-size: 22px;
    }

    .sidebar-appointment {
        margin-top: 0;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 28px;
    }

    .section-title::after {
        width: 60px;
    }

    .footer-bottom .text-right {
        text-align: center !important;
        margin-top: 10px;
    }
}

/* ===================================================
   Breadcrumb Area - Professional Header
   ================================================== */

.breadcrumb-area {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%) !important;
    padding: 60px 0 !important;
    position: relative;
    overflow: hidden;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="20" fill="rgba(255,255,255,0.08)"/></svg>');
    opacity: 0.2;
}

.breadcrumb-area h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

.breadcrumb-area .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    z-index: 2;
}

.breadcrumb-area .breadcrumb li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-area .breadcrumb li::after {
    content: '/';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.breadcrumb-area .breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb-area .breadcrumb li a,
.breadcrumb-area .breadcrumb li a:visited {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.breadcrumb-area .breadcrumb li a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.breadcrumb-area .breadcrumb li.active,
.breadcrumb-area .breadcrumb > .active > a {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* ===================================================
   About Area - Professional Styling
   ================================================== */

.about-area {
    padding: 80px 0;
}

.about-area .about-content {
    position: relative;
}

.about-area .about-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
    position: relative;
}

.about-area .about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.about-area .about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0), rgba(26, 188, 156, 0.1));
    border-radius: 12px;
}

.about-area:hover .about-img img {
    transform: scale(1.03);
}

.about-area .about-info {
    padding-left: 40px;
}

.about-area .about-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 800;
}

.about-area .about-info h2::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #1abc9c);
    margin-bottom: 15px;
    border-radius: 2px;
}

.about-area .about-info p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-area .about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.about-area .about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-color);
    font-size: 14px;
}

.about-area .about-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    min-width: 20px;
}

/* ===================================================
   Doctor Area - Professional Grid
   ================================================== */

.doctor-area {
    padding: 80px 0;
}

.doctor-area .doctor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.doctor-area .doctor-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.doctor-area .doctor-item:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    transform: translateY(-8px);
    border-color: #0066cc;
}

.doctor-area .doctor-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.doctor-area .doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-area .doctor-item:hover .doctor-img img {
    transform: scale(1.08);
}

.doctor-area .doctor-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.doctor-area .social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0066cc 0%, #1abc9c 100%);
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.4s ease;
    z-index: 10;
}

.doctor-area .doctor-item:hover .social {
    bottom: 0;
}

.doctor-area .social a {
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 16px;
}

.doctor-area .social a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

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

.doctor-area .doctor-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 700;
}

.doctor-area .doctor-info .specialty {
    color: #0066cc;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.doctor-area .doctor-info p {
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.6;
}

/* ===================================================
   Blog Area - Professional Layout
   ================================================== */

.blog-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fffbf0 100%);
}

.blog-area .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.blog-area .blog-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.blog-area .blog-item:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    transform: translateY(-8px);
    border-color: #0066cc;
}

.blog-area .blog-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-area .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-area .blog-item:hover .blog-img img {
    transform: scale(1.08);
}

.blog-area .date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #0066cc 0%, #1abc9c 100%);
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

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

.blog-area .blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.blog-area .blog-item:hover .blog-content h3 {
    color: #0066cc;
}

.blog-area .blog-meta {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.blog-area .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-area .blog-meta i {
    color: #0066cc;
}

.blog-area .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.blog-area .tag {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-area .tag:hover {
    background: #0066cc;
    color: #fff;
}

.blog-area .blog-content p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-area .blog-content a {
    color: #0066cc;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-area .blog-content a:hover {
    color: #1abc9c;
}

/* ===================================================
   Contact Area - Professional Styling
   ================================================== */

.contact-area {
    padding: 80px 0;
}

.contact-area .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-area .contact-info-box {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFBF0 100%);
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.contact-area .contact-info-box:hover {
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
    border-color: #0066cc;
}

.contact-area .contact-info-box i {
    font-size: 40px;
    color: #0066cc;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0066cc 0%, #1abc9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-area .contact-info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-area .contact-info-box p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
}

.contact-area .form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
}

.contact-form {
    background: rgba(248, 249, 250, 0.8);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-form h3::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #1abc9c);
    margin-bottom: 20px;
    border-radius: 2px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
    background: #fff;
    outline: none;
}

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

.contact-form button {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.contact-form button:hover {
    background: linear-gradient(135deg, #004a99 0%, #003366 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
}

/* Sidebar Appointment Form */
.sidebar-appointment {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    padding: 35px 25px;
    border-radius: 12px;
    color: #fff;
}

.sidebar-appointment h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #fff;
}

.sidebar-appointment h3::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 15px;
    border-radius: 2px;
}

.sidebar-appointment p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sidebar-appointment .form-group {
    margin-bottom: 15px;
}

.sidebar-appointment label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 13px;
}

.sidebar-appointment .form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: all 0.3s ease;
}

.sidebar-appointment .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-appointment .form-control:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    outline: none;
    color: #fff;
}

.sidebar-appointment button {
    background: var(--accent-color);
    color: #232323;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 171, 60, 0.2);
}

.sidebar-appointment button:hover {
    background: #f0b844;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 171, 60, 0.3);
}

/* ===================================================
   Responsive - Small Mobile (≤576px)
   ================================================== */

@media (max-width: 576px) {
    .slider-wrapper {
        height: 500px;
    }

    .slide-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .slide-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding-left: 12px;
    }

    .slide-subtitle::before {
        width: 3px;
        height: 16px;
    }

    .slide-description {
        font-size: 13px;
        margin-bottom: 25px;
        padding-left: 16px;
        border-left-width: 2px;
    }

    .appointment-form {
        padding: 20px;
    }

    .appointment-form h3 {
        font-size: 18px;
    }

    .appointment-form .form-control {
        padding: 12px;
        font-size: 13px;
    }

    .slider-dots {
        gap: 8px;
    }

    .section-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .service-card {
        padding: 25px 18px;
    }

    .top-bar-area .info-box ul li {
        margin-right: 10px;
        font-size: 10px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 15px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    /* Interior Pages - Small Mobile */
    .breadcrumb-area h1 {
        font-size: 22px;
    }

    .breadcrumb-area .breadcrumb li {
        font-size: 11px;
        margin-right: 10px;
    }

    .doctor-area .doctor-grid {
        grid-template-columns: 1fr;
    }

    .doctor-area .doctor-img {
        height: 250px;
    }

    .about-area .about-info h2 {
        font-size: 24px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    .contact-area .contact-info-box {
        padding: 20px 15px;
    }

    .sidebar-appointment {
        padding: 25px 20px;
    }
}

/* ===================================================
   Extra Small Devices (≤480px)
   ================================================== */

@media (max-width: 480px) {
    .slider-wrapper {
        height: 450px;
    }

    .slide-title {
        font-size: 22px;
    }

    .banner-area .info h2 {
        font-size: 18px !important;
    }

    .site-heading h2 {
        font-size: 20px;
    }

    .top-bar-area .info-box ul li {
        display: block;
        margin-bottom: 4px;
        margin-right: 0;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .appointment-form {
        padding: 18px;
    }
}

/* ===================================================
   Animations & Effects
   ================================================== */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===================================================
   Global Button Styles
   ================================================== */

.btn-primary, .btn-success, .btn-info, .btn-secondary {
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #004a99 0%, #003366 100%);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.2);
}

.btn-success:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
    transform: translateY(-2px);
}
