@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* Brand Colors - Colorful Theme */
    --brand-main: #1D4ED8; /* Vivid Blue */
    --brand-accent: #F97316; /* Vibrant Orange */
    --ui-base-dark: #1E293B; /* Slate Dark */
    --ui-base-light: #F8FAFC; /* Slate Light */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #F97316 0%, #F59E0B 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Roboto', sans-serif;

    /* Spacing & Utilities */
    --radius-standard: 12px;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Global Reset & Base */
body {
    font-family: var(--font-text);
    color: var(--ui-base-dark);
    background-color: var(--ui-base-light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--ui-base-dark);
    line-height: 1.2;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Custom Unique Wrappers (Avoiding banned class names) */
.vitality-layout-bound {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.habit-intro-wrap {
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.habit-intro-content {
    position: relative;
    z-index: 10;
}

.bg-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.action-trigger-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
}

.action-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Navigation System */
.vital-header-bar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.desktop-menu-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu-links {
        display: flex;
    }
}

.desktop-menu-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ui-base-dark);
}

.desktop-menu-links a:hover {
    color: var(--brand-accent);
}

/* Mobile Menu */
.mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-nav-toggle {
        display: none;
    }
}

.mobile-menu-drawer {
    display: none;
    background-color: white;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
}

.mobile-menu-drawer.is-active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Structural Sections */
.info-block-split {
    padding: 5rem 0;
    background-color: white;
}

.info-grid-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .info-grid-two {
        grid-template-columns: 1fr 1fr;
    }
}

.visual-element-rounded {
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-soft);
    width: 100%;
    height: auto;
}

/* Attributes Grid */
.attributes-grid-three {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .attributes-grid-three {
        grid-template-columns: repeat(3, 1fr);
    }
}

.attribute-item-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-bottom: 4px solid var(--brand-accent);
}

.attribute-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
}

/* Steps System */
.process-flow-area {
    padding: 5rem 0;
    background-color: var(--ui-base-light);
}

.flow-step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.flow-number-indicator {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

/* Reserve Page Cards with Ordered Lists */
.approach-grid-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .approach-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

.approach-box-detail {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-soft);
}

.approach-list-ordered {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.approach-list-ordered li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.approach-list-ordered li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--brand-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.approach-list-ordered {
    counter-reset: item;
}

/* Form Styling */
.booking-form-module {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-soft);
}

.input-field-custom {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-family: var(--font-text);
}

.input-field-custom:focus {
    outline: none;
    border-color: var(--brand-main);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.checkbox-consent-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Statistics Grid */
.metrics-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
    justify-content: center;
}

.metric-data-block {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.metric-huge-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* FAQ Area */
.questions-module-wrap {
    padding: 4rem 0;
}

.qna-item-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid var(--brand-main);
}

.qna-question-text {
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

/* Utility Layouts */
.min-height-viewport {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content-flex {
    flex-grow: 1;
    padding: 4rem 0;
}

/* Footer Section */
.vital-footer-base {
    background-color: var(--ui-base-dark);
    color: white;
    padding: 4rem 0 2rem 0;
    margin-top: auto;
}

.footer-link-sub {
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-link-sub:hover {
    color: white;
}

.footer-disclaimer-box {
    background-color: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #CBD5E1;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--ui-base-dark);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
}

.cookie-flex-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cookie-flex-layout {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: var(--brand-accent);
    color: white;
}

.btn-accept:hover {
    background-color: #d946ef; /* adjusted hover */
}

.btn-decline {
    background-color: #4B5563;
    color: white;
}

.btn-decline:hover {
    background-color: #374151;
}