* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.8;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.nav-btn,
.hero-tag,
.h-stat h3,
.c-stat h3 {
    font-family: 'Outfit', sans-serif;
    /* Premium Heading Font */
}


/* HEADER */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo {
    height: 75px;
    width: auto;
    display: block;
}

.nav-btn {
    background: #ef6b6b;
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #d85858;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .main-logo {
        height: 55px;
    }

    .nav-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* HERO SECTION - CLEAN BANNER */
.hero {
    height: 85vh;
    background: url('Assets/banner.webp') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    height: 100%;
    display: flex;
    align-items: center;
}

.container-hero {
    max-width: 900px;
}

.hero-content {
    color: #fff;
    text-align: left;
}

.hero-tag {
    display: inline-block;
    background: rgba(239, 107, 107, 0.15);
    color: #ef6b6b;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid rgba(239, 107, 107, 0.3);
    backdrop-filter: blur(8px);
    font-weight: 600;
}

.hero-content h1 {
    font-size: clamp(40px, 8vw, 75px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    /* Sleek heading look */
}

.hero-content p {
    font-size: clamp(16px, 4vw, 22px);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* CONSULTATION SECTION BELOW BANNER */
.consultation-section {
    padding: 100px 0;
    background: #fff;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.consultation-info h2 {
    font-size: clamp(32px, 5vw, 42px);
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.consultation-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 550px;
    line-height: 1.8;
}

.consultation-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.c-stat {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f8f8f8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(239, 107, 107, 0.12);
    border-color: rgba(239, 107, 107, 0.2);
}

.c-stat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(239, 107, 107, 0.1), rgba(239, 107, 107, 0.05));
    border: 1px solid rgba(239, 107, 107, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef6b6b;
    flex-shrink: 0;
    transition: 0.3s;
}

.c-stat:hover .c-stat-icon {
    background: #ef6b6b;
    color: #fff;
    transform: scale(1.05);
}

.c-stat-icon i {
    font-size: 30px;
}

.c-stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.c-stat-info h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1;
}

.c-stat-info p {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin: 0;
}

.booking-card {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.booking-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.booking-form {
    display: grid;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    background: #fff;
}

.error-msg {
    color: #d32f2f;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn:not(.btn-outline) {
    background: #ef6b6b;
    color: #fff;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn.btn-outline:hover {
    background: #fff;
    color: #333;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media(max-width: 992px) {
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .consultation-info p {
        margin: 0 auto 40px;
    }

    .consultation-stats {
        max-width: 500px;
        margin: auto;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img {
    width: 85%;
    max-width: 400px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(239, 107, 107, 0.15);
}

.service-card-img {
    height: 250px;
    width: 100%;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
    text-align: center;
}

.service-card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* MODAL STYLES */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    z-index: 3001;
    animation: modalSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* TEAM */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.team img {
    width: 100%;
    border-radius: 12px;
}

/* YOUTUBE */
/* .youtube {
    padding: 80px 0;
    background: #111;
    color: #fff;
}

.video-wrapper {
    width: 80%;
    margin: auto;
    aspect-ratio: 16/9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
} */
/* YOUTUBE SECTION REFINED */
.youtube-section {
    padding: 80px 0 20px;
    background: #fff;
    overflow: hidden;
}


.youtube-slider {
    overflow: hidden;
    padding: 20px 0 40px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.youtube-track {
    display: flex;
    gap: 25px;
    width: max-content;
    padding: 20px;
    animation: scrollYoutube 40s linear infinite;
}

.youtube-track:hover {
    animation-play-state: paused;
}

@keyframes scrollYoutube {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12.5px));
        /* Half of total width + half of gap */
    }
}

.video-card {
    min-width: 210px;
    max-width: 210px;
    height: 330px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    /* Ensures cards don't shrink */
    scroll-snap-align: start;
    /* Snap point */
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe,
.video-card .player {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-card p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    z-index: 2;
    margin: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-card {
        min-width: 180px;
        max-width: 180px;
        height: 280px;
    }
}

/* TESTIMONIALS */
.testimonials {
    padding: 20px 0 80px;
}

.testimonial-slider {
    overflow: hidden;
    padding: 20px 0 40px;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px;
    animation: scrollTestimonials 40s linear infinite;
}

.testimonial-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 350px;
    /* Fixed width for better scrolling control */
    flex-shrink: 0;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(239, 107, 107, 0.1);
}

.quote-icon {
    font-size: 60px;
    color: #ef6b6b;
    opacity: 0.2;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.patient-info {
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.patient-info strong {
    display: block;
    color: #333;
    font-size: 17px;
    font-family: 'Outfit', sans-serif;
}

.patient-info span {
    color: #ef6b6b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CTA */
.cta {
    padding: 80px 20px;
    background: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5') center/cover no-repeat;
    text-align: center;
    color: #fff;
    position: relative;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta * {
    position: relative;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
}


/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 20px;
    margin-top: 20px;
}

.footer-about p {
    color: #aaa;
    max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 25px;
    font-size: 18px;
    color: #ef6b6b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ef6b6b;
    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-contact {
    text-align: right;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
    color: #777;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #ef6b6b;
}

/* FLOATING ACTION BUTTONS (DESKTOP) */
.fab-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: #25D366;
}

.booking-btn {
    background: #ef6b6b;
}

/* Shine Effect */
.fab-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.fab-btn:hover::after {
    left: 100%;
}


/* MOBILE TAB BAR */
.mobile-tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, #ef6b6b 0%, #d85858 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(239, 107, 107, 0.3);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
    width: 100%;
    height: 100%;
}

.tab-item i {
    font-size: 22px;
    margin-bottom: 2px;
    transition: 0.3s;
}

.tab-item.active,
.tab-item:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.1);
}

.tab-item:hover i {
    transform: translateY(-3px);
}

/* RESPONSIVE UTILITIES */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

@media(max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-about p {
        margin: auto;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex;
    }

    body {
        padding-bottom: 65px;
        /* Space for mobile action bar */
    }
}

/* RESPONSIVE */
@media(max-width: 768px) {

    .about-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-btns {
        margin: 0 auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Consultation Mobile Optimization */
    .consultation-section {
        padding: 50px 0;
    }

    .consultation-grid {
        gap: 40px;
    }

    .booking-card {
        padding: 25px;
    }

    .booking-card h3 {
        font-size: 20px;
    }

    .consultation-stats {
        gap: 15px;
    }

    .c-stat {
        padding: 15px;
        gap: 12px;
        align-items: flex-start;
    }

    .c-stat-icon {
        width: 50px;
        height: 50px;
    }

    .c-stat-icon i {
        font-size: 24px;
    }

    .c-stat-info h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .c-stat-info p {
        font-size: 10px;
        line-height: 1.3;
    }

    /* Hide embedded form on mobile */
    .consultation-grid .booking-card {
        display: none;
    }

    /* Footer Mobile Optimization - Single Strip */
    .footer {
        padding: 20px 0 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-about,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin: 0 0 20px 0;
    }

    .footer-about p {
        margin: 0 auto;
        text-align: center;
    }

    .footer-contact h3 {
        display: none;
    }

    .footer-contact {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 5px;
        font-size: 10px;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .footer-contact p {
        text-align: center;
        margin: 0;
        display: inline;
    }

    /* Hide detailed address lines on mobile - keep only street, city and phone */
    .footer-contact p:nth-child(3) {
        display: none;
    }

    /* Add GPS icon before address on mobile */
    .footer-contact p:nth-child(2)::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f3c5 ";
        margin-right: 5px;
        color: #ef6b6b;
    }

    .footer-contact p::after {
        content: " • ";
        margin: 0 5px;
        color: #777;
    }

    .footer-contact p:last-child::after {
        content: "";
    }

    .footer-bottom {
        padding-top: 15px;
        margin-top: 15px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}