/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.hopelyUroWellnessAtlasBody {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111827;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Decorative Aurora Effects (using abstract DIVs since background-image URL is forbidden) */
body.hopelyUroWellnessAtlasBody::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

body.hopelyUroWellnessAtlasBody::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

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

.hopelyUroWellnessAtlasContainerSmall {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.hopelyUroWellnessAtlasHeader {
    background-color: rgba(17, 24, 39, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.hopelyUroWellnessAtlasHeaderContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hopelyUroWellnessAtlasLogo {
    font-size: 28px;
    font-weight: 800;
    color: #c4b5fd;
    letter-spacing: 1px;
}

.hopelyUroWellnessAtlasHeaderDivider {
    height: 5px;
    background: linear-gradient(90deg, #4f46e5, #00ffff);
    width: 100%;
}

.hopelyUroWellnessAtlasNav {
    position: relative;
}

.hopelyUroWellnessAtlasMenuList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.hopelyUroWellnessAtlasNavLink {
    text-decoration: none;
    color: #f8fafc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hopelyUroWellnessAtlasNavLink:hover {
    color: #00ffff;
}

.hopelyUroWellnessAtlasMenuCheckbox,
.hopelyUroWellnessAtlasMenuButton {
    display: none;
}

/* Hero Section */
.hopelyUroWellnessAtlasHero {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hopelyUroWellnessAtlasHeroContent {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.hopelyUroWellnessAtlasHeroMedia {
    flex: 1;
    position: relative;
}

.hopelyUroWellnessAtlasHeroImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    object-fit: cover;
}

.hopelyUroWellnessAtlasBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #4f46e5;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
}

.hopelyUroWellnessAtlasHeroText {
    flex: 1.2;
}

.hopelyUroWellnessAtlasHeroTitle {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(to right, #f8fafc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hopelyUroWellnessAtlasHeroDescription {
    font-size: 18px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.hopelyUroWellnessAtlasHeroBtn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hopelyUroWellnessAtlasHeroBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
    background-color: #4338ca;
}

/* Expert Section */
.hopelyUroWellnessAtlasExpert {
    padding: 100px 0;
    background-color: rgba(31, 41, 55, 0.4);
}

.hopelyUroWellnessAtlasExpertContainer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hopelyUroWellnessAtlasMainQuote {
    font-size: 28px;
    font-style: italic;
    color: #f8fafc;
    margin-bottom: 40px;
    position: relative;
    padding: 0 40px;
}

.hopelyUroWellnessAtlasMainQuote::before {
    content: '“';
    font-size: 80px;
    position: absolute;
    top: -40px;
    left: 0;
    color: #4f46e5;
    opacity: 0.5;
}

.hopelyUroWellnessAtlasExpertInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hopelyUroWellnessAtlasExpertAvatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #00ffff;
}

.hopelyUroWellnessAtlasExpertName {
    font-size: 22px;
    margin-bottom: 5px;
}

.hopelyUroWellnessAtlasExpertTitle {
    color: #c4b5fd;
    font-size: 16px;
}

/* Practice Section */
.hopelyUroWellnessAtlasPractice {
    padding: 100px 0;
}

.hopelyUroWellnessAtlasPracticeGrid {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.hopelyUroWellnessAtlasPracticeText {
    flex: 1.2;
}

.hopelyUroWellnessAtlasPracticeMedia {
    flex: 0.8;
}

.hopelyUroWellnessAtlasPracticeImg {
    width: 100%;
    border-radius: 15px;
}

.hopelyUroWellnessAtlasSectionTitle {
    font-size: 40px;
    margin-bottom: 20px;
}

.hopelyUroWellnessAtlasSectionSub {
    margin-bottom: 40px;
    font-size: 18px;
    color: #cbd5e1;
}

.hopelyUroWellnessAtlasBenefitCard {
    display: flex;
    gap: 20px;
    background-color: rgba(79, 70, 229, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 181, 253, 0.1);
    transition: transform 0.3s ease;
}

.hopelyUroWellnessAtlasBenefitCard:hover {
    transform: translateX(10px);
    background-color: rgba(79, 70, 229, 0.15);
}

.hopelyUroWellnessAtlasBenefitIcon {
    font-size: 32px;
}

.hopelyUroWellnessAtlasBenefitTitle {
    font-size: 20px;
    margin-bottom: 8px;
    color: #f8fafc;
}

.hopelyUroWellnessAtlasBenefitDesc {
    font-size: 16px;
    color: #cbd5e1;
}

/* Services Section */
.hopelyUroWellnessAtlasServices {
    padding: 100px 0;
    background-color: #0f172a;
}

.hopelyUroWellnessAtlasSectionTitleCentered {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.hopelyUroWellnessAtlasPriceGrid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.hopelyUroWellnessAtlasPriceCard {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #1e293b;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.hopelyUroWellnessAtlasPriceCard:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
}

.hopelyUroWellnessAtlasPriceCardFeatured {
    background: linear-gradient(145deg, #1e293b, #312e81);
    border: 1px solid #4f46e5;
    position: relative;
}

.hopelyUroWellnessAtlasPriceName {
    font-size: 24px;
    margin-bottom: 20px;
}

.hopelyUroWellnessAtlasPriceValue {
    font-size: 40px;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 30px;
}

.hopelyUroWellnessAtlasPriceList {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.hopelyUroWellnessAtlasPriceList li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.hopelyUroWellnessAtlasPriceList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
}

.hopelyUroWellnessAtlasPriceBtn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hopelyUroWellnessAtlasPriceBtn:hover {
    background-color: #4f46e5;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
}

/* FAQ Section */
.hopelyUroWellnessAtlasFaq {
    padding: 100px 0;
}

.hopelyUroWellnessAtlasFaqItem {
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.hopelyUroWellnessAtlasFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hopelyUroWellnessAtlasFaqSummary::-webkit-details-marker {
    display: none;
}

.hopelyUroWellnessAtlasFaqSummary::after {
    content: '+';
    font-size: 24px;
    color: #00ffff;
}

.hopelyUroWellnessAtlasFaqItem[open] .hopelyUroWellnessAtlasFaqSummary::after {
    content: '-';
}

.hopelyUroWellnessAtlasFaqContent {
    padding: 0 20px 20px 20px;
    color: #cbd5e1;
}

/* Text Sections */
.hopelyUroWellnessAtlasTextSection {
    padding: 80px 0;
}

.hopelyUroWellnessAtlasBgAlt {
    background-color: rgba(15, 23, 42, 0.8);
}

.hopelyUroWellnessAtlasTextContent p {
    margin-bottom: 25px;
    font-size: 18px;
}

.hopelyUroWellnessAtlasKeyThoughts {
    background-color: #1e293b;
    padding: 30px;
    border-left: 5px solid #00ffff;
    border-radius: 0 15px 15px 0;
    margin: 40px 0;
}

.hopelyUroWellnessAtlasKeyTitle {
    font-size: 22px;
    margin-bottom: 15px;
    color: #00ffff;
}

.hopelyUroWellnessAtlasKeyList {
    list-style: none;
}

.hopelyUroWellnessAtlasKeyList li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.hopelyUroWellnessAtlasKeyList li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4f46e5;
}

/* Target Section (Timeline) */
.hopelyUroWellnessAtlasTarget {
    padding: 100px 0;
}

.hopelyUroWellnessAtlasIntroText {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    color: #cbd5e1;
}

.hopelyUroWellnessAtlasTimeline {
    position: relative;
    padding-left: 30px;
}

.hopelyUroWellnessAtlasTimeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4f46e5, #00ffff);
}

.hopelyUroWellnessAtlasTimelineItem {
    position: relative;
    margin-bottom: 40px;
}

.hopelyUroWellnessAtlasTimelinePoint {
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
}

.hopelyUroWellnessAtlasTimelineContent h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #c4b5fd;
}

/* Form Section */
.hopelyUroWellnessAtlasForm {
    padding: 100px 0;
}

.hopelyUroWellnessAtlasFormCard {
    background-color: #1e293b;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.hopelyUroWellnessAtlasFormTitle {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
}

.hopelyUroWellnessAtlasFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.hopelyUroWellnessAtlasMainForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hopelyUroWellnessAtlasInputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hopelyUroWellnessAtlasLabel {
    font-weight: 600;
    color: #c4b5fd;
}

.hopelyUroWellnessAtlasInput,
.hopelyUroWellnessAtlasTextarea {
    padding: 15px;
    border-radius: 10px;
    background-color: #0f172a;
    border: 1px solid #334155;
    color: white;
    font-size: 16px;
}

.hopelyUroWellnessAtlasTextarea {
    height: 120px;
    resize: none;
}

.hopelyUroWellnessAtlasCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.hopelyUroWellnessAtlasCheckboxGroup a {
    color: #00ffff;
}

.hopelyUroWellnessAtlasSubmitBtn {
    padding: 18px;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.hopelyUroWellnessAtlasSubmitBtn:hover {
    background-color: #4338ca;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
}

.hopelyUroWellnessAtlasDisclaimer {
    text-align: center;
    font-size: 12px;
    margin-top: 25px;
    color: #64748b;
}

/* Footer Section */
.hopelyUroWellnessAtlasFooter {
    padding: 80px 0 40px 0;
    background-color: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.hopelyUroWellnessAtlasFooterTop {
    text-align: center;
    margin-bottom: 50px;
}

.hopelyUroWellnessAtlasFooterBrand {
    font-size: 32px;
    font-weight: 900;
    color: #4f46e5;
    margin-bottom: 15px;
}

.hopelyUroWellnessAtlasFooterBottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #64748b;
}

.hopelyUroWellnessAtlasFooterLinks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hopelyUroWellnessAtlasFooterLinks a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hopelyUroWellnessAtlasFooterLinks a:hover {
    color: #f8fafc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hopelyUroWellnessAtlasHeroContent,
    .hopelyUroWellnessAtlasPracticeGrid {
        flex-direction: column;
        text-align: center;
    }
    
    .hopelyUroWellnessAtlasHeroTitle {
        font-size: 40px;
    }

    .hopelyUroWellnessAtlasMenuList {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #111827;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }

    .hopelyUroWellnessAtlasMenuCheckbox:checked ~ .hopelyUroWellnessAtlasMenuList {
        left: 0;
    }

    .hopelyUroWellnessAtlasMenuButton {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .hopelyUroWellnessAtlasMenuButton span {
        width: 30px;
        height: 3px;
        background-color: white;
    }
}

@media (max-width: 600px) {
    .hopelyUroWellnessAtlasFormCard {
        padding: 30px 20px;
    }
    
    .hopelyUroWellnessAtlasPriceCard {
        min-width: 100%;
    }

    .hopelyUroWellnessAtlasFooterBottom {
        flex-direction: column;
        text-align: center;
    }
}