/* NextLevelCoach Origin CSS - Architecture */
/* Custom CSS Variable System */
:root {
    --ocean-blue: #7209b7;
    --lavender-mist: #f3e5f9;
    --midnight-purple: #4c0677;
    --forest-green: #2d8659;
    --sage-light: #e8f5f0;
    --sunset-orange: #ff6b35;
    --coral-light: #ffe8e1;
    --golden-amber: #f4b942;
    --amber-light: #fef7e6;
    --slate-gray: #64748b;
    --pearl-white: #f8fafc;
    --charcoal-black: #1e293b;
    --success-emerald: #10b981;
    --warning-crimson: #ef4444;
    --info-azure: #3b82f6;
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--charcoal-black);
    font-weight: 400;
    overflow-x: hidden;
}

/* Container System */
.containerWrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 23px;
}

.contentRow {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.alignCenter {
    align-items: center;
}

.textCenter {
    text-align: center;
}

.fullWidth {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 12px;
}

.imageColumn {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 12px;
}

.contentColumn {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 12px;
}

.textColumn {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 12px;
}

.servicesColumn {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 12px;
}

.spacerColumn {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.testimonialsColumn {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 12px;
}

.pricingColumn {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 12px;
    margin-bottom: 42px;
}

.mapColumn {
    flex: 0 0 50%;
    max-width: 50%;
}

.formColumn {
    flex: 0 0 50%;
    max-width: 50%;
}

.footerColumn {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 12px;
}

.newsletterColumn {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    margin-left: 8.333333%;
}

.galleryColumn {
    flex: 0 0 25%;
    max-width: 25%;
    margin-left: 8.333333%;
}

.copyrightColumn {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 12px;
}

.linksColumn {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 12px;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 21px;
    color: var(--charcoal-black);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
}

p {
    margin-bottom: 18px;
    color: var(--slate-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Header & Navigation */
.primaryHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(124, 9, 183, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navigationPanel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brandIdentity {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 13px;
}

.logoImage {
    height: 47px;
    width: auto;
}

.companyName {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.menuToggle {
    display: none;
}

.toggleLabel {
    display: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1001;
}

.burgerIcon {
    width: 30px;
    height: 3px;
    background: var(--ocean-blue);
    position: relative;
    transition: all 0.4s ease;
}

.burgerIcon:before,
.burgerIcon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--ocean-blue);
    transition: all 0.4s ease;
}

.burgerIcon:before {
    top: -9px;
}

.burgerIcon:after {
    top: 9px;
}

.navigationWrapper {
    display: flex;
    align-items: center;
}

.menuItems {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.navElement {
    position: relative;
}

.navAnchor {
    color: var(--charcoal-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 12px 0;
    position: relative;
    transition: color 0.3s ease;
}

.navAnchor:hover {
    color: var(--ocean-blue);
}

.navAnchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.navAnchor:hover::after {
    width: 100%;
}

/* Hero Section */
.heroContainer {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, var(--lavender-mist) 0%, var(--pearl-white) 100%);
    position: relative;
    overflow: hidden;
}

.heroContainer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(124, 9, 183, 0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.heroContent {
    position: relative;
    z-index: 2;
}

.primaryHeading h1 {
    font-size: 4.2rem;
    line-height: 1.15;
    margin-bottom: 42px;
    font-weight: 800;
    color: var(--midnight-purple);
    max-width: 890px;
}

.subHeading {
    font-size: 2.1rem;
    margin-bottom: 28px;
    color: var(--ocean-blue);
    font-weight: 600;
}

.welcomeSection p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.85;
    max-width: 720px;
}

.heroActions {
    margin-top: 47px;
    display: flex;
    gap: 23px;
    align-items: center;
}

/* Button System */
.primaryButton {
    display: inline-block;
    background: var(--ocean-blue);
    color: white;
    padding: 17px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--ocean-blue);
    position: relative;
    overflow: hidden;
}

.primaryButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.primaryButton:hover::before {
    left: 100%;
}

.primaryButton:hover {
    background: var(--midnight-purple);
    border-color: var(--midnight-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 9, 183, 0.3);
}

.secondaryButton {
    display: inline-block;
    background: transparent;
    color: var(--ocean-blue);
    padding: 17px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--ocean-blue);
    transition: all 0.3s ease;
}

.secondaryButton:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 9, 183, 0.2);
}

.compactButton {
    padding: 12px 24px;
    font-size: 0.95rem;
}

.paddingVertical {
    padding: 17px 34px;
}

/* About Section */
.aboutContainer {
    padding: 140px 0;
    background: white;
}

.aboutImages {
    position: relative;
}

.primaryImage img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.secondaryImage {
    position: absolute;
    right: -30px;
    bottom: -60px;
    width: 45%;
}

.secondaryImage img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.aboutContent {
    padding-left: 47px;
}

.sectionHeader span {
    color: var(--golden-amber);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 18px;
    display: block;
}

.sectionHeader h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--midnight-purple);
    text-transform: capitalize;
    line-height: 1.2;
}

.boxedButton {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid var(--sunset-orange);
    text-align: center;
    color: var(--sunset-orange);
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.4s ease;
    border-radius: 50px;
    padding: 18px 38px;
    cursor: pointer;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.boxedButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sunset-orange);
    transition: left 0.4s ease;
    z-index: -1;
}

.boxedButton:hover::before {
    left: 0;
}

.boxedButton:hover {
    color: white;
}

/* Features Section */
.featuresArea {
    padding: 120px 0;
}

.backgroundLight {
    background: var(--pearl-white);
}

.headerSection {
    margin-bottom: 67px;
}

.subheader {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 13px;
    color: var(--ocean-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.headerSection h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--midnight-purple);
}

.featuresCarousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 23px;
}

.featureItem {
    flex: 0 0 380px;
    max-width: 380px;
}

.featureWrapper {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.featureWrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.featureImage {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.featureText {
    padding: 28px;
}

.featureText h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.featureText h2 a {
    color: var(--charcoal-black);
    text-decoration: none;
}

.featureDetails {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 23px;
}

.category {
    font-weight: 500;
    color: var(--slate-gray);
    font-size: 0.9rem;
}

.price {
    color: var(--ocean-blue);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--slate-gray);
}

.featureActions {
    display: flex;
    gap: 12px;
    margin: 0;
}

.featureActions a {
    flex: 1;
    text-align: center;
}

/* Content Info Section */
.contentInfoArea {
    padding: 120px 0;
    background: white;
}

.infoText {
    padding-right: 42px;
}

.mainContent {
    padding-top: 38px;
}

.contentItem {
    margin-bottom: 42px;
}

.contentItem h3 {
    font-size: 1.5rem;
    color: var(--charcoal-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.contentItem p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate-gray);
}

.infoImage img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Services & Testimonials Section */
.testimonialsContainer {
    padding: 120px 0;
    background: var(--pearl-white);
}

.headingSection {
    margin-bottom: 47px;
}

.subheading {
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 8px;
    color: var(--ocean-blue);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.headingSection h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--midnight-purple);
    margin-bottom: 18px;
}

.headingSection p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-gray);
}

.serviceItem {
    margin-bottom: 38px;
    padding: 23px;
    background: white;
    border-radius: 11px;
    transition: all 0.3s ease;
}

.serviceItem:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.flexDisplay {
    display: flex;
}

.alignItems {
    align-items: center;
}

.alignCenter {
    align-items: center;
}

.justifyCenter {
    justify-content: center;
}

.iconContainer {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--lavender-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 23px;
    transition: all 0.3s ease;
}

.serviceIcon {
    width: 32px;
    height: 32px;
    filter: invert(19%) sepia(98%) saturate(2534%) hue-rotate(259deg) brightness(69%) contrast(98%);
}

.textContent {
    flex: 1;
}

.textContent h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--charcoal-black);
}

.textContent p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-gray);
    margin: 0;
}

.testimonialsCarousel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.testimonialWrapper {
    display: flex;
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonialWrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.testimonialText {
    flex: 1;
    position: relative;
}

.paddingMedium {
    padding: 28px;
}

.quoteIcon {
    position: absolute;
    top: -25px;
    left: 28px;
    width: 50px;
    height: 50px;
    background: var(--golden-amber);
    border-radius: 50%;
}

.quoteImage {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.testimonialText p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate-gray);
    margin-bottom: 18px;
}

.clientName {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--charcoal-black);
}

.clientPosition {
    font-size: 0.95rem;
    color: var(--golden-amber);
    font-weight: 500;
}

.clientImage {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    margin: 23px;
    border-radius: 8px;
}

/* Pricing Section */
.pricingSection {
    padding: 120px 0;
}

.sectionTitle {
    color: var(--forest-green);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 67px;
}

.pricingRow {
    margin-bottom: 47px;
}

.pricingCard {
    background: white;
    padding: 38px;
    border-radius: 13px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.popularPlan .pricingCard {
    box-shadow: 0 20px 60px rgba(39, 174, 96, 0.15);
    border: 2px solid var(--forest-green);
    transform: scale(1.05);
}

.textBlack {
    color: var(--charcoal-black);
}

.priceDisplay {
    margin: 28px 0;
}

.priceDisplay > span {
    color: var(--slate-gray);
    font-size: 1.1rem;
}

.priceDisplay > span > span {
    font-size: 3.2rem;
    color: var(--forest-green);
    font-weight: 800;
}

.featuresList {
    list-style: none;
    margin: 0 0 38px 0;
    padding: 0;
}

.featuresList li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.featuresList li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--forest-green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.featuresList li.unavailable {
    text-decoration: line-through;
    color: var(--slate-gray);
    opacity: 0.6;
}

.featuresList li.unavailable:before {
    background: var(--slate-gray);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Contact Section */
.contactAppointment {
    position: relative;
    background: var(--charcoal-black);
    color: white;
}

.overlayEffect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--golden-amber) 0%, var(--sunset-orange) 100%);
    opacity: 0.9;
}

.containerWrap {
    position: relative;
    z-index: 2;
}

.noGutters {
    margin: 0;
}

.noGutters > div {
    padding: 0;
}

.stretchSelf {
    align-self: stretch;
}

#contactMap {
    height: 520px;
    width: 100%;
    background: linear-gradient(45deg, var(--lavender-mist), var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-gray);
    font-size: 1.2rem;
}

.appointmentForm {
    padding: 67px 47px;
}

.appointmentForm h3 {
    color: white;
    margin-bottom: 38px;
    font-size: 2.1rem;
}

.appointmentFormElement .formGroup {
    position: relative;
    width: 100%;
    margin-bottom: 23px;
}

.marginLeft {
    margin-left: 23px;
}

.inputWrapper {
    position: relative;
}

.iconElement {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 2;
}

.inputIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.formControl {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    height: 58px;
    padding: 0 15px;
    background: transparent;
    color: white;
    font-size: 1.05rem;
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.formControl::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.formControl:focus {
    outline: none;
    border-color: white;
}

.formControl[type="textarea"] {
    height: auto;
    min-height: 120px;
    padding-top: 15px;
    resize: vertical;
}

.submitButton {
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Footer Section */
.footerArea {
    color: white;
    background: var(--midnight-purple);
}

.sectionPadding {
    padding: 89px 0;
}

.footerWidget {
    margin-bottom: 67px;
}

.singleWidgetHome h3 {
    color: white;
    text-transform: capitalize;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.singleWidgetHome ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.singleWidgetHome ul li {
    margin-bottom: 12px;
}

.singleWidgetHome ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.singleWidgetHome ul li a:hover {
    color: white;
}

.singleWidgetHome p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 23px;
}

.newsletterForm {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.newsletterForm input {
    flex: 1;
    border: none;
    border-radius: 6px;
    padding: 15px 18px;
    font-size: 1rem;
}

.templateButton {
    background: var(--golden-amber);
    border: none;
    color: var(--charcoal-black);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.templateButton:hover {
    background: var(--sunset-orange);
    color: white;
}

.feedGallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.feedGallery img {
    width: 100%;
    height: 67px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.feedGallery img:hover {
    transform: scale(1.1);
}

.footerCopyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 34px;
}

.footerCopyright span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.legalLinks ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 23px;
    justify-content: flex-end;
}

.legalLinks ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legalLinks ul li a:hover {
    color: white;
}

/* Animation Classes */
.animateElement {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .toggleLabel {
        display: block;
    }

    .navigationWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.4s ease;
        padding-top: 89px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .menuItems {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .navElement {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .navAnchor {
        display: inline-block;
        padding: 15px 23px;
        font-size: 1.2rem;
        color: var(--charcoal-black);
    }

    .menuToggle:checked ~ .navigationWrapper {
        left: 0;
    }

    .menuToggle:checked ~ .toggleLabel .burgerIcon {
        background: transparent;
    }

    .menuToggle:checked ~ .toggleLabel .burgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .menuToggle:checked ~ .toggleLabel .burgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .primaryHeading h1 {
        font-size: 2.8rem;
    }

    .subHeading {
        font-size: 1.7rem;
    }

    .heroActions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .heroActions a {
        width: 100%;
        text-align: center;
    }

    .imageColumn,
    .contentColumn,
    .textColumn,
    .servicesColumn,
    .testimonialsColumn {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 47px;
    }

    .spacerColumn {
        display: none;
    }

    .pricingColumn {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .aboutContent {
        padding-left: 0;
        margin-top: 34px;
    }

    .secondaryImage {
        right: -15px;
        bottom: -30px;
        width: 50%;
    }

    .infoText {
        padding-right: 0;
        margin-bottom: 34px;
    }

    .featuresCarousel {
        flex-direction: column;
    }

    .featureItem {
        flex: none;
        max-width: 100%;
    }

    .mapColumn,
    .formColumn {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #contactMap {
        height: 300px;
    }

    .appointmentForm {
        padding: 47px 23px;
    }

    .flexDisplay {
        flex-direction: column;
    }

    .marginLeft {
        margin-left: 0;
        margin-top: 15px;
    }

    .footerColumn,
    .newsletterColumn,
    .galleryColumn {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 0 34px 0;
    }

    .copyrightColumn,
    .linksColumn {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .legalLinks ul {
        justify-content: center;
        margin-top: 23px;
    }

    .newsletterForm {
        flex-direction: column;
        align-items: stretch;
    }

    .templateButton {
        margin-top: 15px;
    }

    .feedGallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .containerWrapper {
        padding: 0 18px;
    }

    .primaryHeading h1 {
        font-size: 2.3rem;
    }

    .subHeading {
        font-size: 1.5rem;
    }

    .sectionHeader h3 {
        font-size: 2.1rem;
    }

    .headerSection h2 {
        font-size: 2.2rem;
    }

    .sectionTitle {
        font-size: 2.3rem;
    }

    .heroContainer {
        padding: 130px 0 89px;
    }

    .aboutContainer,
    .contentInfoArea,
    .testimonialsContainer,
    .pricingSection {
        padding: 89px 0;
    }

    .feedGallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Additional Utility Classes */
.rounded {
    border-radius: 13px;
}

.alignEnd {
    align-items: flex-end;
}

.backgroundLight {
    background: var(--pearl-white);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.slideInRight {
    animation: slideInRight 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pearl-white);
}

::-webkit-scrollbar-thumb {
    background: var(--ocean-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--midnight-purple);
}

/* Selection Colors */
::selection {
    background: var(--lavender-mist);
    color: var(--midnight-purple);
}

/* Focus States */
.primaryButton:focus,
.secondaryButton:focus,
.formControl:focus {
    outline: 2px solid var(--ocean-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .primaryHeader,
    .contactAppointment,
    .footerArea {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    .heroContainer {
        padding: 20px 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --ocean-blue: #000080;
        --midnight-purple: #000000;
        --charcoal-black: #000000;
        --slate-gray: #333333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}

/* Services Page Specific Styles */
.servicesHeroSection {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--lavender-mist) 0%, var(--sage-light) 100%);
    position: relative;
}

.heroSubtitle {
    font-size: 1.8rem;
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 24px;
}

.servicesHeroSection p {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto;
    color: var(--slate-gray);
}

/* Main Services */
.mainServicesArea {
    padding: 120px 0;
    background: white;
}

.serviceColumn {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
    margin-bottom: 40px;
}

.serviceCard {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--pearl-white);
}

.serviceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(124, 9, 183, 0.15);
}

.serviceIconWrapper {
    width: 80px;
    height: 80px;
    background: var(--lavender-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.serviceIcon {
    width: 40px;
    height: 40px;
    filter: invert(19%) sepia(98%) saturate(2534%) hue-rotate(259deg) brightness(69%) contrast(98%);
}

.serviceContent h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 18px;
}

.serviceContent p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-gray);
    margin-bottom: 25px;
}

.serviceFeaturesList {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.serviceFeaturesList li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--charcoal-black);
    font-size: 0.95rem;
}

.serviceFeaturesList li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 12px;
    background: var(--ocean-blue);
    border-radius: 50%;
}

.servicePricing {
    border-top: 1px solid var(--pearl-white);
    padding-top: 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.priceLabel {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

.priceAmount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.pricePeriod {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

/* Extended Services */
.extendedServicesArea {
    padding: 100px 0;
}

.sectionHeaderContent {
    margin-bottom: 60px;
}

.sectionSubheader {
    color: var(--ocean-blue);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.extendedServiceColumn {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.extendedServiceCard {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.extendedServiceCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.extendedIconWrapper {
    width: 70px;
    height: 70px;
    background: var(--amber-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.extendedServiceIcon {
    width: 32px;
    height: 32px;
    filter: invert(77%) sepia(52%) saturate(1895%) hue-rotate(345deg) brightness(102%) contrast(93%);
}

.extendedServiceCard h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: 15px;
}

.extendedServiceCard p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate-gray);
    margin: 0;
}

/* Process Section */
.processMethodArea {
    padding: 120px 0;
    background: white;
}

.processImageColumn {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 0 15px;
}

.processContentColumn {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 0 15px;
    padding-left: 50px;
}

.processImageWrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.processSteps {
    margin-top: 40px;
}

.processStep {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 20px;
}

.stepNumber {
    background: var(--ocean-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stepContent h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: 10px;
}

.stepContent p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-gray);
    margin: 0;
}

/* FAQ Section */
.faqAccordionArea {
    padding: 120px 0;
}

.faqImageColumn {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 0 15px;
}

.faqContentColumn {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 0 15px;
    padding-left: 50px;
}

.faqImageWrapper {
    border-radius: 15px;
    overflow: hidden;
}

.faqImageWrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.faqImageWrapper:hover img {
    transform: scale(1.05);
}

.faqSection h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--midnight-purple);
    margin-bottom: 40px;
}

.faqCard {
    border: none;
    border-bottom: 1px solid var(--pearl-white);
    margin-bottom: 20px;
    background: transparent;
}

.faqCardHeader {
    background: transparent;
    padding: 20px 0;
    border: none;
}

.faqButton {
    font-size: 1.05rem;
    color: var(--charcoal-black);
    font-weight: 500;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
    position: relative;
    padding: 0;
    transition: color 0.3s ease;
}

.faqButton:focus {
    outline: none;
    box-shadow: none;
}

.faqButton span {
    color: var(--ocean-blue);
    font-weight: 600;
    margin-right: 12px;
}

.faqButton:after {
    position: absolute;
    content: '+';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--ocean-blue);
    transition: transform 0.3s ease;
}

.faqButton:not(.collapsed):after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.faqButton:hover {
    color: var(--ocean-blue);
}

.faqCardBody {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-gray);
    padding: 0 0 25px;
}

.faqCollapse {
    border: none;
}

/* Testimonials Slider */
.testimonialSliderArea {
    padding: 120px 0;
    background: var(--pearl-white);
}

.testimonialHeader {
    margin-bottom: 60px;
}

.testimonialHeader h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-purple);
    margin-bottom: 20px;
}

.testimonialHeader p {
    font-size: 1.1rem;
    color: var(--slate-gray);
    max-width: 600px;
    margin: 0 auto;
}

.testimonialSlider {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonialSlideContent {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonialSlideContent:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonialImageSection {
    width: 300px;
    height: 250px;
    background: url('../pantheon/startup_mentoring_session_4.webp') center/cover;
    position: relative;
    flex-shrink: 0;
}

.testimonialImage2 {
    background-image: url('../pantheon/corporate_coaching_environment_1.webp');
}

.testimonialImageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 9, 183, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.testimonialSlideContent:hover .testimonialImageOverlay {
    opacity: 1;
}

.testimonialImageText h3,
.testimonialImageText h5 {
    color: white;
    margin: 0;
}

.testimonialImageText h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonialImageText h5 {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.testimonialTextSection {
    padding: 40px;
    flex: 1;
    position: relative;
}

.testimonialQuoteIcon {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 24px;
    height: 24px;
    filter: invert(77%) sepia(52%) saturate(1895%) hue-rotate(345deg) brightness(102%) contrast(93%);
}

.testimonialTextSection p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate-gray);
    margin: 0;
    padding-top: 10px;
}

.alignSelfCenter {
    align-self: center;
}

/* CTA Section */
.ctaActionSection {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--midnight-purple) 0%, var(--ocean-blue) 100%);
    color: white;
}

.ctaContent h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.ctaContent p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 40px;
}

.ctaActions {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.ctaActions .primaryButton {
    background: white;
    color: var(--ocean-blue);
    border-color: white;
}

.ctaActions .primaryButton:hover {
    background: var(--lavender-mist);
    color: var(--midnight-purple);
    border-color: var(--lavender-mist);
}

.ctaActions .secondaryButton {
    background: transparent;
    color: white;
    border-color: white;
}

.ctaActions .secondaryButton:hover {
    background: white;
    color: var(--ocean-blue);
}

/* Active Navigation State */
.navAnchor.active {
    color: var(--ocean-blue);
    font-weight: 600;
}

.navAnchor.active::after {
    width: 100%;
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .serviceColumn,
    .extendedServiceColumn {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .processImageColumn,
    .processContentColumn,
    .faqImageColumn,
    .faqContentColumn {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .processContentColumn,
    .faqContentColumn {
        padding-left: 15px;
        margin-top: 40px;
    }

    .testimonialSlideContent {
        flex-direction: column;
    }

    .testimonialImageSection {
        width: 100%;
        height: 200px;
    }

    .ctaActions {
        flex-direction: column;
        gap: 15px;
    }

    .ctaActions a {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media screen and (max-width: 640px) {
    .servicesHeroSection {
        padding: 150px 0 80px;
    }

    .heroSubtitle {
        font-size: 1.5rem;
    }

    .mainServicesArea,
    .processMethodArea,
    .faqAccordionArea,
    .testimonialSliderArea {
        padding: 80px 0;
    }

    .extendedServicesArea,
    .ctaActionSection {
        padding: 60px 0;
    }

    .ctaContent h2 {
        font-size: 2.2rem;
    }

    .faqSection h3 {
        font-size: 2rem;
    }

    .testimonialHeader h2 {
        font-size: 2rem;
    }
}

/* Thank You Page Specific Styles */
.thankYouHeroSection {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--lavender-mist) 100%);
    position: relative;
    text-align: center;
}

.successIconWrapper {
    margin-bottom: 30px;
}

.successIcon {
    width: 80px;
    height: 80px;
    filter: invert(49%) sepia(96%) saturate(1945%) hue-rotate(88deg) brightness(101%) contrast(107%);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thankYouContent h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--midnight-purple);
    margin-bottom: 20px;
}

.thankYouSubheading {
    font-size: 1.8rem;
    color: var(--forest-green);
    font-weight: 600;
    margin-bottom: 25px;
}

.thankYouDescription {
    font-size: 1.2rem;
    color: var(--slate-gray);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Next Steps Section */
.nextStepsSection {
    margin: 60px 0;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.nextStepsSection h3 {
    font-size: 2rem;
    color: var(--charcoal-black);
    margin-bottom: 40px;
    font-weight: 700;
}

.nextStepsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.nextStepItem {
    text-align: center;
}

.stepIconWrapper {
    width: 70px;
    height: 70px;
    background: var(--lavender-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.nextStepItem:hover .stepIconWrapper {
    background: var(--ocean-blue);
    transform: translateY(-5px);
}

.stepIcon {
    width: 32px;
    height: 32px;
    filter: invert(19%) sepia(98%) saturate(2534%) hue-rotate(259deg) brightness(69%) contrast(98%);
    transition: filter 0.3s ease;
}

.nextStepItem:hover .stepIcon {
    filter: brightness(0) invert(1);
}

.nextStepItem h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: 15px;
}

.nextStepItem p {
    font-size: 1rem;
    color: var(--slate-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact Info Section */
.contactInfoSection {
    margin: 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contactInfoSection h3 {
    font-size: 1.5rem;
    color: var(--charcoal-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.contactInfoSection p {
    font-size: 1.1rem;
    color: var(--slate-gray);
    margin-bottom: 25px;
}

.directContactInfo {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.contactDetail {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contactDetail:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contactIcon {
    width: 20px;
    height: 20px;
    filter: invert(19%) sepia(98%) saturate(2534%) hue-rotate(259deg) brightness(69%) contrast(98%);
}

.contactDetail span {
    font-weight: 600;
    color: var(--charcoal-black);
    font-size: 1rem;
}

/* Thank You Actions */
.thankYouActions {
    margin-top: 50px;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

/* Resources Section */
.resourcesSection {
    padding: 100px 0;
}

.resourcesHeader {
    margin-bottom: 60px;
}

.resourcesHeader h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-purple);
    margin-bottom: 20px;
}

.resourcesHeader p {
    font-size: 1.1rem;
    color: var(--slate-gray);
    max-width: 600px;
    margin: 0 auto;
}

.resourceColumn {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.resourceCard {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.resourceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(124, 9, 183, 0.15);
}

.resourceIconWrapper {
    width: 70px;
    height: 70px;
    background: var(--amber-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.resourceCard:hover .resourceIconWrapper {
    background: var(--golden-amber);
    transform: scale(1.1);
}

.resourceIcon {
    width: 32px;
    height: 32px;
    filter: invert(77%) sepia(52%) saturate(1895%) hue-rotate(345deg) brightness(102%) contrast(93%);
    transition: filter 0.3s ease;
}

.resourceCard:hover .resourceIcon {
    filter: brightness(0) invert(1);
}

.resourceCard h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal-black);
    margin-bottom: 18px;
}

.resourceCard p {
    font-size: 1rem;
    color: var(--slate-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.resourceLink {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.resourceLink:hover {
    color: var(--midnight-purple);
}

.resourceLink::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.resourceLink:hover::after {
    width: 100%;
}

/* Company Info Section */
.companyInfoSection {
    padding: 100px 0;
    background: white;
}

.companyImageColumn {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 0 15px;
}

.companyContentColumn {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 0 15px;
    padding-left: 50px;
}

.companyImageWrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.companyImageWrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.companyImageWrapper:hover img {
    transform: scale(1.05);
}

.companyContent h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--midnight-purple);
    margin-bottom: 25px;
}

.companyContent p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-gray);
    margin-bottom: 35px;
}

.companyStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: var(--pearl-white);
    border-radius: 12px;
}

.statItem {
    text-align: center;
}

.statNumber {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ocean-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.statLabel {
    font-size: 0.95rem;
    color: var(--slate-gray);
    font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .nextStepsGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .directContactInfo {
        flex-direction: column;
        gap: 20px;
    }

    .thankYouActions {
        flex-direction: column;
        gap: 15px;
    }

    .thankYouActions a {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .resourceColumn {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .companyImageColumn,
    .companyContentColumn {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .companyContentColumn {
        padding-left: 15px;
        margin-top: 40px;
    }

    .companyStats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 640px) {
    .thankYouHeroSection {
        padding: 150px 0 80px;
    }

    .thankYouContent h1 {
        font-size: 2.5rem;
    }

    .thankYouSubheading {
        font-size: 1.5rem;
    }

    .nextStepsSection {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .nextStepsSection h3 {
        font-size: 1.7rem;
    }

    .contactInfoSection {
        padding: 30px 20px;
    }

    .resourcesSection,
    .companyInfoSection {
        padding: 80px 0;
    }

    .resourcesHeader h2 {
        font-size: 2rem;
    }

    .companyContent h3 {
        font-size: 1.8rem;
    }

    .statNumber {
        font-size: 2rem;
    }
}

/* Auto-redirect functionality (optional) */
.redirectNotice {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--ocean-blue);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(124, 9, 183, 0.3);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
    z-index: 1000;
}

.redirectNotice.show {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for success icon */
.successIcon {
    animation: successPulse 2s ease-in-out infinite;
}

/* Additional micro-animations */
.thankYouContent > * {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.thankYouContent > *:nth-child(1) { animation-delay: 0.1s; }
.thankYouContent > *:nth-child(2) { animation-delay: 0.2s; }
.thankYouContent > *:nth-child(3) { animation-delay: 0.3s; }
.thankYouContent > *:nth-child(4) { animation-delay: 0.4s; }
.thankYouContent > *:nth-child(5) { animation-delay: 0.5s; }
.thankYouContent > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better interactivity */
.nextStepItem {
    transition: transform 0.3s ease;
}

.nextStepItem:hover {
    transform: translateY(-5px);
}

.resourceCard,
.contactDetail {
    cursor: pointer;
}

/* Focus states for accessibility */
.primaryButton:focus,
.secondaryButton:focus,
.resourceLink:focus {
    outline: 2px solid var(--ocean-blue);
    outline-offset: 2px;
}