/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7fafc;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   GLOW & ANIMATION UTILITIES
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(10, 147, 150, 0.3); }
    50% { box-shadow: 0 0 40px rgba(10, 147, 150, 0.6), 0 0 60px rgba(0, 95, 115, 0.3); }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.glow-effect {
    animation: pulse-glow 3s ease-in-out infinite;
}

.slide-up {
    animation: slide-up 0.8s ease forwards;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #0A9396;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #0A9396, #005F73);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0b202b;
    margin-bottom: 12px;
}

.section-header h2 span {
    background: linear-gradient(135deg, #005F73, #0A9396);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #3d6172;
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
}

/* ========================================
   TOP BAR - Enhanced
   ======================================== */
.top-bar {
    background: linear-gradient(135deg, #005F73, #0A9396);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.top-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
}

.top-right a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.top-left i {
    margin-right: 8px;
}

/* ========================================
   HEADER - Enhanced
   ======================================== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(10, 147, 150, 0.08);
}

.navbar {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Menu */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #1a3b4a;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0A9396, #005F73);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #005F73;
}

/* Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.appointment-btn {
    background: linear-gradient(135deg, #005F73, #0A9396);
    padding: 12px 28px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: .4s;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(10, 147, 150, 0.25);
    position: relative;
    overflow: hidden;
}

.appointment-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
}

.appointment-btn:hover::before {
    left: 100%;
}

.appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(10, 147, 150, 0.4);
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #005F73;
    transition: 0.3s;
    padding: 5px;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* ========================================
   BUTTONS - Enhanced
   ======================================== */
.btn {
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn.primary {
    background: linear-gradient(135deg, #005F73, #0A9396);
    color: #fff;
    box-shadow: 0 6px 20px rgba(10, 147, 150, 0.3);
}

.btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.6s;
}

.btn.primary:hover::before {
    left: 100%;
}

.btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(10, 147, 150, 0.45);
}

.btn.outline {
    border-color: #0A9396;
    color: #0A9396;
    background: transparent;
    position: relative;
}

.btn.outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #0A9396, #005F73);
    transition: 0.4s;
    z-index: -1;
    border-radius: 60px;
}

.btn.outline:hover {
    color: #fff;
    border-color: transparent;
}

.btn.outline:hover::before {
    width: 100%;
}

.btn.large {
    padding: 18px 44px;
    font-size: 16px;
}

/* ========================================
   HERO SECTION - ENHANCED
   ======================================== */
.hero {
    padding: 80px 0 50px;
    position: relative;
    background: linear-gradient(160deg, #e9f4f7 0%, #ffffff 50%, #f0f7fa 100%);
    overflow: hidden;
    min-height: 85vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 147, 150, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate-slow 30s linear infinite;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 500px;
}

.hero-right {
    flex: 1 1 380px;
    position: relative;
    min-height: 380px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 95, 115, 0.07);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #005F73;
    border: 1px solid rgba(0, 95, 115, 0.1);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: pulse-glow 3s ease-in-out infinite;
}

.badge i {
    font-size: 14px;
}

/* Hero Left */
.hero-left h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #0b202b;
}

.hero-left h1 span {
    background: linear-gradient(135deg, #005F73, #0A9396, #005F73);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

.hero-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #2d4b5a;
    max-width: 540px;
    margin-bottom: 28px;
}

.hero-left p strong {
    color: #005F73;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 20px 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    font-size: 14px;
    font-weight: 500;
    color: #1a3b4a;
    border: 1px solid rgba(0, 95, 115, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 147, 150, 0.12);
    border-color: rgba(10, 147, 150, 0.2);
}

.trust-item i {
    color: #0A9396;
    font-size: 16px;
}

/* Hero Right - Enhanced */
.hero-image {
    background: linear-gradient(145deg, #d4e4ea, #b8d4dd);
    border-radius: 30px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 50, 60, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.05), transparent 50%);
    border-radius: 30px;
}

.doctor-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    z-index: 1;
    transition: 0.5s;
}

.hero-image:hover .doctor-image {
    transform: scale(1.03);
}

/* Doctor Card - Enhanced */
.doctor-card {
    text-align: center;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 25px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 240px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.doctor-card:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 20px 60px rgba(10, 147, 150, 0.2);
}

.doctor-avatar {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #005F73, #0A9396);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 95, 115, 0.25);
}

.doctor-avatar i {
    font-size: 35px;
    color: #fff;
}

.doctor-card h3 {
    font-size: 18px;
    color: #0b202b;
    margin-bottom: 3px;
}

.doctor-card p {
    color: #2d4b5a;
    font-size: 12px;
    margin-bottom: 8px;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, #005F73, #0A9396);
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(10, 147, 150, 0.3);
}

/* Float Badges - Enhanced */
.float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(0, 40, 50, 0.1);
    font-weight: 700;
    color: #0b202b;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.float-badge.top {
    top: -15px;
    right: -15px;
    font-size: 22px;
    animation-delay: 0s;
}

.float-badge.top i {
    font-size: 28px;
}

.float-badge.top small {
    font-size: 13px;
    font-weight: 400;
    color: #2d5a6b;
}

.float-badge.bottom {
    bottom: -15px;
    left: -15px;
    font-size: 15px;
    animation-delay: 2s;
}

.float-badge i {
    color: #0A9396;
}

/* Decorative Blobs - Enhanced */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.blob.b1 {
    width: 400px;
    height: 400px;
    background: #0A9396;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.blob.b2 {
    width: 300px;
    height: 300px;
    background: #005F73;
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

.blob.b3 {
    width: 200px;
    height: 200px;
    background: #0A9396;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
    opacity: 0.05;
}

/* Scroll Hint - Enhanced */
.scroll-hint {
    position: absolute;
    bottom: 25px;
    right: 50px;
    font-size: 12px;
    color: #4d7383;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
}

.scroll-hint:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.scroll-hint i {
    font-size: 22px;
    margin-top: 4px;
    animation: float 2s ease-in-out infinite;
}

/* ========================================
   TRUST STATISTICS - Enhanced
   ======================================== */
.trust-stats {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.trust-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0A9396, transparent);
    opacity: 0.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.stat-item:hover {
    background: rgba(10, 147, 150, 0.04);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #005F73, #0A9396);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    color: #3d6172;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

/* ========================================
   ABOUT SECTION - Enhanced
   ======================================== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    background: linear-gradient(145deg, #d4e4ea, #b8d4dd);
    border-radius: 30px;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 50, 60, 0.08);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.05), transparent 50%);
}

.about-clinic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: 0.5s;
}

.about-image:hover .about-clinic-img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b202b;
    margin-bottom: 16px;
}

.about-content h2 span {
    background: linear-gradient(135deg, #005F73, #0A9396);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: #3d6172;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: 0.3s;
}

.about-feature:hover {
    background: rgba(10, 147, 150, 0.04);
}

.about-feature i {
    color: #0A9396;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 16px;
    color: #0b202b;
}

.about-feature p {
    font-size: 14px;
    color: #3d6172;
    margin-bottom: 0;
}

/* ========================================
   WHY CHOOSE US - Enhanced
   ======================================== */
.why-choose {
    padding: 80px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    transition: 0.4s;
    border: 1px solid rgba(0, 95, 115, 0.04);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.02), rgba(0, 95, 115, 0.02));
    opacity: 0;
    transition: 0.4s;
}

.why-item:hover::before {
    opacity: 1;
}

.why-item:hover {
    border-color: rgba(10, 147, 150, 0.15);
    box-shadow: 0 15px 40px rgba(0, 40, 50, 0.06);
    transform: translateY(-8px);
}

.why-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.08), rgba(0, 95, 115, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: 0.4s;
    border: 1px solid rgba(10, 147, 150, 0.05);
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, #005F73, #0A9396);
    transform: scale(1.1) rotate(5deg);
}

.why-item:hover .why-icon i {
    color: #fff;
}

.why-icon i {
    font-size: 32px;
    color: #0A9396;
    transition: 0.4s;
}

.why-item h4 {
    font-size: 19px;
    color: #0b202b;
    margin-bottom: 8px;
}

.why-item p {
    color: #3d6172;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   TREATMENTS SECTION - Enhanced
   ======================================== */
.treatments-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.treatment-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: 0.4s;
    border: 1px solid rgba(0, 95, 115, 0.04);
    position: relative;
    overflow: hidden;
}

.treatment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #005F73, #0A9396);
    opacity: 0;
    transition: 0.4s;
}

.treatment-card:hover::after {
    opacity: 1;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 40, 50, 0.08);
    border-color: rgba(10, 147, 150, 0.08);
}

.treatment-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.08), rgba(0, 95, 115, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: 0.4s;
}

.treatment-card:hover .treatment-icon {
    background: linear-gradient(135deg, #005F73, #0A9396);
    transform: scale(1.05);
}

.treatment-card:hover .treatment-icon i {
    color: #fff;
}

.treatment-icon i {
    font-size: 30px;
    color: #0A9396;
    transition: 0.4s;
}

.treatment-card h4 {
    font-size: 20px;
    color: #0b202b;
    margin-bottom: 12px;
}

.treatment-card ul {
    list-style: none;
}

.treatment-card ul li {
    padding: 5px 0;
    color: #3d6172;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.treatment-card ul li::before {
    content: "✓";
    color: #0A9396;
    font-weight: 700;
    font-size: 16px;
}

/* ========================================
   TECHNOLOGY SECTION - Enhanced
   ======================================== */
.technology-section {
    padding: 80px 0;
    background: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-item {
    text-align: center;
    padding: 35px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 95, 115, 0.06);
    transition: 0.4s;
    background: #fff;
    position: relative;
}

.tech-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.03), rgba(0, 95, 115, 0.01));
    opacity: 0;
    transition: 0.4s;
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 40, 50, 0.06);
    border-color: rgba(10, 147, 150, 0.12);
}

.tech-item i {
    font-size: 44px;
    color: #0A9396;
    margin-bottom: 14px;
    display: inline-block;
    transition: 0.4s;
}

.tech-item:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.tech-item h4 {
    font-size: 18px;
    color: #0b202b;
    margin-bottom: 6px;
}

.tech-item p {
    color: #3d6172;
    font-size: 14px;
}

/* ========================================
   DOCTOR SECTION - Enhanced
   ======================================== */
.doctor-section2 {
    padding: 80px 0;
    background: linear-gradient(160deg, #e9f4f7 0%, #ffffff 60%, #f5f9fc 100%);
    position: relative;
    overflow: hidden;
}

.doctor-section2::before {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 147, 150, 0.05), transparent 70%);
    border-radius: 50%;
}

.doctor-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.doctor2-image {
    background: linear-gradient(145deg, #d4e4ea, #b8d4dd);
    border-radius: 30px;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 50, 60, 0.08);
    position: relative;
}

.doctor2-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.05), transparent 50%);
}

.doctor-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: 0.5s;
}

.doctor2-image:hover .doctor-profile-img {
    transform: scale(1.05);
}

.doctor-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0b202b;
    margin-bottom: 16px;
}

.doctor-content h2 span {
    background: linear-gradient(135deg, #005F73, #0A9396);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doctor-content p {
    color: #3d6172;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.doctor-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.doctor-highlights div {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 95, 115, 0.04);
    transition: 0.3s;
}

.doctor-highlights div:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 40, 50, 0.06);
}

.doctor-highlights h4 {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(135deg, #005F73, #0A9396);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doctor-highlights p {
    font-size: 14px;
    color: #3d6172;
    margin-bottom: 0;
}

/* ========================================
   JOURNEY SECTION - Enhanced
   ======================================== */
.journey-section {
    padding: 80px 0;
    background: #fff;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.journey-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, #005F73, #0A9396, #005F73);
    opacity: 0.2;
}

.step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    transition: 0.4s;
    border: 1px solid rgba(0, 95, 115, 0.04);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 40, 50, 0.06);
    border-color: rgba(10, 147, 150, 0.08);
}

.step-number {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #005F73, #0A9396);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.08;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.08), rgba(0, 95, 115, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

.step:hover .step-icon {
    background: linear-gradient(135deg, #005F73, #0A9396);
    transform: scale(1.1);
}

.step:hover .step-icon i {
    color: #fff;
}

.step-icon i {
    font-size: 32px;
    color: #0A9396;
    transition: 0.4s;
}

.step h4 {
    font-size: 20px;
    color: #0b202b;
    margin-bottom: 6px;
}

.step p {
    color: #3d6172;
    font-size: 14px;
}

/* ========================================
   GALLERY SECTION - Enhanced
   ======================================== */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: 0.4s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 40, 50, 0.08);
}

.gallery-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f0f4f6;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 2px;
    background: #e8edf0;
    position: relative;
}

.before, .after {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.before img, .after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.gallery-item:hover .before img,
.gallery-item:hover .after img {
    transform: scale(1.08);
}

.before .label, .after .label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    white-space: nowrap;
    z-index: 2;
}

.before .label {
    background: rgba(0, 95, 115, 0.85);
}

.after .label {
    background: rgba(10, 147, 150, 0.85);
}

.before-after::after {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #005F73;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item p {
    padding: 16px;
    font-weight: 600;
    color: #0b202b;
    text-align: center;
    font-size: 15px;
    margin: 0;
    background: #fff;
}

/* ========================================
   TESTIMONIALS - Enhanced
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    background: linear-gradient(160deg, #f8fbfd, #ffffff);
    border-radius: 20px;
    border: 1px solid rgba(0, 95, 115, 0.04);
    transition: 0.4s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 60px;
    color: rgba(10, 147, 150, 0.06);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 40, 50, 0.06);
    border-color: rgba(10, 147, 150, 0.08);
}

.testimonial-stars {
    color: #FFB800;
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #2d4b5a;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 17px;
    color: #0b202b;
}

.testimonial-author span {
    font-size: 13px;
    color: #0A9396;
    font-weight: 500;
}

/* ========================================
   FAQ SECTION - Enhanced
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 95, 115, 0.04);
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: rgba(10, 147, 150, 0.15);
    box-shadow: 0 8px 30px rgba(10, 147, 150, 0.06);
}

.faq-question {
    padding: 20px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(10, 147, 150, 0.02);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0b202b;
    flex: 1;
    margin-right: 15px;
}

.faq-question i {
    color: #0A9396;
    transition: 0.4s;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 26px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 26px 22px;
}

.faq-answer p {
    color: #3d6172;
    font-size: 15px;
    line-height: 1.8;
}

/* ========================================
   APPOINTMENT CTA - Enhanced
   ======================================== */
.appointment-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #005F73, #0A9396, #005F73);
    background-size: 300% 300%;
    text-align: center;
    animation: shimmer 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.appointment-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: rotate-slow 25s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content h2 span {
    color: #fff;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.cta-buttons .btn.primary {
    background: #fff;
    color: #005F73;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.cta-buttons .btn.outline {
    border-color: #fff;
    color: #fff;
}

.cta-buttons .btn.outline:hover {
    background: #fff;
    color: #005F73;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.cta-info i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   FOOTER - Enhanced
   ======================================== */
footer {
    background: #0B1F2A;
    color: #fff;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0A9396, #005F73);
    margin-top: 8px;
}

.footer-column p {
    color: #cfd8dc;
    line-height: 1.8;
    font-size: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #cfd8dc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #0A9396;
    padding-left: 8px;
}

.footer-column p i {
    color: #0A9396;
    margin-right: 12px;
    width: 20px;
    font-size: 16px;
}

.footer-column p a {
    color: #cfd8dc;
    text-decoration: none;
}

.footer-column p a:hover {
    color: #0A9396;
}

/* Social */
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-links a:hover {
    background: linear-gradient(135deg, #005F73, #0A9396);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 147, 150, 0.3);
    border-color: transparent;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #cfd8dc;
    font-size: 14px;
}

.footer-bottom a {
    color: #0A9396;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ========================================
   RESPONSIVE - Enhanced
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        padding: 40px 30px;
        gap: 20px;
        transition: 0.4s;
        z-index: 999;
        overflow-y: auto;
        border-top: 1px solid rgba(0, 95, 115, 0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .top-bar {
        display: none;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-image {
        min-height: 340px;
    }

    .doctor-card {
        right: 20px;
        padding: 20px 22px;
        max-width: 200px;
    }

    .doctor-card h3 {
        font-size: 17px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .doctor-grid2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .doctor2-image {
        min-height: 300px;
    }

    .why-grid,
    .treatments-grid,
    .tech-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-steps::before {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .float-badge.top {
        top: 0;
        right: 0;
        font-size: 16px;
        padding: 8px 16px;
    }

    .float-badge.bottom {
        left: 0;
        bottom: 0;
        font-size: 12px;
        padding: 8px 16px;
    }

    .section-header h2 {
        font-size: 30px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-right {
        min-height: 300px;
        width: 100%;
    }

    .hero-image {
        min-height: 320px;
    }

    .doctor-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: -40px;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
        padding: 20px 25px;
        background: rgba(255, 255, 255, 0.98);
    }

    .doctor-card:hover {
        transform: translateY(-5px);
    }

    .doctor-avatar {
        width: 60px;
        height: 60px;
    }

    .doctor-avatar i {
        font-size: 28px;
    }

    .doctor-card h3 {
        font-size: 18px;
    }

    .doctor-card p {
        font-size: 13px;
    }

    .experience-badge {
        font-size: 12px;
        padding: 4px 16px;
    }

    .float-badge.top,
    .float-badge.bottom {
        display: none;
    }

    .scroll-hint {
        display: none;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .about-content h2,
    .doctor-content h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 38px;
    }

    .section-header h2 {
        font-size: 26px;
    }
}

/* Mobile Portrait */
@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-right {
        min-height: 240px;
    }

    .hero-image {
        min-height: 260px;
        border-radius: 20px;
    }

    .doctor-image {
        border-radius: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .why-grid,
    .treatments-grid,
    .tech-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doctor-highlights {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .doctor-highlights h4 {
        font-size: 26px;
    }

    .cta-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        height: 40px;
    }

    .appointment-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn.large {
        padding: 14px 28px;
        font-size: 14px;
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 2px;
        padding-left: 25px;
    }

    .section-tag::before {
        width: 16px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .about-image,
    .doctor2-image {
        min-height: 220px;
    }

    .about-content h2,
    .doctor-content h2 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-logo {
        width: 130px;
    }

    .treatment-card {
        padding: 25px 20px;
    }

    .treatment-card h4 {
        font-size: 18px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h4 {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .doctor-highlights {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Very Small Devices */
@media (max-width: 400px) {
    .hero-left h1 {
        font-size: 24px;
    }

    .trust-item {
        font-size: 12px;
        padding: 4px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .treatment-card ul li {
        font-size: 13px;
    }
}