/* ===========================
   CSS Custom Properties
   =========================== */
:root {
    --primary-teal: #00B5A6;
    --primary-teal-dark: #009B8D;
    --dark-navy: #1D3557;
    --light-teal-bg: #E1F5EE;
    --white: #FFFFFF;
    --text-gray: #4A5568;
    --text-light: #718096;
    --border-light: #E2E8F0;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --radius-card: 12px;
    --radius-btn: 50px;
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-navbar: 0 2px 12px rgba(0, 0, 0, 0.08);
    --transition: 0.3s ease;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-navy);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--dark-navy);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-teal);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    border: 2px solid var(--primary-teal);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-teal-dark);
    border-color: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 181, 166, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-navy);
    transform: translateY(-2px);
}

.btn-outline-teal {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary-teal);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    border: 2px solid var(--primary-teal);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-outline-teal:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ===========================
   Animations
   =========================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-navbar);
    padding: 0.6rem 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 70px;
    width: auto;
    transition: all var(--transition);
}

.teal-hero .logo-img,
.navy-hero .logo-img {
    filter: brightness(0) invert(1);
}

.teal-hero .navbar.scrolled .logo-img,
.navy-hero .navbar.scrolled .logo-img {
    filter: none;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition);
}

.scrolled .nav-links a {
    color: var(--text-gray);
}

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-teal);
    border-radius: 2px;
}

.teal-hero .nav-links a.active::after,
.teal-hero .scrolled .nav-links a.active::after {
    background: var(--dark-navy);
}

.teal-hero .scrolled .nav-links a:hover,
.teal-hero .scrolled .nav-links a.active {
    color: var(--dark-navy);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.teal-hero .nav-cta {
    background: var(--dark-navy);
    border-color: var(--dark-navy);
}

.teal-hero .nav-cta:hover {
    background: var(--dark-navy-light, #2a4a7f);
    border-color: var(--dark-navy-light, #2a4a7f);
}

.scrolled .nav-cta {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

.scrolled .nav-cta:hover {
    background: var(--primary-teal-dark);
    border-color: var(--primary-teal-dark);
}

.nav-cta-active {
    background: var(--primary-teal-dark);
    border-color: var(--primary-teal-dark);
    box-shadow: 0 0 0 3px rgba(0, 181, 166, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.scrolled .hamburger span {
    background: var(--dark-navy);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--dark-navy);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: var(--primary-teal);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 10% 100%);
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 40%;
    height: 80%;
    background: var(--primary-teal);
    clip-path: polygon(50% 0%, 100% 30%, 80% 100%, 0% 70%);
    opacity: 0.06;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--primary-teal);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 480px;
}

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

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-tooth-svg {
    width: 100%;
    max-width: 520px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===========================
   Page Hero (inner pages)
   =========================== */
.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero.teal {
    background: var(--primary-teal);
}

.page-hero.navy {
    background: var(--dark-navy);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 10% 100%);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

.page-hero .hero-icon {
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   Why Choose Us
   =========================== */
.why-us {
    background: var(--light-teal-bg);
    padding: 5rem 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

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

.why-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--light-teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary-teal);
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Services Preview
   =========================== */
.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-teal);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--light-teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-teal);
}

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

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card .learn-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-teal);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-card .learn-more:hover {
    gap: 0.6rem;
}

.services-section .btn-center {
    text-align: center;
}

/* ===========================
   Meet Our Doctors (Homepage)
   =========================== */
.doctors-section {
    background: var(--dark-navy);
    padding: 5rem 0;
}

.doctors-section .section-title {
    color: var(--white);
}

.doctors-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.doctor-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.doctor-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.doctor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    overflow: hidden;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.doctor-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.doctor-card .doctor-role {
    color: var(--primary-teal);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.doctor-card p:last-child {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

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

.testimonial-stars {
    color: #F6AD55;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-navy);
    font-size: 0.95rem;
}

/* ===========================
   CTA Banner
   =========================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

/* ===========================
   Services Page
   =========================== */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 4rem 0;
}

.service-page-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.service-page-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-teal);
}

.service-page-card .service-card-icon {
    flex-shrink: 0;
}

.service-page-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

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

.service-page-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-page-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ===========================
   Individual Service Page
   =========================== */
.service-image-banner {
    background: var(--light-teal-bg);
    padding: 2rem 0;
    text-align: center;
}

.service-banner-img {
    width: 100%;
    max-width: 700px;
    max-height: 350px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: var(--radius-card);
}

.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.service-main h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-main h2:not(:first-child) {
    margin-top: 2.5rem;
}

.service-main p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-when-list {
    margin: 1rem 0 2rem;
}

.service-when-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.service-when-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-teal);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.step-card {
    background: var(--light-teal-bg);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Benefits */
.benefits-list {
    margin: 1rem 0 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

/* FAQ */
.faq-list {
    margin: 1.5rem 0;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary-teal);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question::after {
    content: '−';
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.25rem 1rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.sidebar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sidebar-card .btn-primary,
.sidebar-card .btn-whatsapp {
    width: 100%;
    margin-bottom: 0.75rem;
    justify-content: center;
}

.sidebar-card .sidebar-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-navy);
    border: 2px solid var(--dark-navy);
    border-radius: var(--radius-btn);
    transition: all var(--transition);
}

.sidebar-card .sidebar-phone:hover {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

/* ===========================
   About Page
   =========================== */
.about-section {
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

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

.value-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--light-teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary-teal);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.digital-section {
    background: var(--light-teal-bg);
    border-radius: var(--radius-card);
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.digital-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.digital-section p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Team Page
   =========================== */
.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

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

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
}

.team-card .team-role {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.team-card .team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================
   Booking & Contact Pages
   =========================== */
.form-section {
    padding: 4rem 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-navy);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-gray);
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 181, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .input-error {
    border-color: #E53E3E;
}

.field-error {
    display: block;
    color: #E53E3E;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.form-radio-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 400;
    cursor: pointer;
}

.form-radio-group input[type="radio"] {
    width: auto;
    accent-color: var(--primary-teal);
}

/* Info card (sidebar on booking/contact) */
.info-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.info-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    align-items: flex-start;
}

.info-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary-teal);
}

.info-item a {
    color: var(--primary-teal);
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.info-hours h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.info-hours p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.map-embed {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

/* Success message */
.success-banner {
    background: #C6F6D5;
    color: #22543D;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===========================
   Blog Listing
   =========================== */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

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

.blog-card-image {
    display: block;
    height: 220px;
    overflow: hidden;
    background: var(--light-teal-bg);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-category {
    background: var(--light-teal-bg);
    color: var(--primary-teal);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-card-body h2 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-card-body h2 a {
    color: var(--dark-navy);
}

.blog-card-body h2 a:hover {
    color: var(--primary-teal);
}

.blog-card-body > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.blog-author {
    font-size: 0.8rem;
    color: var(--text-light);
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-teal);
}

.read-more:hover {
    text-decoration: underline;
}

/* ===========================
   Blog Post
   =========================== */
.blog-post-hero {
    background: var(--dark-navy);
    padding: 8rem 0 3rem;
}

.blog-post-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.back-to-blog {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.back-to-blog:hover {
    color: var(--white);
}

.blog-post-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    max-width: 750px;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.blog-post-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.blog-featured-image {
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-content-section {
    padding: 3rem 0 4rem;
}

.blog-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-navy);
}

.blog-content p {
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.blog-content a {
    color: var(--primary-teal);
    font-weight: 500;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-sidebar .sidebar-card {
    margin-bottom: 1.5rem;
}

.blog-sidebar .sidebar-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.related-post-link {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.related-post-link:last-child {
    border-bottom: none;
}

.related-post-link img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-post-link strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-navy);
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.related-post-link span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.related-post-link:hover strong {
    color: var(--primary-teal);
}

/* ===========================
   Calendar Picker
   =========================== */
.calendar-picker {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 1.25rem;
    user-select: none;
    transition: border-color var(--transition);
}

.calendar-picker:focus-within {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 181, 166, 0.1);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-month-year {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-navy);
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--light-teal-bg);
    color: var(--primary-teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.calendar-nav:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.5rem;
}

.calendar-weekdays span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    background: none;
    font-family: var(--font-body);
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: var(--light-teal-bg);
    color: var(--primary-teal);
}

.calendar-day.today:not(.selected) {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    font-weight: 700;
}

.calendar-day.selected {
    background: var(--primary-teal);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 181, 166, 0.3);
}

.calendar-day.disabled {
    color: #B0BEC5;
    cursor: default;
}

.calendar-day.sunday {
    color: #E57373;
}

.calendar-day.sunday.disabled {
    color: #E0A0A0;
    text-decoration: line-through;
    text-decoration-color: #E8BFBF;
}

.calendar-day.past {
    color: #CBD5E0;
    text-decoration: line-through;
    text-decoration-color: #D4DBE4;
}

.calendar-day.fully-booked {
    color: #CBD5E0;
    background: #FEE2E2;
    text-decoration: line-through;
    text-decoration-color: #FCA5A5;
}

.calendar-day.has-bookings {
    position: relative;
}

.calendar-day.has-bookings::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #EAB308;
}

.calendar-day.selected.has-bookings::after {
    background: rgba(255,255,255,0.7);
}

.calendar-day.other-month {
    color: #D4DBE4;
}

.calendar-selected {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.calendar-selected.has-date {
    color: var(--primary-teal);
    font-weight: 600;
}

/* ===========================
   Time Slot Picker
   =========================== */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.5rem;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-gray);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.time-slot svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.time-slot:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    background: var(--light-teal-bg);
}

.time-slot:hover svg {
    opacity: 1;
}

.time-slot.selected {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 181, 166, 0.25);
}

.time-slot.selected svg {
    opacity: 1;
}

.time-slot.booked {
    background: #FEE2E2;
    border-color: #FCA5A5;
    color: #991B1B;
    text-decoration: line-through;
    opacity: 0.6;
}

.time-slot.booked svg {
    opacity: 0.4;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-navy);
    padding: 4rem 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-teal);
}

.footer-contact li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-teal);
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark-navy);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===========================
   Opening Hours Section
   =========================== */
.opening-hours-section {
    padding: 4rem 0;
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hours-card {
    background: var(--light-teal-bg);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.hours-card-icon {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.hours-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.hours-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal);
}

.hours-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   Birthday Promo Section
   =========================== */
.promo-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--light-teal-bg) 0%, #f0faf7 100%);
}

.promo-banner {
    background: var(--white);
    border: 2px solid var(--primary-teal);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.promo-banner h2 {
    font-family: var(--font-heading);
    color: var(--dark-navy);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.promo-banner p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-badge {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
