/**
 * @project: Advanced Retina Care
 * @author: MA software | https://masoftware.in
 * @version: 4.0.0 - Light Theme, Fully Responsive
 */

:root {
    --primary: #0369a1;
    --primary-dark: #075985;
    --primary-light: #e0f2fe;
    --accent: #0ea5e9;
    --gold: #f59e0b;
    --white: #ffffff;
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --text: #334155;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(3, 105, 161, 0.08);
    --shadow-lg: 0 12px 40px rgba(3, 105, 161, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-pad {
    padding: clamp(60px, 8vw, 110px) 0;
}

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

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

/* UTILITIES */
.badge {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 0.75rem;
}

.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(3, 105, 161, 0.25);
}

.btn-accent {
    background: var(--gold);
    color: var(--white);
}

.btn-accent:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

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

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

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

.btn-sm {
    padding: 0.6rem 1.3rem;
    font-size: 0.875rem;
}

/* TOP BAR */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.6rem 0;
    font-size: 0.82rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar a {
    color: inherit;
    transition: 0.2s;
}

.top-bar a:hover {
    color: #7dd3fc;
}

.top-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.top-social {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 0.2rem;
    padding-left: 0.8rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    transition: 0.2s;
}

.top-social:hover {
    color: #7dd3fc;
    transform: scale(1.1);
}

.top-info i,
.top-bar i {
    margin-right: 0.4rem;
}

/* HEADER */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    gap: 1rem;
}

.logo img {
    height: 52px;
    transition: 0.3s;
}

.main-header.scrolled .logo img {
    height: 44px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: 0.2s;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* MOBILE MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.4rem;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(-10px);
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a {
    padding: 1rem 5%;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg);
}

.mobile-nav a {
    padding: 0.75rem clamp(1rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.mobile-nav .btn {
    margin: 1rem clamp(1rem, 4vw, 2rem);
    width: calc(100% - clamp(2rem, 8vw, 4rem));
    justify-content: center;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-text .badge {
    margin-bottom: 1.25rem;
}

.hero-text h1 {
    margin-bottom: 1.25rem;
}

.hero-text h1 span {
    color: var(--primary);
    display: block;
}

.hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.hero-stat span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-badge i {
    font-size: 2rem;
    color: var(--gold);
}

.hero-badge strong {
    display: block;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
}

.hero-badge span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* TRUST BAR */
.trust-bar {
    background: var(--primary);
    padding: 1.5rem 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.4rem;
    color: #7dd3fc;
}

/* DOCTOR SECTION */
.doctor-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.doctor-img-wrap {
    position: relative;
    padding-bottom: 30px;
}

.doctor-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.exp-tag {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow);
}

.exp-tag strong {
    display: block;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
}

.exp-tag span {
    font-size: 0.75rem;
    opacity: 0.85;
}

.doctor-info .badge {
    margin-bottom: 0.75rem;
}

.doctor-info h2 {
    margin-bottom: 0.5rem;
}

.doctor-info h2 span {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
}

.doctor-info>p {
    color: var(--text-light);
    margin: 1rem 0 1.5rem;
}

.creds {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cred-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
}

.book-box {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--primary);
}

.book-box h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.book-box p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* WHY CHOOSE */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

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

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    height: 180px;
    overflow: hidden;
}

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

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

.service-card-body {
    padding: 1.5rem;
}

.service-card-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.service-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.learn-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: 0.2s;
}

.learn-more:hover {
    gap: 0.7rem;
}

/* TESTIMONIALS */
.dark-section {
    background: var(--primary-dark);
}

.dark-section h2,
.dark-section h3 {
    color: var(--white);
}

.dark-section p {
    color: rgba(255, 255, 255, 0.75);
}

.video-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrap video {
    width: 100%;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.test-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.test-card:hover {
    background: rgba(255, 255, 255, 0.13);
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.test-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.test-card strong {
    color: var(--white);
    font-size: 0.9rem;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-info .badge {
    margin-bottom: 0.75rem;
}

.contact-info h2 {
    margin-bottom: 0.75rem;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.info-item-text h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.info-item-text p,
.info-item-text a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.info-item-text a:hover {
    color: var(--primary);
}

.hours-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

.hours-card h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.hours-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-light);
}

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

.hours-card li span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    display: block;
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: clamp(60px, 8vw, 100px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ABOUT PAGE */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

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

.stat-box .val {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.stat-box .desc {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.ach-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.ach-item i {
    color: var(--primary);
}

/* SERVICES PAGE */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.sdc-img {
    height: 200px;
    overflow: hidden;
}

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

.service-detail-card:hover .sdc-img img {
    transform: scale(1.04);
}

.sdc-body {
    padding: 1.75rem;
}

.sdc-body h3 {
    margin-bottom: 0.6rem;
}

.sdc-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.extra-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.tag-pill {
    padding: 0.5rem 1.25rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* FAQ */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: 0.2s;
    gap: 1rem;
}

.faq-q:hover {
    background: var(--bg);
}

.faq-item.active .faq-q {
    color: var(--primary);
}

.faq-q i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-q i {
    transform: rotate(45deg);
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-ans {
    max-height: 300px;
}

.faq-ans p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* TESTIMONIALS PAGE */
.test-written-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.test-written-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.test-written-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.test-written-card .stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.test-written-card p {
    font-size: 0.93rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-style: italic;
}

.test-written-card strong {
    font-size: 0.875rem;
    color: var(--primary);
}

/* FOOTER */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: clamp(50px, 7vw, 80px) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: clamp(40px, 5vw, 60px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 48px;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.75;
    max-width: 260px;
    margin-bottom: 1.25rem;
}

.footer-brand .f-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-brand .f-contact a,
.footer-brand .f-contact span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    transition: 0.2s;
}

.footer-brand .f-contact a:hover {
    color: #7dd3fc;
}

.footer-brand .f-contact i {
    color: #7dd3fc;
    font-size: 0.85rem;
    width: 14px;
    flex-shrink: 0;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col ul li a::before {
    content: '›';
    color: #7dd3fc;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: #7dd3fc;
    padding-left: 4px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
}

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

.footer-hours li span:last-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.footer-hours li .closed {
    color: var(--gold);
}

.footer-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.75rem;
    font-style: italic;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
    border-top: none;
}

.dev-link {
    color: #7dd3fc;
    font-weight: 600;
}

.dev-link:hover {
    color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .hero-grid,
    .doctor-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
        max-height: 400px;
        overflow: hidden;
    }

    .hero-image img {
        aspect-ratio: 16/9;
    }

    .exp-tag {
        right: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .trust-items {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-item span {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* PREMIUM FLOATING COOKIE CARD */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 360px;
    max-width: calc(100% - 60px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    padding: 2.25rem;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 10000;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.cookie-text h4 {
    font-family: "Outfit", sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #0F172A;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #64748B;
}

.cookie-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

.cookie-btns {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-cookie-main {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-cookie-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-cookie-alt {
    background: #F8FAFC;
    color: #475569;
    border: 1px solid #E2E8F0;
    padding: 0.9rem;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-alt:hover {
    background: #F1F5F9;
}

.btn-cookie-deny {
    background: transparent;
    color: #94A3B8;
    border: none;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

@media (max-width: 500px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
        padding: 1.75rem;
        border-radius: 25px;
    }
}