/* Visual Preset: aqua-minimal */
/* Palette: #0f172a (Dark), #22d3ee (Cyan), #a7f3d0 (Mint), #e2e8f0 (Text/Grey) */

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

html {
    scroll-behavior: smooth;
}

body.UrbanMainBodyWrapper {
    background-color: #0f172a;
    color: #e2e8f0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

/* Header Styles */
.UrbanHeaderGlobalContainer {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.UrbanHeaderInnerFlexbox {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.UrbanLogoTextOnly {
    font-size: 1.8rem;
    font-weight: 800;
    color: #22d3ee;
    letter-spacing: -1px;
}

.UrbanHeaderBottomBorderDivider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
}

/* Navigation */
.UrbanNavigationListItems {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.UrbanNavLinkItem {
    text-decoration: none;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.UrbanNavLinkItem:hover {
    color: #22d3ee;
}

.UrbanNavLinkBtn {
    text-decoration: none;
    background-color: #22d3ee;
    color: #0f172a;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.UrbanNavLinkBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.4);
}

/* Mobile Nav Toggle */
.UrbanMobileNavToggleCheckbox {
    display: none;
}

.UrbanBurgerMenuIcon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.UrbanBurgerMenuIcon span {
    width: 25px;
    height: 2px;
    background-color: #22d3ee;
    transition: 0.3s;
}

/* Hero Section */
.UrbanHeroSectionGlobal {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.UrbanHeroContentLayout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.UrbanHeroTextSideWrapper {
    flex: 1.2;
}

.UrbanHeroImageSideWrapper {
    flex: 0.8;
}

.UrbanHeroMainHeadline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.UrbanHeroLeadParagraph {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.UrbanHeroSubParagraph {
    margin-bottom: 2.5rem;
}

.UrbanHeroPrimaryButton {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #22d3ee;
    color: #0f172a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
}

.UrbanHeroPrimaryButton:hover {
    background-color: #a7f3d0;
    transform: scale(1.02);
}

.UrbanHeroHorizontalCardsGrid {
    display: flex;
    gap: 1.5rem;
    margin-top: 4rem;
}

.UrbanHeroMiniCardItem {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
}

.UrbanHeroMiniCardIcon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.UrbanHeroMiniCardText {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e2e8f0;
}

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

/* Regular Practice Section */
.UrbanRegularPracticeSection {
    background-color: rgba(167, 243, 208, 0.02);
    padding: 6rem 2rem;
}

.UrbanRegularPracticeContentGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.UrbanRegularPracticeTextPart {
    flex: 1;
}

.UrbanRegularPracticeImagePart {
    flex: 1;
}

.UrbanPracticeHeadlineTitle {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.UrbanPracticeBenefitsList {
    list-style: none;
    margin: 2rem 0;
}

.UrbanPracticeBenefitItem {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.UrbanPracticeBenefitItem::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #a7f3d0;
    font-weight: bold;
}

.UrbanPracticeInfoPanelAction {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(34, 211, 238, 0.05);
    border-left: 4px solid #22d3ee;
    border-radius: 0 8px 8px 0;
}

.UrbanPracticeVisualImage {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Target Audience Section */
.UrbanTargetAudienceSection {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.UrbanAudienceSectionTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.UrbanAudienceIntroParagraph {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: #94a3b8;
}

.UrbanAudienceVerticalListItems {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.UrbanAudienceListItemCard {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(226, 232, 240, 0.03);
    border-radius: 12px;
    transition: background 0.3s;
}

.UrbanAudienceListItemCard:hover {
    background: rgba(226, 232, 240, 0.07);
}

.UrbanAudienceCheckmark {
    width: 40px;
    height: 40px;
    background-color: #a7f3d0;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Expert Quote Section */
.UrbanExpertQuoteSection {
    padding: 6rem 2rem;
    background: radial-gradient(circle at center, #1e293b, #0f172a);
}

.UrbanExpertQuoteMainCard {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(167, 243, 208, 0.1));
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.UrbanExpertQuoteIconBox {
    font-size: 6rem;
    color: rgba(34, 211, 238, 0.2);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 40px;
}

.UrbanExpertQuoteTextContent {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.UrbanExpertQuoteAuthorSignature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.UrbanExpertAuthorName {
    font-size: 1.2rem;
    font-weight: 700;
    color: #22d3ee;
}

.UrbanExpertAuthorTitle {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* FAQ Section */
.UrbanFaqGlobalSection {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.UrbanFaqMainTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.UrbanFaqSubtext {
    text-align: center;
    margin-bottom: 4rem;
    color: #94a3b8;
}

.UrbanFaqAccordionWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.UrbanFaqDetailsItem {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
}

.UrbanFaqSummaryTitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22d3ee;
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.UrbanFaqSummaryTitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #22d3ee;
}

.UrbanFaqAnswerContent {
    margin-top: 1rem;
    padding-left: 20px;
    color: #e2e8f0;
}

/* Additional Text Sections */
.UrbanAdditionalTextSectionOne, .UrbanAdditionalTextSectionThree {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.UrbanAddSectionOneTitle, .UrbanAddSectionTwoTitle, .UrbanAddSectionThreeTitle {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.UrbanAddSectionOneGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.UrbanAddTextCardItem {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 15px;
    border-bottom: 4px solid #a7f3d0;
}

.UrbanAddCardTitle {
    margin-bottom: 1rem;
    color: #a7f3d0;
}

.UrbanAddSectionOneDetailedText {
    column-count: 2;
    column-gap: 3rem;
    color: #94a3b8;
}

.UrbanAdditionalTextSectionTwo {
    background-color: #1e293b;
    padding: 6rem 2rem;
}

.UrbanAddSectionTwoContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.UrbanAddSectionTwoFlexbox {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.UrbanAddSectionTwoTextWrapper {
    flex: 1.2;
}

.UrbanAddSectionTwoImageWrapper {
    flex: 0.8;
}

.UrbanAddSectionTwoList {
    margin: 2rem 0;
    list-style: none;
}

.UrbanAddSectionTwoList li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

.UrbanAddSectionTwoList li::before {
    content: "● ";
    color: #22d3ee;
    margin-right: 10px;
}

.UrbanAddSectionTwoVisualImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.UrbanAddSectionThreeCardsWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.UrbanAddThreeCard {
    background: rgba(34, 211, 238, 0.03);
    padding: 2rem;
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 12px;
}

.UrbanAddThreeCardHeader {
    color: #22d3ee;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Services Section */
.UrbanServicesPackagesSection {
    padding: 6rem 2rem;
    background: #0f172a;
}

.UrbanServicesHeaderContainer {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.UrbanServicesMainTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.UrbanServicesPackagesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.UrbanServicePackageCardItem {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.1);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.UrbanPackageCardFeatured {
    border: 2px solid #22d3ee;
    transform: translateY(-10px);
    background: rgba(34, 211, 238, 0.02);
}

.UrbanServiceIconHeader {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.UrbanServiceNameTitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.UrbanServicePriceTag {
    font-size: 2rem;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 2rem;
}

.UrbanServiceFeaturesList {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    width: 100%;
}

.UrbanServiceFeaturesList li {
    margin-bottom: 0.8rem;
    color: #94a3b8;
    position: relative;
    padding-left: 1.5rem;
}

.UrbanServiceFeaturesList li::before {
    content: "+";
    color: #a7f3d0;
    position: absolute;
    left: 0;
}

.UrbanServiceSelectButton {
    text-decoration: none;
    background: #22d3ee;
    color: #0f172a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    transition: background 0.3s;
}

.UrbanServiceSelectButton:hover {
    background: #a7f3d0;
}

/* Feedback Form Section */
.UrbanFeedbackFormSection {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.UrbanFormGlobalContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    background: #1e293b;
    padding: 4rem;
    border-radius: 30px;
}

.UrbanFormSectionTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.UrbanFormSectionSubtitle {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.UrbanFormMedicinalDisclaimer {
    font-size: 0.85rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    color: #a7f3d0;
}

.UrbanFormInputField, .UrbanFormTextareaField {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 8px;
    color: #fff;
    margin-top: 0.5rem;
}

.UrbanFormInputField:focus, .UrbanFormTextareaField:focus {
    outline: none;
    border-color: #22d3ee;
}

.UrbanFormGroupItem {
    margin-bottom: 1.5rem;
}

.UrbanFormCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.UrbanFormCheckboxLabel {
    font-size: 0.85rem;
    color: #94a3b8;
}

.UrbanFormInlineLink {
    color: #22d3ee;
}

.UrbanFormSubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background-color: #22d3ee;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.UrbanFormSubmitBtn:hover {
    background-color: #a7f3d0;
}

/* Footer Styles */
.UrbanFooterGlobalContainer {
    background-color: #020617;
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 6rem;
}

.UrbanFooterInnerLayout {
    max-width: 1200px;
    margin: 0 auto;
}

.UrbanFooterTopRow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.UrbanFooterLogoName {
    font-size: 1.5rem;
    font-weight: 800;
    color: #22d3ee;
    display: block;
    margin-bottom: 1rem;
}

.UrbanFooterBrandBio {
    max-width: 300px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.UrbanFooterContactLabel {
    font-weight: 700;
    margin-bottom: 1rem;
}

.UrbanFooterContactLink {
    color: #e2e8f0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.UrbanFooterMiddleBorder {
    max-width: 1200px;
    margin: 3rem auto;
    height: 1px;
    background: rgba(226, 232, 240, 0.05);
}

.UrbanFooterBottomRow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.UrbanFooterCopyright {
    font-size: 0.85rem;
    color: #64748b;
}

.UrbanFooterLegalLinks {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.UrbanFooterLegalLink {
    text-decoration: none;
    font-size: 0.85rem;
    color: #64748b;
    transition: color 0.3s;
}

.UrbanFooterLegalLink:hover {
    color: #22d3ee;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .UrbanHeroContentLayout, .UrbanRegularPracticeContentGrid, .UrbanFormGlobalContainer, .UrbanAddSectionTwoFlexbox {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .UrbanHeroTextSideWrapper, .UrbanHeroImageSideWrapper {
        width: 100%;
    }

    .UrbanHeroMainHeadline {
        font-size: 2.5rem;
    }

    .UrbanAddSectionOneDetailedText {
        column-count: 1;
    }

    .UrbanBurgerMenuIcon {
        display: flex;
    }

    .UrbanNavigationMenuContainer {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        padding: 2rem;
        border-bottom: 1px solid #22d3ee;
    }

    .UrbanMobileNavToggleCheckbox:checked ~ .UrbanNavigationMenuContainer {
        display: block;
    }

    .UrbanNavigationListItems {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .UrbanHeroHorizontalCardsGrid {
        flex-direction: column;
    }
    
    .UrbanHeroMainHeadline {
        font-size: 2rem;
    }

    .UrbanExpertQuoteMainCard {
        padding: 2rem;
    }

    .UrbanExpertQuoteTextContent {
        font-size: 1.1rem;
    }
}