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

:root {
    --primary-color: #f17732;
    --primary-dark: #d35f1e;
    --secondary-color: #1a365d;
    --accent-color: #2d8bba;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #f17732 0%, #ff9a5a 100%);
    --gradient-secondary: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    --gradient-hero: linear-gradient(135deg, #1a365d 0%, #2d4a7c 50%, #f17732 100%);
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
}

.top-header {
    background: var(--secondary-color);
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
}

.top-header .top-contact span {
    color: rgba(255,255,255,0.9);
}

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

.top-header .emi-badge {
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    margin-right: 15px;
}

.top-header .top-social a {
    color: rgba(255,255,255,0.8);
    margin-left: 12px;
    transition: all 0.3s ease;
}

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

.main-navbar {
    top: 36px !important;
    padding: 12px 0;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(10px);
}

.main-navbar.scrolled {
    top: 0 !important;
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.logo-img {
    height: 70px;
    width: auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nabh-logo {
    height: 50px;
    width: auto;
}

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

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

.nav-link:hover::after {
    width: 70%;
}

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

.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(241, 119, 50, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
       /*font-size: 35px;*/
    
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.sticky-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 12px;
    text-decoration: none;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: 85px;
}

.sidebar-btn i {
    font-size: 20px;
    margin-bottom: 5px;
}

.sidebar-btn span {
    line-height: 1.2;
}

.sidebar-btn.lasik-test {
    background: var(--primary-color);
    border-radius: 10px 0 0 0;
}

.sidebar-btn.call-now {
    background: var(--secondary-color);
}

.sidebar-btn.book-appointment {
    background: var(--success-color);
    border-radius: 0 0 0 10px;
}

.sidebar-btn:hover {
    transform: translateX(-5px);
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    color: white;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #fef3e6 100%);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(241, 119, 50, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(241, 119, 50, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(241, 119, 50, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 8px 30px rgba(241, 119, 50, 0.5); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-title .highlight-number {
    display: inline-block;
    position: relative;
    color: var(--primary-color);
    font-size: 4rem;
    font-weight: 900;
}

.hero-title .highlight-number::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(241, 119, 50, 0.2);
    z-index: -1;
    border-radius: 5px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item i {
    color: var(--success-color);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 5px;
}

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

.video-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: var(--secondary-color);
    aspect-ratio: 16/10;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 54, 93, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    animation: bounce 2s infinite;
}

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

.video-stats {
    display: flex;
    gap: 30px;
}

.video-stat {
    text-align: center;
    color: white;
}

.video-stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.video-stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.card-1 {
    top: 5%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    top: 40%;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 119, 50, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-image-container {
    position: relative;
}

.about-main-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-main-image img {
    width: 100%;
    height: auto;
}

.about-badge-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(241, 119, 50, 0.3);
}

.about-badge-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-badge-text {
    font-size: 14px;
    font-weight: 600;
}

.about-content {
    padding-left: 40px;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateX(10px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.about-feature-text h5 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.about-feature-text p {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}

.procedures-section {
    padding: 100px 0;
    background: var(--light-color);
}

.procedure-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.procedure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.procedure-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.procedure-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(180deg, rgba(241, 119, 50, 0.05) 0%, white 100%);
}

.procedure-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 45px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
}

.procedure-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

.procedure-icon i {
    font-size: 40px;
    color: white;
}

.procedure-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.procedure-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.procedure-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.procedure-features li:last-child {
    border-bottom: none;
}

.procedure-features li i {
    color: var(--success-color);
    font-size: 16px;
}

.doctors-section {
    padding: 100px 0;
    background: #ffffff;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.doctor-image {
    height: 280px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.doctor-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 54, 93, 0.9) 100%);
}

.doctor-image i {
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

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

.doctor-info h3 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.doctor-info .designation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.doctor-info .experience {
    color: var(--text-light);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.doctor-info .experience i {
    color: var(--primary-color);
}

.branches-section {
    padding: 100px 0;
    background: var(--light-color);
}

.branch-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

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

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

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

.branch-info {
    padding: 30px;
}

.branch-info h3 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-info h3 i {
    color: var(--primary-color);
}

.branch-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.branch-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
}

.branch-details li i {
    color: var(--primary-color);
    width: 20px;
}

.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.info-videos-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin: 10px;
}

.testimonial-video {
    height: 200px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.video-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.video-link:hover {
    transform: scale(1.1);
    color: white;
}

.video-link i {
    font-size: 50px;
    margin-bottom: 10px;
}

.testimonial-stars {
    color: var(--warning-color);
    margin-bottom: 10px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.testimonial-content h5 {
    font-weight: 600;
    color: var(--secondary-color);
}

.emi-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.emi-content {
    text-align: center;
}

.emi-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.emi-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.emi-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.15);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.emi-feature i {
    font-size: 30px;
}

.emi-feature span {
    font-weight: 600;
    font-size: 16px;
}

.contact-section {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 35px;
    color: white;
}

.contact-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.appointment-form-section {
    background: var(--gradient-secondary);
    border-radius: 25px;
    padding: 50px;
    color: white;
}

.appointment-form .form-control,
.appointment-form .form-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 15px;
    border-radius: 12px;
}

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

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 119, 50, 0.3);
    color: white;
}

.appointment-form .form-select option {
    color: var(--text-dark);
}

.footer {
    background: var(--dark-color);
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-badges {
    margin-top: 20px;
}

.badge-img {
    height: 50px;
    margin-right: 15px;
    background: white;
    padding: 5px 8px;
    border-radius: 8px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-color);
}

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

.footer-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-cities a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-cities a:hover {
    background: var(--primary-color);
    color: white;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li i {
    width: 40px;
    height: 40px;
    background: rgba(241, 119, 50, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.footer-contact li div span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: block;
}

.footer-contact li div a,
.footer-contact li div p {
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin: 0;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

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

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.8); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.popup-modal .modal-content {
    border: none;
    border-radius: 25px;
    overflow: hidden;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: white;
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
}

.popup-image-container {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

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

.popup-form-container {
    padding: 30px;
}

.popup-title {
    text-align: center;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.popup-title i {
    color: var(--primary-color);
}

.popup-form .form-control,
.popup-form .form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.popup-form .form-control:focus,
.popup-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 119, 50, 0.1);
}

.popup-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.popup-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 15px;
}

.mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 12px;
    color: white;
}

.mobile-cta-btn.call {
    background: var(--success-color);
}

.mobile-cta-btn.book {
    background: var(--primary-color);
}

.mobile-cta-btn.whatsapp {
    background: #25d366;
}

.mobile-cta-btn i {
    font-size: 18px;
    margin-bottom: 3px;
}

@media (max-width: 992px) {
    .top-header {
        display: none;
    }
    
    .main-navbar {
        top: 0 !important;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .highlight-number {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .sticky-sidebar {
        display: none;
    }
    
    .mobile-cta-bar {
        display: flex;
        justify-content: space-around;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .whatsapp-float {
        bottom: 90px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .video-container {
        margin-top: 40px;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 119, 50, 0.1);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.counter-animation {
    display: inline-block;
    animation: counterPulse 0.3s ease-out;
}

@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); text-shadow: 0 0 30px rgba(241, 119, 50, 0.8); }
    100% { transform: scale(1); }
}

.highlight-number {
    text-shadow: 0 5px 30px rgba(241, 119, 50, 0.4);
    position: relative;
}

.highlight-number.animated-complete {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        text-shadow: 0 5px 30px rgba(241, 119, 50, 0.4);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 5px 50px rgba(241, 119, 50, 0.8);
        transform: scale(1.05);
    }
}

/* Additional Styles for New Pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 50%, #f17732 100%);
    padding: 140px 0 60px;
    color: white;
    text-align: center;
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
    justify-content: center;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: var(--primary-color);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Video Container */
.about-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.about-video {
    width: 100%;
    border-radius: 20px;
}

/* Benefit Cards */
.benefits-section {
    padding: 80px 0;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

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

.benefit-card p {
    color: var(--text-light);
    margin: 0;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #f8fafc;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.comparison-table th.highlight {
    background: var(--primary-color);
}

.comparison-table td.highlight {
    background: rgba(241, 119, 50, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: rgba(241, 119, 50, 0.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
}

.cta-content {
    color: white;
}

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

.cta-content .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SMILE PRO Page Styles */
.smile-hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #fef3e6 100%);
}

.smile-hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.smile-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.smile-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.smile-stat {
    text-align: center;
}

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

.smile-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.smile-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Smile Features */
.smile-features-section {
    padding: 80px 0;
}

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

.smile-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(241, 119, 50, 0.2);
}

.smile-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: white;
}

.smile-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.smile-feature-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Procedure Steps */
.procedure-steps {
    max-width: 800px;
    margin: 0 auto;
}

.procedure-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Eligibility Cards */
.smile-eligibility-section {
    padding: 80px 0;
    background: #f8fafc;
}

.eligibility-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.eligibility-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.eligibility-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-card ul li:last-child {
    border-bottom: none;
}

/* FAQ Accordion */
.smile-faq-section,
.emi-faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.accordion-button {
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

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

.accordion-body {
    padding: 20px 25px;
    color: var(--text-light);
}

/* Procedure Detail Sections */
.procedure-detail-section {
    padding: 80px 0;
}

.procedure-detail-section.featured-procedure {
    background: linear-gradient(135deg, #fef3e6 0%, #ffffff 100%);
}

.procedure-badge-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.procedure-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.procedure-title i {
    margin-right: 10px;
}

.procedure-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.highlight-item {
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.procedure-range {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.procedure-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.procedure-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.procedure-image-box img {
    width: 100%;
    height: auto;
}

/* Doctor Detail Cards */
.doctors-intro-section {
    padding: 80px 0;
    background: #f8fafc;
}

.doctor-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.doctor-stat {
    text-align: center;
}

.doctor-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.doctor-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.doctors-list-section {
    padding: 80px 0;
}

.doctor-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.doctor-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.doctor-detail-image {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-detail-image i {
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

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

.doctor-detail-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.doctor-designation {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-specialization {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.doctor-experience {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Expertise Cards */
.expertise-section {
    padding: 80px 0;
    background: #f8fafc;
}

.expertise-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-10px);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: white;
}

.expertise-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.expertise-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Branch Detail Cards */
.branches-intro-section {
    padding: 80px 0;
}

.branch-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.branch-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

.branch-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.branch-detail-info {
    padding: 30px;
}

.branch-detail-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.branch-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.branch-detail-list li {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.branch-detail-list li:last-child {
    border-bottom: none;
}

.branch-detail-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
}

.branch-detail-list li strong {
    display: block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.branch-detail-list li p,
.branch-detail-list li a {
    margin: 0;
    color: var(--text-light);
    text-decoration: none;
}

.branch-detail-list li a:hover {
    color: var(--primary-color);
}

.branch-detail-buttons {
    display: flex;
    gap: 10px;
}

.branch-detail-buttons .btn-primary-custom,
.branch-detail-buttons .btn-secondary-custom {
    flex: 1;
    justify-content: center;
}

/* Facility Cards */
.facilities-section {
    padding: 80px 0;
    background: #f8fafc;
}

.facility-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-10px);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: white;
}

.facility-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.facility-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Why Us Cards */
.why-us-section {
    padding: 80px 0;
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: white;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* EMI Page Styles */
.emi-header {
    background: linear-gradient(135deg, #f17732 0%, #ff9a5a 50%, #1a365d 100%);
}

.emi-intro-section {
    padding: 80px 0;
}

.emi-highlights {
    margin-top: 30px;
}

.emi-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 15px;
}

.emi-highlight i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.emi-highlight h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.emi-highlight p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.emi-calculator-card {
    background: var(--gradient-secondary);
    border-radius: 20px;
    padding: 30px;
    color: white;
}

.emi-calculator-card h3 {
    margin-bottom: 20px;
}

.emi-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.emi-benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
}

.emi-benefits-list li:last-child {
    border-bottom: none;
}

.emi-benefits-list li i {
    margin-right: 10px;
}

/* EMI Plans */
.emi-plans-section {
    padding: 80px 0;
    background: #f8fafc;
}

.emi-plan-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.emi-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.emi-plan-card.featured {
    border: 3px solid var(--primary-color);
}

.emi-plan-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    font-size: 0.85rem;
}

.emi-plan-header {
    background: var(--gradient-secondary);
    padding: 30px;
    text-align: center;
    color: white;
}

.emi-plan-card.featured .emi-plan-header {
    background: var(--gradient-primary);
}

.emi-plan-header h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.emi-plan-header p {
    margin: 0;
    opacity: 0.8;
}

.emi-plan-body {
    padding: 30px;
}

.emi-plan-body .emi-feature {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.emi-plan-body .emi-feature:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.emi-plan-body .emi-feature i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Banks Section */
.banks-section {
    padding: 80px 0;
}

.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.bank-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.bank-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-card-link {
    text-decoration: none;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.contact-info-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-info-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-info-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

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

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.branches-contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.branches-contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.branch-contact-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 15px;
}

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

.branch-contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.branch-contact-item p {
    margin: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.branch-contact-item p i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.branch-contact-item p a {
    color: var(--text-light);
    text-decoration: none;
}

.branch-contact-item p a:hover {
    color: var(--primary-color);
}

.branch-contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-sm-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-sm-primary:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-sm-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

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

/* Social Contact Card */
.social-contact-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.social-contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    color: white;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.linkedin {
    background: #0077b5;
}

/* Instagram Reels Grid */
.instagram-reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.instagram-reel-embed {
    min-height: 400px;
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
}

.instagram-reel-embed blockquote {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

.instagram-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-placeholder a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.instagram-placeholder i {
    font-size: 50px;
}

.instagram-placeholder span {
    font-weight: 600;
}

/* Tech Features List */
.tech-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tech-features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tech-features-list li:last-child {
    border-bottom: none;
}

.tech-features-list li i {
    margin-top: 3px;
}

/* Visumax Section */
.visumax-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Welcome Popup - Horizontal Layout */
.welcome-popup-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.welcome-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    background: white !important;
    border-radius: 50%;
    padding: 10px !important;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 36px;
    height: 36px;
}

.welcome-popup-close:hover {
    background: var(--primary-color) !important;
}

.welcome-popup-row {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0;
    padding: 0;
}

.welcome-popup-image {
    width: 50%;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    min-height: 450px;
}

.welcome-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.welcome-popup-form-container {
    width: 50%;
    padding: 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    background: white;
}

.welcome-popup-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.welcome-popup-title i {
    color: var(--primary-color);
}

.welcome-popup-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.welcome-popup-form .form-control,
.welcome-popup-form .form-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    font-size: 0.85rem;
}

.welcome-popup-form .form-control:focus,
.welcome-popup-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 119, 50, 0.1);
}

.welcome-popup-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 8px;
}

.welcome-popup-features span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.welcome-popup-features span i {
    margin-right: 4px;
}

.welcome-popup-call {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.welcome-popup-call a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Page Banner Styles */
.page-banner {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: -60px;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(45, 74, 124, 0.7) 50%, rgba(241, 119, 50, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.page-header-with-banner {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Smile Pro Content Sections */
.smile-pro-why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-smile-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.why-smile-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(241, 119, 50, 0.15);
}

.why-smile-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.why-smile-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.why-smile-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Technology Section */
.smile-tech-section {
    padding: 80px 0;
    background: white;
}

.tech-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.tech-image-container img {
    width: 100%;
    height: auto;
}

.tech-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.tech-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.tech-list li strong {
    color: var(--secondary-color);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 15px;
    padding: 15px 0;
}

.dropdown-item {
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(241, 119, 50, 0.1);
    color: var(--primary-color);
}

.dropdown-item i {
    margin-right: 8px;
}

/* Nav Link Active State */
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    width: 70%;
}

/* EMI Section Updates */
.smile-emi-section {
    background: var(--gradient-primary);
}

.smile-emi-section .emi-content {
    color: white;
}

.smile-emi-section .emi-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.smile-emi-section .emi-feature {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.smile-emi-section .emi-feature i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-title {
        font-size: 2rem;
    }
    
    .smile-hero-title {
        font-size: 3rem;
    }
    
    .smile-hero-stats {
        justify-content: center;
    }
    
    .smile-hero-buttons {
        justify-content: center;
    }
    
    .doctor-stats {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .procedure-title {
        font-size: 2rem;
    }
    
    .instagram-reels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .welcome-popup-row {
        flex-direction: column;
    }
    
    .welcome-popup-image {
        width: 100%;
        max-height: 200px;
    }
    
    .welcome-popup-form-container {
        width: 100%;
        padding: 20px;
    }
    
    .page-banner {
        height: 300px;
        margin-bottom: -40px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-banner {
        height: 250px;
        margin-bottom: -30px;
    }
    
    .page-banner-overlay {
        padding: 15px;
    }
    
    .welcome-popup-image {
        max-height: 180px;
    }
    
    .welcome-popup-features {
        gap: 8px;
    }
    
    .welcome-popup-features span {
        font-size: 0.7rem;
    }
    
    #welcomePopup .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    #welcomePopup .modal-body {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .welcome-popup-form-container {
        padding: 15px;
    }
    
    .welcome-popup-title {
        font-size: 1.2rem;
    }
    
    .welcome-popup-subtitle {
        font-size: 0.8rem;
    }
    
    .welcome-popup-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        padding: 8px !important;
    }
    
    .smile-hero-section {
        padding: 130px 0 60px;
    }
    
    .smile-hero-title {
        font-size: 2.5rem;
    }
    
    .smile-hero-stats {
        gap: 20px;
    }
    
    .smile-stat-number {
        font-size: 2rem;
    }
    
    .procedure-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .contact-form-card {
        padding: 25px;
    }
    
    .emi-highlights .emi-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .emi-highlight i {
        margin: 0 auto;
    }
    
    .welcome-features {
        flex-direction: column;
        align-items: center;
    }
}

/* ================================
   CITY PAGES STYLES
   ================================ */

.city-hero-banner {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 50%, #f17732 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-hero-overlay {
    text-align: center;
    padding: 120px 20px 60px;
    width: 100%;
}

.city-hero-overlay .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero-badges .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
}

.hero-cta {
    margin-top: 20px;
}

/* Special Offer Section */
.special-offer-section {
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
}

.special-offer-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(241, 119, 50, 0.15);
    border: 2px solid var(--primary-color);
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.offer-subtitle {
    color: var(--text-light);
}

.offer-validity {
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
}

.offer-validity span {
    display: block;
    font-size: 0.85rem;
}

.offer-validity strong {
    font-size: 1.1rem;
}

.price-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.price-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.price-row .label {
    color: var(--text-light);
}

.price-row .old-price {
    text-decoration: line-through;
    color: #999;
}

.price-row.special {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    margin: 10px -25px -25px;
    padding: 15px 25px;
    border-radius: 0 0 15px 15px;
}

.price-row.special .label {
    color: rgba(255,255,255,0.9);
}

.price-row.special .new-price {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

.price-row.special .new-price small {
    font-size: 0.7rem;
    font-weight: 400;
}

/* City Content Article */
.city-content {
    font-size: 1rem;
    line-height: 1.8;
}

.city-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.city-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.city-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.city-content ul, .city-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.city-content li {
    margin-bottom: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 10px;
}

.feature-list li strong {
    color: var(--primary-color);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.benefit-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.benefit-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
    border: none;
    padding: 0;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Branch Card */
.branch-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.branch-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

/* Tables */
.eligibility-table, .comparison-table {
    margin: 20px 0;
    font-size: 0.95rem;
}

.eligibility-table th, .comparison-table th {
    background: var(--secondary-color);
    color: white;
    padding: 12px;
}

.eligibility-table td, .comparison-table td {
    padding: 12px;
    vertical-align: middle;
}

.comparison-table td.text-success {
    background: #d1fae5;
    font-weight: 600;
}

/* Preparation List */
.preparation-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

/* Pricing Info */
.pricing-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.price-highlight {
    background: linear-gradient(135deg, #f17732 0%, #ff9a5a 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.price-highlight h4 {
    color: white;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.price-highlight .old-price {
    text-decoration: line-through;
    opacity: 0.8;
}

.price-highlight .new-price {
    font-size: 1.3rem;
    margin: 10px 0;
}

.price-highlight .savings {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* Patient Testimonial */
.patient-testimonial {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    position: relative;
}

.patient-testimonial::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.patient-testimonial p {
    color: white;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.patient-testimonial cite {
    color: rgba(255,255,255,0.8);
    font-style: normal;
}

/* Doctors List */
.doctors-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.doctor-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.doctor-card h4 {
    font-size: 1rem;
    margin: 10px 0 5px;
    border: none;
    padding: 0;
}

.doctor-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.reason {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.reason i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reason h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

.reason p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Post Surgery Benefits */
.post-surgery-benefits li {
    padding: 10px 15px;
    background: #f8fafc;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 3px solid var(--success-color);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f17732 0%, #ff9a5a 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
}

.cta-box h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.cta-box .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sticky Sidebar Form */
.sticky-sidebar-form {
    position: sticky;
    top: 120px;
}

.quick-contact-card {
    background: var(--secondary-color);
    color: white;
    padding: 25px;
    border-radius: 15px;
}

.quick-contact-card h4 {
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    color: white;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.contact-link.whatsapp {
    background: #25d366;
}

.contact-link i {
    margin-right: 10px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.badge-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 100px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.badge-item img {
    height: 40px;
    margin-bottom: 5px;
}

.badge-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.badge-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 991px) {
    .benefits-grid,
    .pricing-info,
    .doctors-list,
    .why-choose-us {
        grid-template-columns: 1fr;
    }
    
    .sticky-sidebar-form {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .city-hero-overlay .page-title {
        font-size: 1.8rem;
    }
    
    .hero-badges .badge {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .special-offer-card {
        padding: 20px;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .offer-validity {
        margin-top: 15px;
    }
    
    .city-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-box {
        padding: 25px;
    }
    
    .cta-box h4 {
        font-size: 1.2rem;
    }
}
