/* =====================================================
   PLATINUM SMILE DENTAL CLINIC
===================================================== */
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
:root {

    --primary: #087f8c;
    --primary-dark: #05636d;
    --secondary: #c6a15b;
    --dark: #102f35;
    --text: #52666b;
    --light: #f5fbfb;
    --white: #ffffff;
    --border: #e3eeee;
    --shadow: 0 20px 60px rgba(16, 47, 53, 0.10);
    --radius: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

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

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

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* =====================================================
   HEADER
===================================================== */
.header {
    background: black;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: .3s;
}
.header.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,.08);
}
.nav {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo img {
    width:85px;
    height: 65px;
    object-fit: contain;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}
.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: .3s;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary, #d4af37);
}
.nav-btn {
    background: var(--primary, #d4af37);
    color: white;
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}
.nav-btn:hover {
    background: var(--primary-dark, #b8952e);
    transform: translateY(-2px);
}
.nav-btn i {
    margin-left: 8px;
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 25px;
    color: #ffffff;
    cursor: pointer;
}

/* nav-btn-mobile + close button hidden by default on desktop */
.nav-btn-mobile,
.nav-menu-top {
    display: none;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 991px) {
    .container.nav {
        position: relative;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        z-index: 2000;
        overflow-y: auto;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .logo-inside {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo-inside img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .logo-inside span {
        font-weight: 700;
        font-size: 14px;
        color: #111;
    }

    .menu-close {
        background: none;
        border: 0;
        font-size: 20px;
        color: #111;
        cursor: pointer;
    }

    .nav-menu a {
        color: #0b1b3f !important;
        font-size: 15px;
        font-weight: 600;
        padding: 10px 16px;
        width: 100%;
        border-bottom: none;
    }

    .nav-menu a.active,
    .nav-menu a:hover {
        color: var(--primary, #d4af37) !important;
    }

    .nav-btn-mobile {
        display: block !important;
        margin: 12px 16px;
        background: var(--primary, #d4af37);
        color: #fff !important;
        text-align: center;
        padding: 12px 16px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 14px;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 22px;
    }
}
/* ════ BANNER ════ */
.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1400 / 580;
}
.banner-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

/* =====================================================
   HERO
===================================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #f1fbfb 0%, #ffffff 55%, #eef8f7 100%);
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-grid {
    width: min(1180px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    gap: 0;
}

/* LEFT CONTENT */
.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 30px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 1.02;
    color: #102f35;
    margin: 0;
    max-width: 600px;
}

.hero h1 em {
    color: #087f8c;
    font-style: normal;
    display: block;
}

.hero-content > p {
    max-width: 520px;
    font-size: 16px;
    margin: 25px 0 30px;
}


/* ================= HERO RIGHT SIDE ================= */

.hero-image {
    position: relative;
    height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}


/* BACKGROUND CIRCLE */

.hero-circle {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: #d7efed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 0;
}


/* VIDEO */

.hero-video {
    position: relative;

    width: 430px;
    height: 430px;

    object-fit: cover;

    border-radius: 50%;

    display: block;

    z-index: 2;

    box-shadow: 0 20px 50px rgba(16, 47, 53, 0.15);
}


/* ================= EXPERIENCE CARD ================= */

.experience-card {
    position: absolute;

    left: -5px;
    bottom: 55px;

    background: #ffffff;

    padding: 16px 20px;

    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(16, 47, 53, 0.12);

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-card strong {
    font-size: 32px;
    color: #102f35;
    line-height: 1;
}

.experience-card span {
    font-size: 11px;
    line-height: 1.4;
    color: #102f35;
    font-weight: 600;
}


/* ================= HAPPY SMILES CARD ================= */

.floating-card {
    position: absolute;

    right: -5px;
    top: 125px;

    background: #ffffff;

    padding: 14px 20px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    box-shadow: 0 15px 40px rgba(16, 47, 53, 0.12);

    z-index: 5;
}

.floating-icon {
    width: 40px;
    height: 40px;

    background: #fff5dc;
    color: #c6a15b;

    border-radius: 50%;

    display: grid;
    place-items: center;
}

.floating-card strong {
    color: #102f35;
    font-size: 16px;
    display: block;
}

.floating-card span {
    font-size: 11px;
    display: block;
}


/* ================= BUTTON FIX ================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #087f8c !important;
    color: #ffffff !important;

    padding: 15px 24px;
    border-radius: 50px;

    font-weight: 700;
}

.btn-outline {
    border: 1px solid #087f8c;
    color: #087f8c !important;

    padding: 15px 24px;
    border-radius: 50px;
}

.btn-outline:hover {
    background: #087f8c;
    color: #ffffff !important;
}/* ================= HERO FIX ================= */

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #f1fbfb 0%, #ffffff 55%, #eef8f7 100%);
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-grid {
    width: min(1180px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    gap: 0;
}

/* LEFT CONTENT */
.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 30px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 1.02;
    color: #102f35;
    margin: 0;
    max-width: 600px;
}

.hero h1 em {
    color: #087f8c;
    font-style: normal;
    display: block;
}

.hero-content > p {
    max-width: 520px;
    font-size: 16px;
    margin: 25px 0 30px;
}


/* ================= HERO RIGHT SIDE ================= */

.hero-image {
    position: relative;
    height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}


/* BACKGROUND CIRCLE */

.hero-circle {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: #d7efed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 0;
}


/* VIDEO */

.hero-video {
    position: relative;

    width: 430px;
    height: 430px;

    object-fit: cover;

    border-radius: 50%;

    display: block;

    z-index: 2;

    box-shadow: 0 20px 50px rgba(16, 47, 53, 0.15);
}


/* ================= EXPERIENCE CARD ================= */

.experience-card {
    position: absolute;

    left: -5px;
    bottom: 55px;

    background: #ffffff;

    padding: 16px 20px;

    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(16, 47, 53, 0.12);

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-card strong {
    font-size: 32px;
    color: #102f35;
    line-height: 1;
}

.experience-card span {
    font-size: 11px;
    line-height: 1.4;
    color: #102f35;
    font-weight: 600;
}


/* ================= HAPPY SMILES CARD ================= */

.floating-card {
    position: absolute;

    right: -5px;
    top: 125px;

    background: #ffffff;

    padding: 14px 20px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    box-shadow: 0 15px 40px rgba(16, 47, 53, 0.12);

    z-index: 5;
}

.floating-icon {
    width: 40px;
    height: 40px;

    background: #fff5dc;
    color: #c6a15b;

    border-radius: 50%;

    display: grid;
    place-items: center;
}

.floating-card strong {
    color: #102f35;
    font-size: 16px;
    display: block;
}

.floating-card span {
    font-size: 11px;
    display: block;
}


/* ================= BUTTON FIX ================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #087f8c !important;
    color: #ffffff !important;

    padding: 15px 24px;
    border-radius: 50px;

    font-weight: 700;
}

.btn-outline {
    border: 1px solid #087f8c;
    color: #087f8c !important;

    padding: 15px 24px;
    border-radius: 50px;
}

.btn-outline:hover {
    background: #087f8c;
    color: #ffffff !important;
}
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: 380px;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
        top: 40px;
    }

    .hero-video {
        width: 250px;
        height: 250px;
    }

    .experience-card {
        left: 0;
        bottom: 20px;
        padding: 10px 14px;
        gap: 8px;
    }

    .experience-card strong {
        font-size: 22px;
    }

    .experience-card span {
        font-size: 9px;
    }

    .floating-card {
        right: 0;
        top: 30px;
        padding: 8px 14px;
        gap: 8px;
    }

    .floating-icon {
        width: 32px;
        height: 32px;
    }

    .floating-card strong {
        font-size: 13px;
    }

    .floating-card span {
        font-size: 9px;
    }
}

@media (max-width: 400px) {
    .hero-image {
        height: 340px;
    }

    .hero-circle {
        width: 260px;
        height: 260px;
    }

    .hero-video {
        width: 220px;
        height: 220px;
    }

    .experience-card {
        left: -5px;
    }

    .floating-card {
        right: -5px;
    }
}
/* =====================================================
   STATS
===================================================== */

/* ================= STATS ================= */

.stats {
    width: 100%;
    display: block;
    background: #102f35;
    color: #ffffff;
    position: relative;
    z-index: 20;
}

.stats-grid {
    width: min(1180px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    min-height: 110px;
    padding: 25px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat:last-child {
    border-right: none;
}

.stat > i {
    color: #c6a15b;
    font-size: 28px;
    flex-shrink: 0;
}

.stat strong {
    display: block;
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.stat span {
    display: block;
    color: #b7cdd0;
    font-size: 12px;
    margin-top: 3px;
}


/* ================= TABLET ================= */

@media (max-width: 800px) {

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 500px) {

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

    .stat {
        min-height: 90px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .stat:last-child {
        border-bottom: none;
    }

}

/* =====================================================
   GENERAL SECTION
===================================================== */

.section {

    padding: 100px 0;

}


.section-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 55px;

}


.section-heading h2,
.about-content h2,
.why-content h2,
.contact-info h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.15;

    color: var(--dark);

    margin: 12px 0 20px;

}


.section-heading h2 span,
.about-content h2 span,
.why-content h2 span,
.contact-info h2 span {

    color: var(--primary);

}


.section-heading p {

    font-size: 15px;

}


/* =====================================================
   ABOUT
===================================================== */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.about-images {

    position: relative;

    min-height: 560px;

}


.about-main {

    width: 75%;

    height: 500px;

    overflow: hidden;

    border-radius: 20px;

}


.about-main img {

    height: 100%;

    object-fit: cover;

}


.about-small {

    position: absolute;

    right: 0;

    bottom: 20px;

    width: 48%;

    height: 250px;

    border: 10px solid white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow);

}


.about-small img {

    height: 100%;

    object-fit: cover;

}


.about-badge {

    position: absolute;

    left: 25px;

    bottom: 50px;

    width: 120px;

    height: 120px;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

}


.about-badge i {

    font-size: 22px;

    margin-bottom: 5px;

}


.about-badge strong {

    font-size: 15px;

}


.about-badge span {

    font-size: 10px;

}


.about-content > p {

    margin-bottom: 18px;

}


.about-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin: 25px 0 30px;

}


.about-points div {

    font-size: 13px;

    font-weight: 600;

    color: var(--dark);

}


.about-points i {

    color: var(--primary);

    margin-right: 7px;

}


.text-btn {

    color: var(--primary);

    font-weight: 700;

    font-size: 14px;

}


.text-btn i {

    margin-left: 7px;

}


/* =====================================================
   TREATMENTS
===================================================== */

.treatments {

    background: var(--light);

}


.treatment-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}


.treatment-card {

    background: white;

    padding: 30px 25px;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    transition: .35s;

}


.treatment-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.treatment-icon {

    width: 58px;

    height: 58px;

    background: #e5f6f5;

    color: var(--primary);

    border-radius: 16px;

    display: grid;

    place-items: center;

    font-size: 22px;

    margin-bottom: 22px;

}


.treatment-card h3 {

    color: var(--dark);

    font-size: 18px;

    margin-bottom: 10px;

}


.treatment-card p {

    font-size: 13px;

    margin-bottom: 20px;

}


.treatment-card a {

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

}


.treatment-card a i {

    margin-left: 5px;

}


.center-btn {

    text-align: center;

    margin-top: 45px;

}


/* =====================================================
   WHY US
===================================================== */

.why-us {

    background: #f9fcfc;

}


.why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.why-list {

    margin-top: 30px;

}


.why-item {

    display: flex;

    gap: 18px;

    margin-bottom: 25px;

}


.why-icon {

    width: 55px;

    height: 55px;

    flex-shrink: 0;

    background: white;

    color: var(--primary);

    border-radius: 15px;

    display: grid;

    place-items: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);

}


.why-item h3 {

    color: var(--dark);

    font-size: 16px;

}


.why-item p {

    font-size: 13px;

}


.why-image {

    position: relative;

}


.why-image > img {

    height: 560px;

    object-fit: cover;

    border-radius: 25px;

}


.quality-card {

    position: absolute;

    bottom: 30px;

    left: -25px;

    background: white;

    border-radius: 16px;

    padding: 18px 22px;

    display: flex;

    gap: 13px;

    align-items: center;

    box-shadow: var(--shadow);

}


.quality-card > i {

    font-size: 25px;

    color: var(--primary);

}


.quality-card strong,
.quality-card span {

    display: block;

}


.quality-card strong {

    color: var(--dark);

}


.quality-card span {

    font-size: 11px;

}


/* =====================================================
   DOCTORS
===================================================== */

.doctors {

    background: white;

}


.doctor-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    max-width: 850px;

    margin: auto;

    gap: 30px;

}


.doctor-card {

    border-radius: 25px;

    overflow: hidden;

    background: var(--light);

}


.doctor-image {

    height: 390px;

    position: relative;

    overflow: hidden;

}


.doctor-image img {

    height: 100%;

    object-fit: cover;

}


.doctor-social {

    position: absolute;

    right: 20px;

    bottom: 20px;

    display: flex;

    gap: 8px;

}


.doctor-social a {

    width: 38px;

    height: 38px;

    background: white;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: var(--primary);

}


.doctor-info {

    padding: 25px;

}


.doctor-info > span {

    color: var(--primary);

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 800;

}


.doctor-info h3 {

    color: var(--dark);

    font-family: "Playfair Display", serif;

    font-size: 26px;

    margin-top: 5px;

}


.doctor-info p {

    font-size: 13px;

}


.doctor-exp {

    margin-top: 15px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

}


/* =====================================================
   APPOINTMENT
===================================================== */
.appointment {
    background: #0b8792;
    padding: 65px 0;
}

.appointment .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.appointment-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 80px;
}


/* LEFT CONTENT */

.appointment-content {
    max-width: 600px;
}

.appointment .section-label {
    margin-bottom: 12px;
}

.appointment h2 {
    margin: 0 0 16px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 600;
}

.appointment p {
    margin: 0;
    color: #dff5f5;
    font-size: 15px;
}


/* RIGHT ACTIONS */

.appointment-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
}


/* PHONE */

.appointment-phone {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    text-decoration: none;
}

.appointment-phone > i {
    width: 52px;
    height: 52px;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;

    display: grid;
    place-items: center;

    font-size: 18px;
}

.appointment-phone span {
    display: block;
    font-size: 10px;
    color: #fff;
}

.appointment-phone strong {
    display: block;
    margin-top: 4px;

    font-size: 18px;
    color: #fff;
}


/* WHATSAPP */

.appointment .btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 16px 25px;

    background: #fff;
    color: #087f8c;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.appointment .btn-white i {
    color: #25d366;
    font-size: 17px;
}

.appointment .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .appointment-box {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .appointment-actions {
        justify-content: flex-start;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .appointment {
        padding: 50px 0;
    }

    .appointment h2 {
        font-size: 36px;
    }

    .appointment-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}
/* =====================================================
   GALLERY
===================================================== */

.gallery {

    background: white;

}


.gallery-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    grid-template-rows: 250px 250px;

    gap: 15px;

}


.gallery-item {

    overflow: hidden;

    border-radius: 18px;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}


.gallery-item:hover img {

    transform: scale(1.06);

}


.gallery-item.large {

    grid-row: span 2;

}


/* =====================================================
   REVIEWS
===================================================== */

.reviews {

    background: var(--light);

}


.review-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.review-card {

    background: white;

    padding: 30px;

    border-radius: 22px;

    border: 1px solid var(--border);

}


.stars {

    color: #e2ad3d;

    letter-spacing: 3px;

    margin-bottom: 15px;

}


.review-card > p {

    color: var(--dark);

    font-size: 14px;

    min-height: 110px;

}


.review-person {

    display: flex;

    align-items: center;

    gap: 12px;

    border-top: 1px solid var(--border);

    padding-top: 18px;

}


.review-avatar {

    width: 42px;

    height: 42px;

    background: #dff2f1;

    color: var(--primary);

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-weight: 800;

}


.review-person strong,
.review-person span {

    display: block;

}


.review-person strong {

    color: var(--dark);

    font-size: 13px;

}


.review-person span {

    font-size: 10px;

}


/* =====================================================
   CONTACT
===================================================== */

.contact {

    background: white;

}


.contact-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 50px;

    align-items: stretch;

}


.contact-details {

    margin: 30px 0;

}


.contact-item {

    display: flex;

    gap: 15px;

    align-items: flex-start;

    margin-bottom: 20px;

    font-size: 13px;

}


.contact-item > div {

    width: 45px;

    height: 45px;

    background: #e6f6f5;

    color: var(--primary);

    border-radius: 12px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

}


.contact-item a {

    padding-top: 10px;

    color: var(--dark);

    font-weight: 600;

}


.whatsapp-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 50px;

    background: #25d366;

    color: white;

    font-size: 13px;

    font-weight: 700;

}


.map {

    min-height: 480px;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: var(--shadow);

}


.map iframe {

    width: 100%;

    height: 100%;

    min-height: 480px;

    border: 0;

}



/* =====================================================
   PLATINUM SMILE - FOOTER
===================================================== */

.footer {
    width: 100%;
    background: #000000;
    color: #aeb6c0;
    padding-top: 65px;
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.footer-container {
    width: 1180px;
    max-width: 92%;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.35fr
        0.9fr
        1.15fr
        1.5fr;

    column-gap: 55px;

    padding-bottom: 55px;
}


/* =====================================================
   BRAND
===================================================== */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-block;

    width: 100px;
    height: 65px;

    text-decoration: none;
}

.footer-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

.footer-brand p {
    margin: 25px 0 0;

    max-width: 300px;

    color: #aeb6c0;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column {
    min-width: 0;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}

.footer-column > a {
    display: block;

    margin-bottom: 13px;

    color: #aeb6c0;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-column > a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* =====================================================
   FOOTER CONTACT (renamed classes so they can't collide
   with .contact-item / .contact-title used earlier in
   this file for the main #contact section)
===================================================== */

.footer-contact {
    width: 100%;
}

.footer-contact-item {
    display: block;

    width: 100%;

    margin-bottom: 22px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}


/* CONTACT TITLE ROW */

.footer-contact-title {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 8px;
}

.footer-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    flex-shrink: 0;

    border-radius: 10px;

    background: rgba(40, 124, 255, 0.12);
}

.footer-icon-box i {
    color: #287cff;

    font-size: 15px;

    line-height: 1;
}

.footer-contact-title strong {
    display: block;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;
}


/* ADDRESS */

.footer-contact-item p {
    display: block;

    margin: 0;

    color: #aeb6c0;

    font-size: 13px;

    line-height: 1.8;
}


/* PHONE / EMAIL / WHATSAPP */

.footer-contact-item a {
    display: block;

    color: #aeb6c0;

    font-size: 13px;

    line-height: 1.6;

    text-decoration: none;

    word-break: break-word;

    transition: 0.3s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    width: 100%;

    border-top: 1px solid rgba(255,255,255,0.12);

    background: #000000;
}

.footer-bottom-container {
    width: 1180px;
    max-width: 92%;

    margin: 0 auto;

    padding: 20px 0;

    color: #777777;

    font-size: 12px;
}


/* =====================================================
   FOOTER - TABLET
===================================================== */

@media (max-width: 1000px) {

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

        row-gap: 45px;

        column-gap: 40px;
    }

}


/* =====================================================
   FOOTER - MOBILE
===================================================== */

@media (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

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

        row-gap: 35px;

        padding-bottom: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom-container {
        line-height: 1.7;
    }

}
.left-social-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.social-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

/* COLORS */
.fb { background: #1877f2; }
.insta { background: #e4405f; }
.linkedin { background: #0077b5; }
.youtube { background: #ff0000; }

.call { background: #007bff; }
.whatsapp { background: #25d366; }

/* HOVER EFFECT */
.social-btn:hover {
  width: 55px;
}

/* DIVIDER */
.divider {
  height: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

  .left-social-bar {
    top: auto;
    bottom: 20px;
    left: 10px;
    transform: none;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .social-btn:hover {
    width: 45px;
  }
}
.rainbow-footer .container {
  padding: 0 !important;
}

.rainbow-footer * {
  box-sizing: border-box;
}

/* CALL BUTTON */
.social-btn.call {
    background: #007bff;
    position: relative;
    overflow: visible;
    z-index: 2;
    animation: callPulse 2s infinite;
}

/* Expanding Ring */
.social-btn.call::before,
.social-btn.call::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(0,123,255,0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
    z-index: -1;
}

.social-btn.call::after {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes callPulse {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

/* Phone Icon Shake */
.social-btn.call i {
    animation: phoneShake 2s infinite;
}

@keyframes phoneShake {
    0%,100% {
        transform: rotate(0deg);
    }
    5% {
        transform: rotate(-20deg);
    }
    10% {
        transform: rotate(20deg);
    }
    15% {
        transform: rotate(-20deg);
    }
    20% {
        transform: rotate(20deg);
    }
    25% {
        transform: rotate(0deg);
    }
}
/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1050px) {

    .nav-menu {

        gap: 15px;

    }

    .nav-btn {

        display: none;

    }

    .treatment-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media(max-width: 800px) {

    .top-bar {

        display: none;

    }


    .nav {

        min-height: 70px;

    }


    .menu-toggle {

        display: block;

    }


    .nav-menu {

        position: absolute;

        top: 70px;

        left: 0;

        right: 0;

        background: white;

        flex-direction: column;

        padding: 20px;

        box-shadow: 0 20px 30px rgba(0,0,0,.1);

        display: none;

    }


    .nav-menu.show {

        display: flex;

    }


    .hero {

        padding: 70px 0;

    }


    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .hero-image {

        height: 500px;

    }


    .hero-image img {

        height: 460px;

        width: 370px;

    }


    .hero-circle {

        width: 400px;

        height: 400px;

    }


    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .stat {

        border-bottom: 1px solid rgba(255,255,255,.1);

    }


    .about-images {

        min-height: 500px;

    }


    .doctor-grid,
    .review-grid {

        grid-template-columns: 1fr;

    }


    .appointment-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }


    .gallery-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 220px 220px 220px;

    }


    .gallery-item.large {

        grid-column: span 2;

        grid-row: span 1;

    }


    .floating-actions {

        display: none;

    }


    .mobile-bottom {

        position: fixed;

        bottom: 0;

        left: 0;

        right: 0;

        height: 65px;

        background: white;

        display: grid;

        grid-template-columns: repeat(3,1fr);

        z-index: 9999;

        box-shadow: 0 -5px 25px rgba(0,0,0,.12);

    }


    .mobile-bottom a {

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 2px;

        font-size: 10px;

        color: var(--dark);

    }


    .mobile-bottom i {

        font-size: 18px;

        color: var(--primary);

    }

}


@media(max-width: 500px) {

    .section {

        padding: 70px 0;

    }


    .logo strong {

        font-size: 16px;

    }


    .logo span {

        font-size: 7px;

    }


    .logo-icon {

        width: 42px;

        height: 42px;

    }


    .hero h1 {

        font-size: 46px;

    }


    .hero-image {

        height: 400px;

    }


    .hero-image img {

        width: 290px;

        height: 380px;

    }


    .hero-circle {

        width: 320px;

        height: 320px;

    }


    .experience-card {

        left: 0;

        bottom: 40px;

    }


    .floating-card {

        right: 0;

        top: 100px;

    }


    .stats-grid {

        grid-template-columns: 1fr;

    }


    .stat {

        border-right: 0;

    }


    .treatment-grid {

        grid-template-columns: 1fr;

    }


    .about-points {

        grid-template-columns: 1fr;

    }


    .about-images {

        min-height: 400px;

    }


    .about-main {

        height: 400px;

    }


    .about-small {

        height: 180px;

    }


    .appointment h2 {

        font-size: 38px;

    }


    .appointment-actions {

        flex-direction: column;

        align-items: flex-start;

    }


    .gallery-grid {

        display: block;

    }


    .gallery-item {

        height: 250px;

        margin-bottom: 15px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .why-image > img {

        height: 400px;

    }


    .quality-card {

        left: 10px;

    }

}
```
