/* ======= CSS Variables ======= */
:root {
    /* Color Palette */
    --primary: #FF6B9E;       /* Soft Pink */
    --primary-dark: #E65083;
    --primary-light: #FF8FBA;
    --secondary: #40C3FF;     /* Cyan */
    --secondary-dark: #2CAFEA;
    --tertiary: #FFCA40;      /* Yellow */
    --accent: #A27BFF;        /* Soft Purple */
    --success: #4ADE80;       /* Green */
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --grad-secondary: linear-gradient(135deg, var(--secondary), #8AD6FF);
    
    /* Semantic Colors */
    --text-main: #2D3748;
    --text-muted: #718096;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-primary: 0 10px 20px rgba(255, 107, 158, 0.3);
    --shadow-float: 0 15px 35px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======= Resets & Base ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

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

ul {
    list-style: none;
}

/* ======= Utility Classes ======= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

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

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-tertiary { color: var(--tertiary); }
.text-accent { color: var(--accent); }

.white-bg { background-color: var(--bg-white); }

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--tertiary);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.6;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(64, 195, 255, 0.1);
    color: var(--secondary-dark);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    box-shadow: 0 15px 25px rgba(255, 107, 158, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid #E2E8F0;
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary-dark);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

/* ======= Navbar ======= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transform: rotate(-10deg);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1001;
    padding: 80px 30px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav .close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav nav a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
}

/* ======= Hero Section ======= */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, #FFF0F5 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
    opacity: 0.5;
}

.hero-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    left: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    right: -100px;
    opacity: 0.3;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: var(--tertiary);
    top: 20%;
    right: 20%;
    opacity: 0.4;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.1rem;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: inline-flex;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
}

.hero-stats .divider {
    width: 2px;
    height: 40px;
    background: #E2E8F0;
}

.hero-image-wrapper {
    position: relative;
}

.image-blob {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: var(--radius-blob);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    animation: blob-bounce 5s infinite alternate ease-in-out;
}

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

@keyframes blob-bounce {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translateY(0); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translateY(-15px); }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-float);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

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

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-card h4 {
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 800;
}

.floating-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-1 {
    top: 15%;
    left: -5%;
}

.card-2 {
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

.avatars {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

.avatar-more {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--tertiary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    border: 2px solid white;
    z-index: 10;
}

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

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ======= Services Section ======= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.color-blue { border-color: var(--secondary); }
.color-blue .service-icon { background: rgba(64, 195, 255, 0.1); color: var(--secondary); }

.color-pink { border-color: var(--primary); }
.color-pink .service-icon { background: rgba(255, 107, 158, 0.1); color: var(--primary); }

.color-yellow { border-color: var(--tertiary); }
.color-yellow .service-icon { background: rgba(255, 202, 64, 0.1); color: var(--tertiary); }

.color-purple { border-color: var(--accent); }
.color-purple .service-icon { background: rgba(162, 123, 255, 0.1); color: var(--accent); }

.color-green { border-color: var(--success); }
.color-green .service-icon { background: rgba(74, 222, 128, 0.1); color: var(--success); }

.color-orange { border-color: #FF8A65; }
.color-orange .service-icon { background: rgba(255, 138, 101, 0.1); color: #FF8A65; }

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
}

.color-blue .read-more { color: var(--secondary-dark); }
.color-pink .read-more { color: var(--primary-dark); }
.color-yellow .read-more { color: #D4A000; }
.color-purple .read-more { color: var(--accent); }
.color-green .read-more { color: #16A34A; }
.color-orange .read-more { color: #E64A19; }

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ======= About Section ======= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    background: #EBF8FF;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: var(--tertiary);
    color: var(--text-main);
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 6px solid white;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.experience-badge .text {
    font-weight: 800;
    font-size: 0.8rem;
    line-height: 1.2;
    margin-top: 5px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 700;
}

.doctor-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #E2E8F0;
}

.doctor-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.doctor-profile h4 {
    margin: 0 0 5px;
}

.doctor-profile p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
}

/* ======= Banner ======= */
.banner {
    background: var(--grad-secondary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ======= Appointment Section ======= */
.appointment {
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="3" fill="%23FF6B9E" opacity="0.1"/><circle cx="50" cy="60" r="4" fill="%2340C3FF" opacity="0.1"/><circle cx="80" cy="30" r="2" fill="%23FFCA40" opacity="0.1"/></svg>') repeat;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.method-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-card h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.method-card p {
    margin: 0;
    color: var(--text-muted);
}

.appointment-form-wrapper {
    padding: 40px;
}

.appointment-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

input, select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: white;
}

input:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 158, 0.2);
}

.form-message {
    margin-top: 20px;
    text-align: center;
    font-weight: 700;
    display: none;
}

.form-message.success {
    color: var(--success);
    display: block;
}

/* ======= Footer ======= */
.footer {
    background: #1E293B;
    color: white;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-col p {
    color: #94A3B8;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links a {
    color: #94A3B8;
}

.links a:hover {
    color: var(--tertiary);
    padding-left: 5px;
}

.hours ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours li {
    display: flex;
    justify-content: space-between;
    color: #94A3B8;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.closed {
    color: var(--primary);
    font-weight: 700;
}

.emergency {
    color: var(--tertiary);
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: none;
    padding: 12px 15px;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    background: #0F172A;
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94A3B8;
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: #94A3B8;
    font-size: 0.9rem;
}

.bottom-links a:hover {
    color: white;
}

.credit-link {
    text-decoration: underline !important;
    color: var(--secondary) !important;
    font-weight: 700;
}

/* ======= Responsive Design ======= */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.8rem; }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-right .btn { display: none; }
    .menu-toggle { display: block; }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-container, 
    .about-container, 
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content { order: 2; text-align: center; }
    .hero-content p { max-width: 100%; margin: 0 auto 30px; }
    .hero-actions { justify-content: center; }
    .hero-image-wrapper { order: 1; }
    
    .about-image { margin-bottom: 30px; }
    
    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .hero-stats .divider { width: 100%; height: 2px; }
    .section-title h2 { font-size: 2rem; }
}
