:root {
    --primary: #0077b6;
    /* Deep Ocean Blue */
    --secondary: #edc9af;
    /* Soft Sand / Desert Sand */
    --navy: #03045e;
    --accent: #caf0f8;
    /* Pale Ocean Blue */
    --text-dark: #023e8a;
    --text-muted: #48cae4;
    --white: #ffffff;
    --bg-light: #f1faff;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 15px 35px rgba(0, 119, 182, 0.08);
    --transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.location {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    background: var(--primary);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
}

.nav-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 150px 0 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #caf0f8 0%, #ffffff 100%);
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.2);
}

.btn-primary:hover {
    background: var(--navy);
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.review-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
}

.mini-stars {
    color: #ff9800;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.mascot-outer {
    position: relative;
}

.mascot-img {
    width: 100%;
    max-width: 450px;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 119, 182, 0.1));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(-3deg);
    }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    font-weight: 700;
    z-index: 5;
    animation: slideIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.c1 {
    top: 10%;
    right: -20px;
    color: #ff5252;
}

.c2 {
    bottom: 20%;
    left: -40px;
    color: #4caf50;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.tag {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: #5bb7e5;
}

/* Experience Cards */
.exp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 35px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 119, 182, 0.05);
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 119, 182, 0.12);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.blue {
    background: var(--accent);
    color: var(--primary);
}

.sand {
    background: #fff3e0;
    color: #ff9800;
}

.navy {
    background: #e8eaf6;
    color: var(--navy);
}

/* Services Section */
.services-bg {
    background-color: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.3rem;
}

.services-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.s-box {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 25px;
    transition: var(--transition);
}

.s-box:hover {
    background: var(--accent);
}

.s-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.s-box h4 {
    margin-bottom: 10px;
}

/* Testimonials */
.testimonial-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.stars {
    color: #ffca28;
    margin-bottom: 20px;
}

.testi-card p {
    font-style: italic;
    margin-bottom: 25px;
}

.patient {
    font-weight: 800;
    color: var(--navy);
}

/* Location Section */
.split-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-area {
    border-radius: 40px;
    overflow: hidden;
}

.contact-data li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-data i {
    font-size: 1.5rem;
    color: var(--primary);
    padding-top: 5px;
}

/* Hours Section */
.hours-section {
    background: var(--bg-light);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.hour-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 119, 182, 0.05);
}

.hour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 119, 182, 0.12);
}

.hour-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hour-card h3 {
    margin-bottom: 12px;
    color: var(--navy);
}

.hour-card p {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.hour-card.highlight {
    border: 2px solid var(--primary);
}

.hours-note {
    text-align: center;
    margin-top: 50px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--navy);
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.f-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
}

.f-logo {
    height: 45px;
}

.f-socials a {
    color: white;
    font-size: 1.5rem;
}

/* Instagram Float */
.instagram-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .section {
        padding: 80px 0;
    }

    .hero-container,
    .services-grid,
    .split-container,
    .hours-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .contact-data li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-data i {
        padding-top: 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 20px;
    }

    .exp-cards,
    .testimonial-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .services-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-area {
        height: 350px;
    }

    .tag {
        font-size: 0.75rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .services-items {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 20px;
    }

    .floating-card {
        display: none;
    }
}