:root {
    --bg-main: #fdfaf6;
    /* Very soft cream */
    --accent: #ff85a1;
    /* Vibrant but soft pink */
    --accent-hover: #ff6b8b;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --card-bg: #ffffff;
    --radius: 30px;
    /* Big pill/rounded corners */
    --font-main: 'Poppins', sans-serif;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}

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



a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Header */
.header {
    padding: 20px 0;
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    height: 75px;
}

.phone-link {
    background: var(--text-dark);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
}

.phone-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.blob-1 {
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: #ffb6b9;
}

.blob-2 {
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: #a2d5f2;
    /* Soft blue contrast */
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    background: rgba(255, 133, 161, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
}

.hero-bullets div {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 133, 161, 0.4);
}

.cta-button:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 133, 161, 0.5);
}

.cta-button span {
    transition: transform 0.3s ease;
}

.cta-button:hover span {
    transform: translateX(5px);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    height: 500px;
    z-index: 1;
}

.abstract-shape {
    position: relative;
    width: 380px;
    height: 480px;
    background: linear-gradient(135deg, #ffb6b9, #ff85a1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Organic shape */
    box-shadow: 0 20px 40px rgba(255, 133, 161, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Meet the Doctor */
.meet-doctor {
    padding: 120px 0;
}

.doctor-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    background: var(--card-bg);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.doctor-image-container {
    position: relative;
    flex: 1;
}

.doctor-img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--text-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
}

.doctor-info {
    flex: 1;
}

.doctor-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.doctor-info .lead-text {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Welcome Office Carousel */
.welcome-office {
    padding: 100px 0;
    background: var(--card-bg);
    margin: 40px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.welcome-office .section-header {
    margin-bottom: 50px;
}

.team-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.team-track-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.team-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

.team-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.team-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.carousel-control {
    background: var(--bg-main);
    border: none;
    color: var(--accent);
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.team-prev {
    position: absolute;
    left: -25px;
}

.team-next {
    position: absolute;
    right: -25px;
}

@media (max-width: 768px) {
    .team-slide {
        flex: 0 0 100%;
    }

    .team-prev {
        left: 10px;
    }

    .team-next {
        right: 10px;
    }
}

/* Video */
.video-section {
    padding: 50px 0;
}

.video-frame {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-bottom: 56.25%;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Results */
.results {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.gallery-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* Increased gap to accommodate peaking images */
    align-items: center;
}

.before-after-card {
    position: relative;
    height: 400px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 20px;
}

.image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.badge-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.after-layer {
    z-index: 1;
    transform: translate(20px, 20px) rotate(3deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.before-layer {
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.before-after-card:hover .after-layer {
    transform: translate(0, 0) rotate(0deg);
}

.before-after-card:hover .before-layer {
    opacity: 0;
}

.offset-card {
    transform: translateY(-40px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offset-card:hover {
    transform: translateY(-40px);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #fff;
    border-radius: 50px;
    margin: 0 20px;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-inner h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.accordion-item {
    background: var(--bg-main);
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.accordion-item.active {
    border-color: rgba(255, 133, 161, 0.3);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    background: var(--card-bg);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--accent);
    font-weight: 800;
}

.accordion-item.active .icon {
    background: var(--accent);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding: 0 30px 30px;
    text-align: left;
    color: var(--text-light);
}

/* Form Section */
.form-section {
    padding: 120px 0;
}

.form-card {
    display: flex;
    background: var(--card-bg);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.form-content {
    flex: 1;
    background: var(--text-dark);
    color: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.form-content p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.form-area {
    flex: 1.2;
    padding: 80px 60px;
}

.trendy-form .form-group {
    margin-bottom: 25px;
}

.trendy-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.trendy-form input[type="text"],
.trendy-form input[type="tel"],
.trendy-form input[type="email"],
.trendy-form select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-main);
    border: 2px solid transparent;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.trendy-form input:focus,
.trendy-form select:focus {
    outline: none;
    border-color: rgba(255, 133, 161, 0.5);
    background: white;
    box-shadow: 0 5px 15px rgba(255, 133, 161, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-container input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.trendy-form .submit-button {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
    padding: 40px 0;
}

.emoji-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .doctor-wrapper,
    .form-card {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .gallery-carousel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offset-card {
        transform: none;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        border-radius: 20px;
    }

    .form-card {
        border-radius: 30px;
    }

    .form-area,
    .form-content,
    .doctor-wrapper {
        padding: 40px 20px;
    }
}