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

:root {
    --gold: #c5a358;
    --border: rgba(255, 255, 255, 0.15);
    --font: 'Tajawal', sans-serif;
}

/* ============================================
   DESKTOP STYLES (Default - 1025px and above)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

html {
    font-size: 16px;
}

body {
    background-color: #000;
    color: #fff;
    font-family: var(--font);
    direction: rtl;
    line-height: normal;
    overflow-x: hidden;
}

.content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- Top Bar --- */
.top-bar {
    height: 52px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    background: #000;
    position: relative;
    z-index: 1001;
}

.top-bar .content-wrapper {
    width: 100%;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-whatsapp,
.btn-landline {
    border: 1px solid var(--gold);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    white-space: nowrap;
}

.btn-whatsapp:hover,
.btn-landline:hover {
    background: var(--gold);
    color: #000;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
}

.top-bar-middle {
    flex: 1;
    margin: 0 40px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-container {
    display: inline-flex;
    align-items: center;
    gap: 120px;
    animation: marquee-anim 35s linear infinite;
    font-size: 12px;
}

@keyframes marquee-anim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.gold-badge {
    background: var(--gold);
    color: #000;
    padding: 2px 6px;
    font-weight: 700;
    border-radius: 2px;
    font-size: 10px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

.top-bar-left {
    display: flex;
    gap: 22px;
}

.top-bar-left a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

/* Remove dots from desktop navigation */
.top-bar-left a::after,
.header-nav ul li a::after {
    display: none !important;
}

.top-bar-left a:hover {
    color: var(--gold);
}

/* --- Header --- */
.main-header {
    height: 95px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .content-wrapper {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-phone,
.btn-english {
    border: 1px solid var(--gold);
    color: #fff;
    height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-phone:hover,
.btn-english:hover {
    background: var(--gold);
    color: #000;
}

.divider {
    width: 1px;
    height: 25px;
    background: var(--border);
    margin: 0 5px;
}

.btn-search {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.menu-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.header-nav ul li {
    display: flex;
    align-items: center;
}

.header-nav ul li a {
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

/* Remove dots from desktop navigation */
.header-nav ul li a::after {
    display: none !important;
}

.header-nav ul li a:hover {
    color: var(--gold);
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 95px;
    width: 200px;
    object-fit: contain;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    background: #000;
    overflow: hidden;
}

.hero-image {
    width: 50%;
    height: 100%;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

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

.hero-content {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 5%;
    position: relative;
}

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

.hero-subtitle {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.gold-underline {
    width: 150px;
    height: 4px;
    background: var(--gold);
    margin: 20px 0 30px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
}

.rotating-badge {
    position: absolute;
    bottom: -150px;
    right: 50px;
    width: 160px;
    height: 160px;
}

.rotating-badge svg {
    width: 100%;
    height: 100%;
    animation: rotate-anim 18s linear infinite;
}

.rotating-badge text {
    fill: #fff;
    font-size: 11px;
    font-weight: 500;
}

@keyframes rotate-anim {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Post-Hero Clinic Section --- */
.clinic-about {
    background: #000;
    padding: 120px 0;
}

.clinic-about .content-wrapper {
    align-items: center;
    gap: 100px;
    flex-direction: row-reverse;
}

.clinic-about .text-col {
    flex: 1.2;
    text-align: right;
}

.clinic-about .section-title {
    font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: normal;
    color: #fff;
}

.clinic-about .desc-with-line {
    position: relative;
    padding-right: 180px;
    margin-bottom: 20px;
}

.clinic-about .desc-with-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0.9em;
    width: 150px;
    height: 1.5px;
    background: var(--gold);
}

.clinic-about p {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
    font-weight: 300;
}

.clinic-about .btn-doctors {
    display: inline-block;
    border: 1px solid rgb(145, 144, 140);
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 180px;
}

.clinic-about .btn-doctors:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.clinic-about .image-col {
    flex: 1;
}

.clinic-about .video-preview {
    position: relative;
    width: 100%;
}

.clinic-about .video-preview img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.clinic-about .play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-about .play-icon {
    width: 100px;
    height: 100px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.clinic-about .play-icon:hover {
    transform: scale(1.1);
}

.clinic-about .play-icon i {
    color: #fff;
    font-size: 28px;
    margin-left: 5px;
}

/* --- Doctor Slider --- */
.dr-slider-sec {
    background: #000;
    padding: 20px 0 20px;
    position: relative;
    overflow: hidden;
}

.dr-slider-sec .content-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dr-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.dr-card {
    background: #000;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid var(--gold);
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0;
}

.dr-img-col {
    flex: 0 0 220px;
    display: flex;
    justify-content: flex-end;
}

.dr-frame {
    width: 200px;
    height: 200px;
    border: 8px solid var(--gold);
    border-radius: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

.dr-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dr-info-col {
    flex: 1;
    text-align: right;
    padding: 0 50px;
}

.dr-name {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.dr-desc {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 300;
    opacity: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-profile {
    color: #b0b0b0;
    text-decoration: underline;
    font-size: 1rem;
    transition: 0.3s;
    opacity: 1;
    display: inline-block;
}

.view-profile:hover {
    color: var(--gold);
    opacity: 1;
}

.dr-cta-col {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
}

.btn-book {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.4;
    transition: 0.3s;
    font-weight: 400;
    letter-spacing: 0.5px;
    background: transparent;
    white-space: nowrap;
    width: fit-content;
}

.btn-book:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* --- World Map Section --- */
.map-sec {
    background: #000;
    padding: 120px 0;
    text-align: center;
}

.map-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.map-flex-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 5px;
}

.map-col {
    flex: 2.7;
    position: relative;
}

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

.world-map {
    width: 100%;
    display: block;
}

.map-content-col {
    flex: 1;
    text-align: right;
    padding-left: 40px;
}

.map-content-col p {
    color: #eee;
    font-size: 1.15rem;
    line-height: 1.9;
    font-weight: 300;
    opacity: 0.9;
}

.gold-line {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin-right: 0;
}

/* Marker Styling */
.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(197, 163, 88, 0.5);
}

.marker-pulse {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        width: 12px;
        height: 12px;
        opacity: 0.8;
    }

    100% {
        width: 50px;
        height: 50px;
        opacity: 0;
    }
}

/* Slider Navigation */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    padding: 20px;
}

.arrow:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.arrow.prev {
    left: 10px;
}

.arrow.next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.slider-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots span.active {
    background: #fff;
    transform: scale(1.3);
}

/* --- Featured Treatments Section --- */
.treatments-sec {
    background: #000;
    padding: 100px;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 500px;
    width: 100%;
}

.grid-text-block {
    background: #000;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.title-block {
    grid-column: span 2;
}

.footer-block {
    grid-column: span 2;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sec-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.grid-text-block p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.btn-outline {
    display: inline-block;
    width: fit-content;
    padding: 12px 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Treatment Card Styling */
.treatment-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.treatment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    text-align: right;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.info-overlay h3 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-overlay p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 300;
}

.info-overlay p.price {
    color: var(--gold);
    font-weight: 500;
    font-size: 1.1rem;
}

.treatment-card:hover img {
    transform: scale(1.15);
    opacity: 1;
}

.treatment-card:hover .info-overlay {
    opacity: 1;
}

.footer-block p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* --- Patient Testimonials Section --- */
.testimonials-sec {
    padding: 100px 0;
    background: #000;
    text-align: center;
}

.sec-title-centered {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.gold-underline-centered {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 60px;
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
    direction: ltr;
}

.testimonial-card {
    flex: 0 0 calc(33.33% - 14px);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: right;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    direction: rtl;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 163, 88, 0.1);
}

.testimonial-text {
    color: #eee;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.testimonial-author {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.nav-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
    padding: 10px;
    z-index: 10;
}

.nav-arrow:hover {
    opacity: 1;
    color: var(--gold);
}

/* --- Map & Contact Section --- */
.map-contact-sec {
    position: relative;
    background: #000;
}

.map-bg {
    width: 100%;
    opacity: 1;
}

.map-bg iframe {
    width: 100%;
    height: 600px;
    border: 0;
}

.map-contact-sec .content-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(70%);
    width: 100%;
    z-index: 5;
    pointer-events: none;
}

.contact-float-box {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    pointer-events: all;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-info-col {
    flex: 1;
    text-align: right;
    padding: 40px 50px;
}

.contact-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
    justify-content: flex-start;
}

.gold-line-divider {
    width: 100%;
    height: 1px;
    background: rgba(197, 163, 88, 0.3);
    margin: 10px 0;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.item-text {
    text-align: right;
}

.item-text span {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.item-text p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
}

.contact-float-box::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 2px;
    background: rgba(197, 163, 88, 0.3);
    z-index: 2;
}

.contact-form-col {
    flex: 1;
    text-align: center;
    background: #0a0a0a;
    padding: 40px 50px;
}

.form-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
}

.gold-line-small {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 25px;
}

.dynamic-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.form-group label {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.dynamic-form input,
.dynamic-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 0;
    color: #fff;
    font-size: 1rem;
    outline: none;
    text-align: right;
    width: 100%;
}

.dynamic-form input:focus,
.dynamic-form textarea:focus {
    border-color: var(--gold);
}

.btn-send {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-send:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- Main Footer Styling --- */
.main-footer {
    background: #000;
    padding: 450px 150px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.5fr 2.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-h {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.footer-p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 1rem;
}

.newsletter-footer {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}

.newsletter-footer input {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 12px 20px;
    color: #fff;
    flex: 1;
    outline: none;
    font-size: 0.95rem;
}

.newsletter-footer button {
    background: var(--gold);
    border: none;
    color: #000;
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.newsletter-footer button:hover {
    background: #fff;
}

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

.footer-contact-links {
    margin-bottom: 30px;
}

.footer-contact-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.gold-link {
    color: var(--gold) !important;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

.footer-links-list li {
    margin-bottom: 8px;
    text-align: right;
}

.footer-links-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
}

.footer-links-list a:hover {
    color: var(--gold);
}

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

.footer-bottom p {
    color: #555;
    font-size: 0.9rem;
}

/* Fixed Actions */
.fixed-actions {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    background: #25d366;
}

.phone-float {
    background: var(--gold);
}

/* ============================================
   TABLET RESPONSIVE STYLES (769px to 1199px)
   ============================================ */
@media (max-width: 1199px) {
    .content-wrapper {
        padding: 0 25px;
    }

    .header-nav ul {
        gap: 15px;
    }

    .header-nav ul li a,
    .top-bar-left a {
        font-size: 11px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-phone,
    .btn-english {
        padding: 0 10px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-text {
        transform: scale(0.9);
        transform-origin: right center;
    }

    .treatments-sec {
        padding: 70px 30px;
    }

    /* Change grid from 4 to 2 columns */
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 400px;
    }

    /* Make title block and footer block elegantly span 2 columns */
    .grid-text-block {
        grid-column: span 2;
    }

    .treatment-card:first-child {
        order: -1;
    }

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

    .map-flex-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .map-col {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .map-content-col {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .gold-line {
        margin: 20px auto 0;
    }

    .clinic-about .content-wrapper {
        gap: 40px;
    }

    .clinic-about .desc-with-line {
        padding-right: 0;
    }

    .clinic-about .desc-with-line::after {
        display: none;
    }

    .clinic-about .btn-doctors {
        margin-right: 0;
    }

    .contact-float-box {
        flex-direction: column;
        max-width: 95%;
        margin: 0 auto;
    }

    .contact-float-box::after {
        display: none;
    }

    .contact-info-col,
    .contact-form-col {
        padding: 30px 40px;
    }

    .dynamic-form input,
    .dynamic-form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .btn-send {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .map-contact-sec .content-wrapper {
        bottom: auto;
        top: 80%;
        transform: translateX(-50%) translateY(0);
    }

    .main-footer {
        padding: 350px 50px 0;
    }

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

    .newsletter-footer {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .dr-card {
        padding: 20px 15px;
        gap: 10px;
    }

    .dr-img-col {
        flex: 0 0 180px;
    }

    .dr-frame {
        width: 150px;
        height: 150px;
    }

    .dr-info-col {
        padding: 0 20px;
    }

    .dr-name {
        font-size: 1.4rem;
    }

    .dr-desc {
        font-size: 0.95rem;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    .dr-cta-col {
        flex: 0 0 160px;
    }

    .btn-book {
        padding: 8px 15px;
        font-size: 1rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES (768px and below)
   ============================================ */

@media (max-width: 768px) {

    /* Top Bar Mobile - Keep marquee running */
    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    .top-bar .content-wrapper {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .top-bar-right {
        gap: 6px;
        flex-shrink: 0;
    }

    .btn-whatsapp,
    .btn-landline {
        padding: 4px 10px;
        font-size: 10px;
        height: 28px;
        gap: 4px;
    }

    .btn-whatsapp i,
    .btn-landline i {
        font-size: 12px;
    }

    .social-links {
        gap: 6px;
    }

    .social-links a {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .top-bar-middle {
        display: block;
        flex: 1;
        margin: 0 10px;
        overflow: hidden;
    }

    .marquee-container {
        gap: 40px;
        font-size: 11px;
        animation: marquee-anim 25s linear infinite;
    }

    .top-bar-left {
        display: none;
    }

    /* Header Mobile */
    .main-header {
        height: 65px;
    }

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

    /* Mobile Menu Toggle - HAMBURGER */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        padding: 8px;
        order: 3;
        min-height: 44px;
        min-width: 44px;
        z-index: 1001;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 40px;
        transition: right 0.4s ease;
        z-index: 999;
        border-left: 2px solid var(--gold);
        display: flex;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .header-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-nav ul li a {
        font-size: 15px;
        padding: 15px 0;
        display: block;
        width: 100%;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-phone {
        padding: 0 12px;
        height: 36px;
    }

    .btn-phone span {
        display: none;
    }

    .btn-phone i {
        font-size: 16px;
    }

    .btn-english {
        display: none;
    }

    .divider {
        display: none;
    }

    .btn-search {
        font-size: 18px;
        padding: 8px;
    }

    /* Hero Mobile - INTERACTIVE */
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .hero-image {
        width: 100%;
        height: 60vh;
        min-height: 400px;
        order: 1;
        position: relative;
    }

    .hero-image::after {
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-content {
        width: 100%;
        height: auto;
        padding: 30px 20px 50px;
        order: 2;
        text-align: center;
        background: linear-gradient(to bottom, transparent 0%, #000 20%);
        margin-top: -50px;
        position: relative;
        z-index: 2;
    }

    .hero-text {
        width: 100%;
        position: relative;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 10px;
        opacity: 0.9;
    }

    .gold-underline {
        width: 60px;
        height: 3px;
        margin: 15px auto 20px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .rotating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 30px auto 0;
        width: 90px;
        height: 90px;
    }

    /* Interactive Hero Elements */
    .hero-scroll-indicator {
        display: block;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        40% {
            transform: translateX(-50%) translateY(-10px);
        }

        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

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

    .clinic-about .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .clinic-about .text-col {
        text-align: center;
        width: 100%;
        order: 2;
    }

    .clinic-about .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .clinic-about .desc-with-line {
        padding-right: 0;
        padding-top: 20px;
    }

    .clinic-about .desc-with-line::after {
        right: 50%;
        transform: translateX(50%);
        top: 0;
        width: 60px;
    }

    .clinic-about p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .clinic-about .btn-doctors {
        margin: 20px 0 0;
        padding: 10px 25px;
        font-size: 12px;
    }

    .clinic-about .image-col {
        width: 100%;
        order: 1;
    }

    .clinic-about .play-icon {
        width: 60px;
        height: 60px;
    }

    .clinic-about .play-icon i {
        font-size: 20px;
    }

    /* Doctor Slider Mobile - SINGLE CARD, COMPACT */
    .dr-slider-sec {
        padding: 30px 0 80px;
    }

    .dr-slider-sec .content-wrapper {
        padding: 0 15px;
    }

    .slider-container {
        padding: 0 40px;
        position: relative;
    }

    .dr-slide {
        padding: 0;
    }

    .dr-card {
        flex-direction: column;
        align-items: center;
        padding: 60px 30px;
        border-radius: 35px;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 1px solid var(--gold);
        margin-bottom: 70px;
        text-align: center;
    }

    .dr-img-col {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .dr-frame {
        width: 90%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 90px;
        border: 10px solid var(--gold);
        margin: 0 auto;
    }

    .dr-info-col {
        order: 2;
        width: 100%;
        padding: 0;
        text-align: center;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .dr-name {
        font-size: 2.1rem;
        margin-bottom: 25px;
        font-weight: 700;
        line-height: 1.3;
    }

    .dr-desc {
        font-size: 1.15rem;
        line-height: 1.9;
        margin-bottom: 25px;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        display: block;
        padding: 0;
    }

    .view-profile {
        font-size: 0.95rem;
        display: inline-block;
        margin-bottom: 5px;
        color: #b0b0b0;
        text-align: right;
        align-self: flex-start;
    }

    .dr-cta-col {
        order: 1;
        width: 100%;
        margin-top: 0;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
    }

    .btn-book {
        display: inline-block;
        padding: 6px 16px;
        font-size: 0.9rem;
        width: fit-content;
        max-width: 90%;
        border: 1px solid #fff;
        border-radius: 50px;
        white-space: nowrap;
        background: transparent;
    }

    .arrow {
        font-size: 1.2rem;
        padding: 8px;
        top: 50%;
    }

    .arrow.prev {
        left: 0;
    }

    .arrow.next {
        right: 0;
    }

    .slider-dots {
        margin-top: 20px;
        gap: 8px;
    }

    .slider-dots span {
        width: 10px;
        height: 10px;
    }

    /* Map Section Mobile */
    .map-sec {
        padding: 50px 0;
    }

    .map-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .map-flex-container {
        flex-direction: column;
        gap: 25px;
    }

    .map-col {
        width: 100%;
    }

    .map-content-col {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .map-content-col p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .gold-line {
        margin: 15px auto 0;
    }

    /* Treatments Mobile - CONTENT FIRST, THEN CARDS, THEN FOOTER CONTENT */
    .treatments-sec {
        padding: 40px 15px;
    }

    .treatments-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Order: Title Block First, Then Cards, Then Footer Block */
    .title-block {
        order: 1;
        padding: 25px 20px;
        text-align: center;
    }

    .treatment-card:nth-of-type(1) {
        order: 2;
    }

    .treatment-card:nth-of-type(2) {
        order: 3;
    }

    .treatment-card:nth-of-type(3) {
        order: 4;
    }

    .treatment-card:nth-of-type(4) {
        order: 5;
    }

    .treatment-card:nth-of-type(5) {
        order: 6;
    }

    .treatment-card:nth-of-type(6) {
        order: 7;
    }

    .treatment-card:nth-of-type(7) {
        order: 8;
    }

    .treatment-card:nth-of-type(8) {
        order: 9;
    }

    .footer-block {
        order: 10;
        padding: 25px 20px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }

    .sec-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .grid-text-block p {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.7;
    }

    .btn-outline {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
        margin: 10px auto 0;
    }

    .treatment-card {
        height: 280px;
        border-radius: 12px;
    }

    .treatment-card img {
        opacity: 0.6;
    }

    .info-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
        justify-content: flex-end;
        padding: 20px;
        text-align: center;
    }

    .info-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .info-overlay p {
        font-size: 0.8rem;
        margin-bottom: 5px;
        line-height: 1.5;
    }

    .info-overlay p.price {
        font-size: 0.9rem;
        margin-top: 5px;
    }

    /* Testimonials Mobile - SINGLE CARD */
    .testimonials-sec {
        padding: 50px 0;
    }

    .sec-title-centered {
        font-size: 1.4rem;
        margin-bottom: 12px;
        padding: 0 20px;
    }

    .gold-underline-centered {
        width: 50px;
        height: 2px;
        margin-bottom: 30px;
    }

    .testimonials-slider {
        padding: 0 40px;
        gap: 0;
        position: relative;
    }

    .testimonials-viewport {
        padding: 5px 0;
    }

    .testimonials-track {
        gap: 0;
    }

    .testimonial-card {
        flex: 0 0 100%;
        padding: 20px 15px;
        min-height: auto;
        border-radius: 12px;
        margin: 0 5px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .testimonial-author {
        font-size: 0.95rem;
    }

    .nav-arrow {
        font-size: 1.1rem;
        padding: 10px;
        min-height: 44px;
        min-width: 44px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-arrow.prev-testimonial {
        left: 0;
    }

    .nav-arrow.next-testimonial {
        right: 0;
    }

    /* Contact Section Mobile */
    .map-bg iframe {
        height: 250px;
    }

    .map-contact-sec .content-wrapper {
        position: relative;
        transform: none;
        left: auto;
        padding: 30px 15px;
    }

    .contact-float-box {
        flex-direction: column;
        border-radius: 12px;
    }

    .contact-float-box::after {
        display: none;
    }

    .contact-info-col,
    .contact-form-col {
        width: 100%;
        padding: 25px 20px;
    }

    .contact-title,
    .form-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .dynamic-form {
        width: 100%;
    }

    .dynamic-form input,
    .dynamic-form textarea {
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-send {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-top: 15px;
        padding: 14px;
        font-size: 1rem;
    }

    .form-group {
        width: 100%;
        box-sizing: border-box;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 50px 20px 0;
        overflow: hidden;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-col {
        display: contents;
    }

    /* Newsletter section */
    .footer-col:nth-child(3) .footer-h {
        order: 1;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .footer-col:nth-child(3) .footer-p {
        order: 2;
        margin-bottom: 20px;
    }

    .footer-col:nth-child(3) .newsletter-footer {
        order: 3;
        margin-bottom: 50px;
    }

    /* Contact Info section */
    .footer-col:nth-child(2) .footer-h {
        order: 4;
        margin-bottom: 15px;
    }

    .footer-col:nth-child(2) .footer-p {
        order: 5;
        margin-bottom: 15px;
    }

    .footer-col:nth-child(2) .footer-contact-links {
        order: 6;
        margin-bottom: 40px;
    }

    /* Services block */
    .footer-col:nth-child(1) .footer-h {
        order: 7;
        margin-bottom: 15px;
    }

    .footer-col:nth-child(1) .footer-links-list {
        order: 8;
        margin-bottom: 40px;
    }

    /* Social Media */
    .footer-col:nth-child(2) .footer-social-icons {
        order: 9;
        margin-bottom: 30px;
    }

    .footer-h {
        font-size: 1.4rem;
        text-align: center;
        width: 100%;
    }

    .footer-p {
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: center;
        width: 100%;
    }

    .links-col,
    .footer-links-list,
    .footer-contact-links,
    .footer-social-icons {
        width: 100%;
    }

    .footer-links-list li {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-links-list a {
        font-size: 0.95rem;
    }

    .footer-contact-links {
        text-align: center;
    }

    .footer-contact-links a {
        font-size: 1rem;
    }

    .footer-social-icons {
        gap: 15px;
        justify-content: center;
    }

    .newsletter-footer {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        border: none;
    }

    .newsletter-footer input {
        width: 100%;
        padding: 12px 15px;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        margin: 0;
    }

    .newsletter-footer button {
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
        border-radius: 4px;
        margin: 0;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* Fixed Actions Mobile */
    .fixed-actions {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ============================================
   SMALL MOBILE STYLES (480px and below)
   ============================================ */

@media (max-width: 480px) {
    .hero-image {
        height: 50vh;
        min-height: 350px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .rotating-badge {
        width: 80px;
        height: 80px;
        margin-top: 20px;
    }

    .clinic-about .section-title {
        font-size: 1.3rem;
    }

    .dr-frame {
        width: 100px;
        height: 100px;
        border-radius: 25px;
    }

    .dr-name {
        font-size: 1.1rem;
    }

    .dr-desc {
        font-size: 0.85rem;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .btn-book {
        display: inline-block;
        width: fit-content;
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .treatment-card {
        height: 250px;
    }

    .info-overlay h3 {
        font-size: 1rem;
    }

    .info-overlay p {
        font-size: 0.75rem;
    }

    .testimonial-card {
        padding: 18px 12px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .contact-title,
    .form-title {
        font-size: 1.1rem;
    }
}

/* ============================================
   EXTRA SMALL MOBILE STYLES (360px and below)
   ============================================ */

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-whatsapp,
    .btn-landline {
        font-size: 9px;
        padding: 3px 6px;
    }

    .social-links a {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .clinic-about .section-title {
        font-size: 1.2rem;
    }

    .sec-title {
        font-size: 1.2rem;
    }

    .dr-frame {
        width: 90px;
        height: 90px;
    }

    .treatment-card {
        height: 220px;
    }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    .treatment-card .info-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .treatment-card img {
        opacity: 0.7;
    }

    .btn-phone:active,
    .btn-english:active,
    .btn-whatsapp:active,
    .btn-landline:active,
    .btn-outline:active,
    .btn-send:active,
    .btn-book:active,
    .btn-doctors:active {
        background: var(--gold);
        color: #000;
        transform: scale(0.98);
    }
}

/* ============================================
   LANDSCAPE MODE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        flex-direction: row;
        min-height: auto;
    }

    .hero-image {
        width: 50%;
        height: 100vh;
        min-height: 100vh;
    }

    .hero-content {
        width: 50%;
        padding: 40px 30px;
        margin-top: 0;
        background: transparent;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .rotating-badge {
        display: none;
    }

    .dr-card {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 20px;
    }

    .dr-img-col {
        flex: 0 0 100px;
    }

    .dr-frame {
        width: 100px;
        height: 100px;
    }

    .dr-info-col {
        flex: 1;
        text-align: right;
        padding-left: 20px;
    }

    .dr-cta-col {
        width: 100%;
        margin-top: 15px;
    }

    .treatment-card {
        height: 200px;
    }
}

/* ============================================
   HIGH DPI DISPLAY OPTIMIZATIONS
   ============================================ */

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .header-logo img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {

    .top-bar,
    .main-header,
    .fixed-actions,
    .menu-toggle,
    .menu-overlay,
    .arrow,
    .nav-arrow,
    .play-btn-overlay,
    .slider-dots {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .hero-image::after {
        display: none;
    }

    .treatment-card .info-overlay {
        opacity: 1;
        position: relative;
        background: none;
        color: #000;
        padding: 20px 0;
    }

    .treatment-card img {
        opacity: 1;
    }
}