/* =============================================
   DPAC Landing Page — Custom Styles
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --dpac-orange: #f23d05;
    --dpac-orange-hover: #d93504;
    --dpac-dark: #111111;
    --dpac-gray: #6b7280;
    --dpac-gray-light: #9ca3af;
    --dpac-gray-border: #e5e7eb;
    --dpac-black: #000000;
    --dpac-white: #ffffff;
    --font-primary: 'Inter', sans-serif;
    --section-py: 50px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dpac-dark);
    background: var(--dpac-white);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 90px;
}

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

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

/* ─── Typography ─── */
.section-title {
    font-size: clamp(2rem, 4vw, 60px);
    font-weight: 700;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--dpac-black);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 20px);
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--dpac-gray);
    font-weight: 400;
    margin-top: 12px;
}

/* ─── Buttons ─── */
.btn-dpac {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.btn-dpac-orange {
    background: var(--dpac-orange);
    color: var(--dpac-white);
    border-color: var(--dpac-orange);
}

.btn-dpac-orange:hover {
    background: var(--dpac-orange-hover);
    border-color: var(--dpac-orange-hover);
    color: var(--dpac-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 61, 5, 0.35);
}

.btn-dpac-outline-white {
    background: transparent;
    color: var(--dpac-white);
    border-color: var(--dpac-white);
}

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

.btn-dpac-sm {
    padding: 10px 22px;
    font-size: 0.8125rem;
}

.btn-dpac-lg {
    padding: 14px 32px;
    font-size: 0.9375rem;
}

/* ─── Navbar ─── */
.navbar-dpac {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 22px 0;
    transition: var(--transition);
}

.navbar-dpac > .container {
    position: relative;
}

.navbar-dpac.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.brand-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
}

.navbar-dpac .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dpac-white);
    letter-spacing: -0.02em;
}

.navbar-dpac .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 18px !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navbar-dpac .nav-link:hover {
    color: var(--dpac-white) !important;
}

.navbar-dpac .nav-link .chevron {
    font-size: 0.5625rem;
    opacity: 0.85;
}

.navbar-dpac .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 10px;
}

.navbar-dpac .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 992px) {
    /* Collapse fills the space between brand and buttons */
    .navbar-dpac .navbar-collapse {
        display: flex !important;
        align-items: center;
        flex-grow: 1;
    }

    /* Nav links pinned to the exact horizontal centre of the full container */
    .navbar-dpac .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 4px;
        white-space: nowrap;
    }

    /* Push action buttons to the far right */
    .navbar-dpac .nav-actions {
        margin-left: auto;
    }
}

@media (max-width: 991.98px) {
    .navbar-dpac .navbar-collapse {
        background: rgba(0, 0, 0, 0.97);
        padding: 20px;
        border-radius: 16px;
        margin-top: 12px;
    }

    .navbar-dpac .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
    }

    .navbar-dpac .nav-actions .btn-dpac {
        width: 100%;
    }
}

/* ─── Hero Section ─── */
.hero-section {
    position: relative;
    min-height: 100vh;
    margin-top: -90px;
    display: flex;
    align-items: center;
    background: url('image/hero-background.jpg') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.5) 45%,
        rgba(0, 0, 0, 0.15) 75%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 540px;
    padding: 140px 0 100px;
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.75rem, 5.5vw, 80px);
    font-weight: 700;
    color: var(--dpac-white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.0625rem;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-email-form {
    margin-bottom: 32px;
}

.hero-email-input {
    width: 100%;
    max-width: 300px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--dpac-white);
    outline: none;
    transition: var(--transition);
}

.hero-email-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.hero-email-input:focus {
    border-bottom-color: var(--dpac-orange);
}

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

@media (max-width: 767.98px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 150px 0 70px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-email-input {
        margin: 0 auto;
    }

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

/* ─── Our Mission Section ─── */
.mission-section {
    padding: var(--section-py) 0 70px;
    background: var(--dpac-white);
}

.mission-header {
    text-align: center;
    margin-bottom: 64px;
}

.mission-image {
    display: block;
    width: 100%;
    height: 660px;
    border-radius: 16px;
    object-fit: contain;
    /* background-color: #f5f5f5; */
}

.mission-features {
    position: relative;
    padding-left: 36px;
}

/* .mission-features::before { */
    /* content: '';
    position: absolute;
    left: 14px;
    top: 24px;
    bottom: 24px;
    width: 1px; */
    /* background: var(--dpac-gray-border); */
/* } */

.mission-feature {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    position: relative;
    align-items:center;
}

.mission-feature:first-child {
    padding-top: 0;
}

/* .mission-feature:first-child::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 0;
    width: 1px;
    height: 48px;
    background: var(--dpac-black);
    z-index: 1;
} */

.mission-feature:last-child {
    padding-bottom: 0;
}

.mission-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
}

.mission-feature-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.mission-feature-icon.orange {
    background: var(--dpac-orange);
    color: var(--dpac-white);
}

.mission-feature-icon.gray {
    background: var(--dpac-white);
    color: var(--dpac-dark);
    border: 1px solid var(--dpac-gray-border);
}

.mission-feature-title {
    font-size: clamp(1.125rem, 2vw, 32px);
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: var(--dpac-black);
    margin-bottom: 8px;
}

.mission-feature-text {
        font-size: clamp(0.875rem, 1.5vw, 18px);
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--dpac-gray);
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
}
@media (max-width: 991.98px) {
    .mission-image {
        height: 280px;
        margin-bottom: 40px;
    }
}

/* ─── Stats Bar ─── */
.stats-bar {
    background: var(--dpac-orange);
    border-radius: var(--radius-pill);
    padding: 44px 40px;
    margin-top: 64px;
}

.stats-item {
    text-align: center;
    padding: 8px 16px;
    position: relative;
}

.stats-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dpac-white);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-label {
    font-size: clamp(0.875rem, 1.5vw, 18px);
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
}

@media (min-width: 768px) {
    .stats-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 52px;
        width: 1px;
        background: rgba(255, 255, 255, 0.28);
    }
}

@media (max-width: 767.98px) {
    .stats-bar {
        border-radius: var(--radius-xl);
        padding: 15px 20px;
        margin-top: 40px;
    }
    .mission-feature{
        padding-right:20px;
    }
.mission-header, .mission-image, .footer-cta-row{
        margin-bottom: 25px !important;
    }
    .stats-item {
        padding: 5px 8px;
    }
}

/* ─── Get in Touch Section ─── */
.touch-section {
    padding: var(--section-py) 0;
    padding-top: 0 !important;
    background: var(--dpac-white);
}

.touch-content {
    max-width: 460px;
}

.touch-title {
    font-size: clamp(1.875rem, 3.5vw, 54px);
    font-weight: 700;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--dpac-black);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.touch-text {
    font-size: clamp(0.875rem, 1.5vw, 18px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--dpac-gray);
    line-height: 1.75;
    margin-bottom: 36px;
}

.touch-images {
    position: relative;
    /* height: 460px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.groupcallDiv{
    margin-top: 20px;
    margin-bottom: 20px;
}

.touch-img-left {
    width: 240px;
    height: 305px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: absolute;
    left: 5%;
    bottom: 0;
    z-index: 2;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.touch-img-right {
    width: 240px;
    height: 345px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: absolute;
    right: 5%;
    top: 8%;
    z-index: 1;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

.touch-phone-icon {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dpac-white);
    font-size: 1.25rem;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    transition: var(--transition);
}

.touch-phone-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.touch-phone-icon:hover {
    transform: translate(-50%, -50%) scale(1.08);
    color: var(--dpac-white);
}

.touch-contact-info {
    position: absolute;
    bottom: 8px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
    background: var(--dpac-white);
    border-radius: 14px;
    padding: 10px 16px 10px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.touch-avatars {
    display: flex;
    align-items: center;
}

.touch-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dpac-white);
    margin-left: -10px;
}

.touch-avatars img:first-child {
    margin-left: 0;
}

.touch-contact-details {
    font-size: 0.8125rem;
    color: var(--dpac-black);
    line-height: 1.6;
}

.touch-contact-details strong {
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .touch-content {
        max-width: 100%;
        margin-bottom: 48px;
    }

    .touch-images {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .touch-img-left {
        width: 180px;
        height: 250px;
        left: 0;
    }

    .touch-img-right {
        width: 200px;
        height: 270px;
        right: 0;
    }

    .touch-contact-info {
        position: relative;
        margin-top: 24px;
        justify-content: center;
    }
}

/* ─── About the Clinic Section ─── */
.about-section {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    background: url('image/aboutClience.png') center/cover no-repeat;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.about-title {
    font-size: clamp(2rem, 4vw, 54px);
    font-weight: 700;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--dpac-white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.about-text {
    font-size: clamp(1rem, 2vw, 20px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 520px;
}

.about-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .about-section {
        height: auto;
        min-height: 335px;
    }
    .about-section .container {
        padding: 0 !important;
    }
}

/* ─── Safety Section ─── */
.safety-section {
    padding: var(--section-py) 0;
    background: var(--dpac-white);
}

.safety-content {
    max-width: 500px;
}

.safety-title {
    font-size: clamp(2.25rem, 4vw, 54px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    color: var(--dpac-black);
    line-height: 1.15;
    margin-bottom: 28px;
}

.safety-text {
    font-size: clamp(0.9375rem, 1.5vw, 18px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #374151;
    line-height: 1.75;
}

.safety-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.safety-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

.safety-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.062);
    color: var(--dpac-white);
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    max-width: 200px;
    line-height: 1.45;
    backdrop-filter: blur(4px);
}

@media (max-width: 991.98px) {
    .safety-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .safety-image {
        height: 420px;
    }
}

/* ─── Testimonials Section ─── */
.testimonials-section {
    padding: var(--section-py) 0;
    padding-top: 0 !important;
    background: var(--dpac-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonial-slider-wrap {
    position: relative;
    padding: 0 0 20px;
}

.testimonial-track {
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
    min-height: 340px;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    opacity: 0.45;
    transform: scale(0.92);
    transition: var(--transition);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background: var(--dpac-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--dpac-gray-border);
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.testimonial-slide.active .testimonial-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
    border: 3px solid var(--dpac-gray-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 0.875rem;
    color: var(--dpac-gray);
    line-height: 1.75;
    margin-bottom: 20px;
}

.testimonial-divider {
    border: none;
    border-top: 1px dashed var(--dpac-gray-border);
    margin: 0 0 16px;
}

.testimonial-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dpac-black);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--dpac-gray-light);
    margin: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--dpac-gray-border);
    background: var(--dpac-white);
    color: var(--dpac-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.75rem;
}

.testimonial-nav-btn:hover {
    background: var(--dpac-orange);
    border-color: var(--dpac-orange);
    color: var(--dpac-white);
}

@media (max-width: 991.98px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 767.98px) {
    .testimonial-slide {
        flex: 0 0 85%;
        min-width: 85%;
    }

    .testimonial-slide:not(.active) {
        opacity: 0.3;
    }
}

/* ─── Footer ─── */
.footer-section {
    background: var(--dpac-black);
    color: var(--dpac-white);
    padding: 80px 0 36px;
}

.footer-cta-row {
    margin-bottom: 72px;
}

.footer-cta-title {
        font-family: 'Manrope', sans-serif;
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--dpac-white);
    margin-bottom: 36px;
    /* max-width: 520px; */

}

.lets-talk-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-pill);
    color: var(--dpac-white);
    font-size: clamp(0.875rem, 2vw, 24px);
    font-weight: 500;
    transition: var(--transition);
}

.lets-talk-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--dpac-white);
    border-color: var(--dpac-white);
}

.lets-talk-btn .arrow-circle {
    width: 36px;
    height: 36px;
    background: var(--dpac-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}

.lets-talk-btn:hover .arrow-circle {
    transform: translateX(3px);
    background: var(--dpac-orange-hover);
}

.footer-address {
    text-align: right;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}


.footer-address p {
    margin: 0;
    font-size: clamp(1.375rem, 3vw, 1.5rem);
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 2px solid #fff;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dpac-white);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-nav a {
    font-size: clamp(0.875rem, 2vw, 20px);
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-nav a:hover {
    color: var(--dpac-orange);
}

.footer-nav .chevron {
    font-size: 0.5625rem;
    opacity: 0.7;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 0 28px;
}

.footer-copyright {
    text-align: center;
    font-size: clamp(0.875rem, 2vw, 20px);
    color: #fff;
    margin: 0;
}

@media (max-width: 991.98px) {
    .footer-address {
        text-align: left;
        margin-top: 32px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}

/* ─── Contact Page ─── */

/* Treatments / patient-info: image + dark overlay navbar */
.treatments-page .navbar-dpac,
.patient-info-page .navbar-dpac {
    background:
        linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
        url('image/navbar.png') center 20% / cover no-repeat;
    padding: 14px 0;
}

/* Contact page: image + dark overlay baked directly into the navbar */
.contact-page .navbar-dpac {
    background:
        linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
        url('image/navbar.png') center 20% / cover no-repeat;
    padding: 14px 0;
}

.contact-section {
    padding: 96px 0 120px;
    background: var(--dpac-white);
}

/* Flash alerts */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.contact-alert i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.contact-alert-success i { color: #10b981; }

.contact-alert-error {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}

.contact-alert-error i { color: #f43f5e; }

/* Submit spinner */
.contact-spinner {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
    margin-left: 8px;
}

.contact-spinner-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.9;
    animation: contactDotPulse 1.2s ease-in-out infinite;
}

.contact-spinner-dot:nth-child(2) { animation-delay: 0.2s; }
.contact-spinner-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes contactDotPulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%           { transform: scale(1);   opacity: 1;   }
}

.contact-header {
    text-align: center;
    margin-bottom: 56px;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 58px);
    font-weight: 700;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--dpac-black);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: clamp(0.9375rem, 1.5vw, 18px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--dpac-gray);
    font-weight: 400;
    margin: 0;
}

.contact-form-wrap {
    max-width: 860px;
    margin: 0 auto;
}

/* ─── Form inputs ─── */
.contact-input {
    display: block;
    width: 100%;
    background: #f5f5f5;
    border: none;
    border-radius: var(--radius-pill);
    padding: 18px 24px;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    color: var(--dpac-dark);
    outline: none;
    transition: var(--transition);
    line-height: 1.5;
}

.contact-input::placeholder {
    color: #9ca3af;
}

.contact-input:focus {
    background: #ececec;
    box-shadow: 0 0 0 2.5px rgba(242, 61, 5, 0.25);
}

/* ─── Textarea ─── */
.contact-textarea {
    display: block;
    width: 100%;
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    padding: 20px 24px;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    color: var(--dpac-dark);
    outline: none;
    transition: var(--transition);
    resize: vertical;
    min-height: 185px;
    line-height: 1.6;
}

.contact-textarea::placeholder {
    color: #9ca3af;
}

.contact-textarea:focus {
    background: #ececec;
    box-shadow: 0 0 0 2.5px rgba(242, 61, 5, 0.25);
}

/* ─── Submit row ─── */
.contact-submit {
    text-align: center;
    margin-top: 44px;
}

.contact-submit .btn-dpac-orange {
    min-width: 140px;
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 25px 0 88px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-submit {
        margin-top: 32px;
    }
    .paddingMobile{
        padding: 0px 20px;
    }
   
}

/* ─── Navbar Dropdowns ─── */

/* Suppress Bootstrap's own generated caret */
.navbar-dpac .dpac-dropdown-toggle::after {
    display: none;
}

/* Desktop dropdown panel */
.dpac-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 280px;
    margin-top: 6px;
    background: var(--dpac-white);
}

.dpac-dropdown .dropdown-item {
    font-size: 0.875rem;
    font-family: var(--font-primary);
    color: #1f2937;
    padding: 10px 24px;
    font-weight: 400;
    line-height: 1.5;
    transition: var(--transition);
}

.dpac-dropdown .dropdown-item:hover,
.dpac-dropdown .dropdown-item:focus {
    background-color: #f5f5f5;
    color: var(--dpac-orange);
}

/* Mobile: dropdown items sit inside the collapsed dark nav */
@media (max-width: 991.98px) {
    .navbar-dpac .dpac-dropdown {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 4px 0 4px 16px;
        min-width: unset;
        margin-top: 0;
    }

    .navbar-dpac .dpac-dropdown .dropdown-item {
        color: rgba(255, 255, 255, 0.75);
        padding: 8px 12px;
        font-size: 0.8125rem;
    }

    .navbar-dpac .dpac-dropdown .dropdown-item:hover {
        background: transparent;
        color: var(--dpac-orange);
    }
}

/* ─── Coming Soon Page ─── */
.coming-soon-page .navbar-dpac {
    background:
        linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
        url('image/hero-background.jpg') center 20% / cover no-repeat;
    padding: 14px 0;
}

.coming-soon-main {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.coming-soon-wrap {
    max-width: 520px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--dpac-orange);
    margin-bottom: 28px;
    line-height: 1;
}

.coming-soon-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dpac-black);
    line-height: 1.15;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 1rem;
    color: var(--dpac-gray);
    line-height: 1.75;
    margin-bottom: 36px;
}

/* ─── Treatments Page ─── */
.treatments-section {
    padding: 96px 0 104px;
    background: var(--dpac-white);
}

.treatments-header {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 32px;
}

.treatments-title {
    font-size: clamp(2rem, 4.5vw, 52px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: var(--dpac-black);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0;
}

.treatments-body {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 40px;
}

.treatments-text {
    font-size: clamp(0.9375rem, 1.5vw, 18px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #374151;
    line-height: 1.85;
    margin: 0;
}

.treatments-cta {
    text-align: center;
    margin-bottom: 56px;
}

.treatments-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.treatments-hero-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.treatments-image-wrap:hover .treatments-hero-img {
    transform: scale(1.02);
}

@media (max-width: 991.98px) {
    .treatments-section {
        padding: 80px 0 88px;
    }

    .treatments-hero-img {
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    .treatments-section {
        padding: 25px 0 72px;
    }

    .treatments-hero-img {
        height: 260px;
    }

    .treatments-cta {
        margin-bottom: 44px;
    }
    .footer-nav{
        align-items: flex-start;
    }
}


.patient-info-section {
    padding: 150px 0 108px;
    background: var(--dpac-white);
}

/* ─── Heading ─── */
.patient-info-title {
    font-size: clamp(2.5rem, 5vw, 58px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    color: var(--dpac-black);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 36px;
}

/* ─── Body text ─── */
.patient-info-text {
    font-size: clamp(0.9375rem, 1.5vw, 18px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ─── Orange-diamond bullet list ─── */
.patient-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.patient-info-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: clamp(0.875rem, 1.5vw, 18px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: var(--dpac-gray);
    line-height: 1.55;
}

.patient-info-list li:last-child {
    margin-bottom: 0;
}

.patient-info-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--dpac-orange);
    font-size: 0.625rem;
    line-height: 1.9;
}

/* ─── Portrait image ─── */
.patient-info-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.patient-info-img {
    width: 100%;
    height: 800px;
    object-fit: contain;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.patient-info-image-wrap:hover .patient-info-img {
    transform: scale(1.03);
}

/* ─── CTA button spacing ─── */
.patient-info-cta {
    margin-top: 40px;
}

@media (max-width: 991.98px) {
    .patient-info-section {
        padding: 120px 0 88px;
    }

    .patient-info-img {
        height: 440px;
    }

    .patient-info-image-wrap {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .patient-info-section {
        padding: 25px 0 72px;
    }
 .touch-section, .testimonials-section {
        padding-top: 0px;
    }
    .testimonials-section{
        padding-bottom: 25px;
    }
    .mission-section{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .safety-section{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer-cta-title{
        padding-top: 25px;
    }
    .patient-info-title {
        margin-bottom: 28px;
    }

    .patient-info-img {
        height: 320px;
    }
}