/* Custom CSS Variables */
:root {
    --ocean-blue: #7209b7;
    --frost-lavender: #f3e5f9;
    --deep-purple: #4c0677;
    --secondary-color: #2c5f3a;
    --secondary-light: #e8f5ea;
    --tertiary-color: #b8860b;
    --tertiary-light: #faf6e8;
    --accent-color: #d4361c;
    --accent-light: #fdf2f1;
    --neutral-color: #8b9196;
    --neutral-light: #f7f8f9;
    --info-color: #1976d2;
    --warning-color: #f57c00;
    --success-color: #388e3c;
    --text-color: #4c0677;
    --background-primary: #ffffff;
    --glass-background: rgba(255, 255, 255, 0.85);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--background-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    margin-bottom: 21px;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

/* Container & Layout Framework */
.contentFrame {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 34px;
}

/* Navigation Styles */
.primaryNavigation {
    background: var(--glass-background);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--neutral-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.navigationContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 34px;
}

.topNavbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
}

.brandIdentity img {
    height: 55px;
    width: auto;
}

.hiddenToggle {
    display: none;
}

.mobileMenuButton {
    display: none;
}

.menuIcon {
    width: 34px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.35s ease;
}

.menuIcon:before,
.menuIcon:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.35s ease;
}

.menuIcon:before {
    top: -10px;
}

.menuIcon:after {
    top: 10px;
}

.navigationPanel {
    display: flex;
    align-items: center;
    gap: 27px;
}

.navMenuList {
    display: flex;
    list-style: none;
    gap: 42px;
}

.menuEntry {
    list-style: none;
}

.menuLink {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.menuLink:hover {
    color: var(--ocean-blue);
}

.menuLink:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.menuLink:hover:after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .mobileMenuButton {
        display: block;
        cursor: pointer;
        padding: 21px;
        z-index: 2;
    }

    .navigationPanel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-primary);
        transition: all 0.4s ease;
        padding-top: 110px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .navMenuList {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .menuEntry {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .menuLink {
        display: inline-block;
        padding: 13px 27px;
        font-size: 1.3rem;
        color: var(--text-color);
    }

    .hiddenToggle:checked ~ .navigationPanel {
        left: 0;
    }

    .hiddenToggle:checked ~ .mobileMenuButton .menuIcon {
        background: transparent;
    }

    .hiddenToggle:checked ~ .mobileMenuButton .menuIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .hiddenToggle:checked ~ .mobileMenuButton .menuIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.heroTimeline {
    padding: 150px 0 89px;
    background: linear-gradient(135deg, var(--frost-lavender) 0%, var(--neutral-light) 100%);
    position: relative;
    overflow: hidden;
}

.heroTimeline:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.timelineWrapper {
    position: relative;
    z-index: 2;
}

.mainHeading {
    font-size: 3.2rem;
    color: var(--deep-purple);
    margin-bottom: 34px;
    text-align: center;
}

.heroDescription {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 55px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

.dealProgressTracker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-top: 67px;
}

.milestoneStep {
    display: flex;
    align-items: flex-start;
    gap: 21px;
    padding: 27px;
    background: var(--glass-background);
    backdrop-filter: blur(7px);
    border-radius: 13px;
    border: 1px solid var(--neutral-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.milestoneStep:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 34px rgba(114, 9, 183, 0.15);
}

.stepIndicator {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--neutral-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.milestoneStep.completed .stepIndicator {
    background: var(--success-color);
}

.milestoneStep.active .stepIndicator {
    background: var(--ocean-blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(114, 9, 183, 0.7);
    }
    70% {
        box-shadow: 0 0 0 21px rgba(114, 9, 183, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(114, 9, 183, 0);
    }
}

.stepContent h3 {
    margin-bottom: 8px;
    color: var(--deep-purple);
}

.stepContent p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Deal Tracker Section */
.activeDealsTracker {
    padding: 89px 0;
    background: var(--background-primary);
}

.sectionTitle {
    text-align: center;
    margin-bottom: 55px;
    color: var(--deep-purple);
}

.dealCardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.dealCard {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dealCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(114, 9, 183, 0.12);
}

.dealImage {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.dealDetails {
    padding: 27px;
}

.dealDetails h3 {
    color: var(--deep-purple);
    margin-bottom: 13px;
}

.dealDetails p {
    color: var(--text-color);
    margin-bottom: 21px;
}

.dealMetrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.metricLabel {
    font-weight: 600;
    color: var(--text-color);
}

.metricValue {
    font-weight: bold;
    color: var(--ocean-blue);
}

.progressBar {
    width: 100%;
    height: 8px;
    background: var(--neutral-light);
    border-radius: 4px;
    overflow: hidden;
}

.progressFill {
    height: 100%;
    background: linear-gradient(90deg, var(--ocean-blue), var(--success-color));
    transition: width 0.8s ease;
}

/* Valuation Methodology */
.valuationMethodology {
    padding: 89px 0;
    background: var(--frost-lavender);
}

.methodologyGrid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 55px;
    align-items: center;
}

.methodologyList {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.methodItem {
    padding: 27px;
    background: white;
    border-radius: 13px;
    border-left: 5px solid var(--ocean-blue);
    transition: all 0.3s ease;
}

.methodItem:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.1);
}

.methodItem h3 {
    color: var(--deep-purple);
    margin-bottom: 13px;
}

.visualImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

/* Due Diligence Section */
.dueDiligenceSection {
    padding: 89px 0;
    background: var(--background-primary);
}

.checklistGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.checklistCategory {
    background: white;
    padding: 34px;
    border-radius: 15px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.checklistCategory:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.checklistCategory h3 {
    color: var(--ocean-blue);
    margin-bottom: 21px;
    padding-bottom: 13px;
    border-bottom: 2px solid var(--frost-lavender);
}

.checklistItems {
    list-style: none;
}

.checklistItems li {
    padding: 8px 0;
    padding-left: 21px;
    position: relative;
    color: var(--text-color);
}

.checklistItems li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Transaction Timeline */
.transactionTimeline {
    padding: 89px 0;
    background: var(--neutral-light);
}

.timelineContainer {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timelineContainer:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ocean-blue);
    transform: translateX(-50%);
}

.timelineItem {
    display: flex;
    align-items: center;
    margin-bottom: 55px;
    position: relative;
}

.timelineItem:nth-child(even) {
    flex-direction: row-reverse;
}

.timelineMarker {
    background: var(--ocean-blue);
    color: white;
    padding: 13px 21px;
    border-radius: 27px;
    font-weight: bold;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timelineContent {
    background: white;
    padding: 27px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    width: 45%;
    transition: all 0.3s ease;
}

.timelineItem:nth-child(odd) .timelineContent {
    margin-right: auto;
    margin-left: 0;
}

.timelineItem:nth-child(even) .timelineContent {
    margin-left: auto;
    margin-right: 0;
}

.timelineContent:hover {
    transform: scale(1.02);
    box-shadow: 0 13px 27px rgba(114, 9, 183, 0.12);
}

.timelineContent h3 {
    color: var(--deep-purple);
    margin-bottom: 13px;
}

/* Risk Assessment */
.riskAssessment {
    padding: 89px 0;
    background: var(--background-primary);
}

.riskMatrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.riskCategory {
    padding: 34px;
    border-radius: 15px;
    border-top: 5px solid;
    background: white;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.riskCategory:hover {
    transform: translateY(-5px);
}

.highRisk {
    border-top-color: var(--accent-color);
}

.mediumRisk {
    border-top-color: var(--warning-color);
}

.lowRisk {
    border-top-color: var(--success-color);
}

.riskCategory h3 {
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.riskCategory ul {
    list-style: none;
}

.riskCategory li {
    padding: 8px 0;
    padding-left: 21px;
    position: relative;
    color: var(--text-color);
}

.highRisk li:before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.mediumRisk li:before {
    content: '◐';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.lowRisk li:before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* Integration Planning */
.integrationPlanning {
    padding: 89px 0;
    background: var(--frost-lavender);
}

.integrationGrid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 55px;
    align-items: center;
}

.integrationPhases {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 34px;
}

.phaseItem {
    padding: 21px;
    background: white;
    border-radius: 13px;
    border-left: 4px solid var(--ocean-blue);
    transition: all 0.3s ease;
}

.phaseItem:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.1);
}

.phaseItem h3 {
    color: var(--ocean-blue);
    margin-bottom: 8px;
}

/* Success Stories */
.successStories {
    padding: 89px 0;
    background: var(--background-primary);
}

.storiesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.storyCard {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.storyCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(114, 9, 183, 0.12);
}

.storyImage {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.storyContent {
    padding: 27px;
}

.storyContent h3 {
    color: var(--deep-purple);
    margin-bottom: 13px;
}

.storyContent p {
    margin-bottom: 21px;
}

.storyMetrics {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.storyMetrics span {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Commercial Services */
.commercialServices {
    padding: 89px 0;
    background: var(--neutral-light);
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.servicePackage {
    background: white;
    padding: 34px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.servicePackage:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(114, 9, 183, 0.15);
}

.servicePackage.featured {
    border-color: var(--ocean-blue);
    transform: scale(1.05);
}

.servicePackage h3 {
    color: var(--deep-purple);
    margin-bottom: 13px;
}

.servicePrice {
    font-size: 2rem;
    font-weight: bold;
    color: var(--ocean-blue);
    margin-bottom: 27px;
}

.serviceFeatures {
    list-style: none;
    margin-bottom: 34px;
}

.serviceFeatures li {
    padding: 8px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 21px;
}

.serviceFeatures li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.serviceButton {
    background: var(--ocean-blue);
    color: white;
    padding: 13px 27px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.serviceButton:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
}

/* Contact Form Section */
.contactFormSection {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--frost-lavender) 0%, var(--neutral-light) 100%);
    position: relative;
}

.contactFormSection:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 50%;
    height: 160%;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.06) 0%, transparent 65%);
    transform: rotate(12deg);
}

.contactWrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 67px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.formIntroduction {
    padding: 34px 0;
}

.formIntroduction .sectionTitle {
    text-align: left;
    margin-bottom: 27px;
    color: var(--deep-purple);
}

.introText {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 42px;
    line-height: 1.6;
}

.contactHighlights {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.highlightItem {
    padding: 21px;
    background: var(--glass-background);
    backdrop-filter: blur(6px);
    border-radius: 13px;
    border-left: 4px solid var(--ocean-blue);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlightItem:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 27px rgba(114, 9, 183, 0.12);
}

.highlightItem h4 {
    color: var(--ocean-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.highlightItem p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.formContainer {
    background: white;
    padding: 42px;
    border-radius: 18px;
    box-shadow: 0 13px 42px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contactForm {
    width: 100%;
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px 21px;
    margin-bottom: 27px;
}

.inputGroup {
    position: relative;
    margin-bottom: 34px;
}

.inputGroup.fullWidth {
    grid-column: 1 / -1;
}

.inputLabel {
    display: block;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 8px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.formInput,
.formSelect,
.formTextarea {
    width: 100%;
    padding: 13px 0;
    border: none;
    border-bottom: 2px solid var(--neutral-color);
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.formInput:focus,
.formSelect:focus,
.formTextarea:focus {
    border-bottom-color: var(--ocean-blue);
}

.formInput:focus + .inputUnderline,
.formSelect:focus + .selectArrow + .inputUnderline,
.formTextarea:focus + .inputUnderline {
    transform: scaleX(1);
}

.inputUnderline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--success-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.formSelect {
    appearance: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.selectArrow {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--text-color);
    pointer-events: none;
    transition: all 0.3s ease;
}

.inputGroup:focus-within .selectArrow {
    border-top-color: var(--ocean-blue);
    transform: translateY(-50%) rotate(180deg);
}

.formTextarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 13px;
    line-height: 1.6;
}

.formTextarea::placeholder {
    color: var(--neutral-color);
    opacity: 0.7;
}

.formActions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
    margin-top: 42px;
}

.submitButton {
    position: relative;
    background: linear-gradient(135deg, var(--ocean-blue), var(--deep-purple));
    color: white;
    padding: 18px 55px;
    border: none;
    border-radius: 34px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.3);
}

.submitButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(114, 9, 183, 0.4);
}

.submitButton:active {
    transform: translateY(0);
}

.buttonText {
    position: relative;
    z-index: 2;
}

.buttonRipple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submitButton:active .buttonRipple {
    width: 300px;
    height: 300px;
}

.privacyNote {
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0;
    opacity: 0.8;
}

.privacyNote a {
    color: var(--ocean-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacyNote a:hover {
    color: var(--deep-purple);
    text-decoration: underline;
}

/* Contact Form Responsive */
@media screen and (max-width: 1280px) {
    .contactWrapper {
        gap: 42px;
    }

    .formContainer {
        padding: 34px;
    }
}

@media screen and (max-width: 890px) {
    .contactWrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .formGrid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .formContainer {
        padding: 27px;
    }

    .contactHighlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 21px;
    }
}

@media screen and (max-width: 640px) {
    .contactFormSection {
        padding: 67px 0;
    }

    .formContainer {
        padding: 21px;
    }

    .submitButton {
        padding: 16px 42px;
        font-size: 1rem;
    }

    .contactHighlights {
        grid-template-columns: 1fr;
    }

    .formActions {
        margin-top: 34px;
    }
}

/* Form Animation Effects */
@keyframes inputFocus {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
    }
}

.inputGroup:focus-within .inputLabel {
    color: var(--ocean-blue);
    animation: inputFocus 0.3s ease;
}

/* Custom Select Styling */
.formSelect option {
    background: white;
    color: var(--text-color);
    padding: 8px;
}

.formSelect option:checked {
    background: var(--frost-lavender);
}

/* Input Validation States */
.formInput:valid,
.formSelect:valid,
.formTextarea:valid {
    border-bottom-color: var(--success-color);
}

.formInput:invalid:not(:focus):not(:placeholder-shown),
.formSelect:invalid:not(:focus),
.formTextarea:invalid:not(:focus):not(:placeholder-shown) {
    border-bottom-color: var(--accent-color);
}

/* Disclaimer */
.disclaimerSection {
    padding: 55px 0;
    background: var(--frost-lavender);
}

.disclaimerContent {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimerContent h3 {
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.disclaimerContent p {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 0;
}

/* Footer */
.primaryFooter {
    background: var(--deep-purple);
    color: white;
    padding: 67px 0 27px;
}

.footerGrid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 34px;
}

.footerBrand h3 {
    color: white;
    margin-bottom: 13px;
}

.footerBrand p {
    margin-bottom: 21px;
    opacity: 0.9;
}

.contactInfo p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footerLinks h4,
.footerLegal h4 {
    color: white;
    margin-bottom: 18px;
}

.footerLinks ul,
.footerLegal ul {
    list-style: none;
}

.footerLinks li,
.footerLegal li {
    margin-bottom: 8px;
}

.footerLinks a,
.footerLegal a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footerLinks a:hover,
.footerLegal a:hover {
    opacity: 1;
}

.footerBottom {
    text-align: center;
    padding-top: 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footerBottom p {
    opacity: 0.7;
    margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 1600px) {
    .contentFrame {
        max-width: 1120px;
        padding: 0 27px;
    }
}

@media screen and (max-width: 1280px) {
    .contentFrame {
        padding: 0 21px;
    }

    .dealProgressTracker {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 27px;
    }
}

@media screen and (max-width: 890px) {
    .mainHeading {
        font-size: 2.5rem;
    }

    .heroDescription {
        font-size: 1.1rem;
    }

    .methodologyGrid,
    .integrationGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .timelineContainer:before {
        left: 21px;
    }

    .timelineItem {
        flex-direction: row !important;
        margin-left: 55px;
    }

    .timelineMarker {
        left: 21px;
        transform: translateX(-50%);
    }

    .timelineContent {
        width: 100%;
        margin: 0 !important;
    }

    .footerGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media screen and (max-width: 640px) {
    .contentFrame {
        padding: 0 18px;
    }

    .heroTimeline {
        padding: 120px 0 67px;
    }

    .mainHeading {
        font-size: 2rem;
    }

    .dealCardsGrid,
    .storiesGrid {
        grid-template-columns: 1fr;
    }

    .milestoneStep {
        flex-direction: column;
        text-align: center;
    }

    .checklistGrid,
    .riskMatrix,
    .servicesGrid {
        grid-template-columns: 1fr;
    }
}

.ffa {
    margin: 5% 15%;
}

/* About Page Styles */
.aboutHeroSection {
    padding: 150px 0 89px;
    background: linear-gradient(125deg, var(--frost-lavender) 0%, var(--neutral-light) 100%);
    position: relative;
    overflow: hidden;
}

.aboutHeroSection:before {
    content: '';
    position: absolute;
    top: -40%;
    right: -25%;
    width: 70%;
    height: 180%;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.07) 0%, transparent 60%);
    transform: rotate(-12deg);
}

.heroAboutWrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.primaryHeading {
    font-size: 3.1rem;
    color: var(--deep-purple);
    margin-bottom: 27px;
}

.leadParagraph {
    font-size: 1.4rem;
    color: var(--text-color);
    max-width: 920px;
    margin: 0 auto 55px;
    line-height: 1.6;
}

.foundingMetrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-top: 67px;
}

.metricBox {
    background: var(--glass-background);
    backdrop-filter: blur(8px);
    padding: 42px 27px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.metricBox:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(114, 9, 183, 0.15);
}

.metricNumber {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--ocean-blue);
    margin-bottom: 13px;
    font-family: 'Times New Roman', serif;
}

.metricLabel {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Founding Principles */
.foundingPrinciples {
    padding: 89px 0;
    background: var(--background-primary);
}

.sectionHeading {
    text-align: center;
    margin-bottom: 67px;
    color: var(--deep-purple);
}

.principlesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.principleCard {
    background: white;
    padding: 42px 34px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border-top: 4px solid var(--ocean-blue);
}

.principleCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(114, 9, 183, 0.12);
}

.principleIcon {
    width: 67px;
    height: 67px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 27px;
}

.principleCard h3 {
    color: var(--deep-purple);
    margin-bottom: 18px;
}

/* Transaction Heritage */
.transactionHeritage {
    padding: 89px 0;
    background: var(--frost-lavender);
}

.heritageLayout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 67px;
    align-items: center;
}

.heritageTimeline {
    margin-top: 42px;
}

.timelineEntry {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-bottom: 21px;
    padding: 18px 0;
}

.timelineYear {
    background: var(--ocean-blue);
    color: white;
    padding: 8px 21px;
    border-radius: 21px;
    font-weight: bold;
    white-space: nowrap;
}

.timelineDesc {
    color: var(--text-color);
    font-weight: 500;
}

.heritageImage {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

/* Expert Credentials */
.expertCredentials {
    padding: 89px 0;
    background: var(--background-primary);
}

.credentialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 42px;
}

.credentialItem {
    background: white;
    padding: 42px;
    border-radius: 18px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.credentialItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.credentialItem h3 {
    color: var(--ocean-blue);
    margin-bottom: 8px;
}

.credentialRole {
    color: var(--deep-purple);
    font-weight: 600;
    margin-bottom: 21px;
    font-size: 1.1rem;
}

.credentialDetails p {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Client Testimonials */
.clientTestimonials {
    padding: 89px 0;
    background: var(--neutral-light);
}

.testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.testimonialCard {
    background: white;
    padding: 42px;
    border-radius: 18px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--ocean-blue);
}

.testimonialQuote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 27px;
    line-height: 1.6;
}

.testimonialQuote:before {
    content: '"';
    font-size: 2rem;
    color: var(--ocean-blue);
    line-height: 1;
}

.testimonialQuote:after {
    content: '"';
    font-size: 2rem;
    color: var(--ocean-blue);
    line-height: 1;
}

.authorName {
    font-weight: bold;
    color: var(--deep-purple);
}

.authorTitle {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Sector Specialization */
.sectorSpecialization {
    padding: 89px 0;
    background: var(--background-primary);
}

.specializationMatrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 42px;
}

.sectorCluster {
    background: white;
    padding: 42px;
    border-radius: 18px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
}

.sectorCluster h3 {
    color: var(--deep-purple);
    margin-bottom: 27px;
    border-bottom: 2px solid var(--frost-lavender);
    padding-bottom: 13px;
}

.sectorItems {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.sectorTag {
    background: var(--frost-lavender);
    color: var(--deep-purple);
    padding: 8px 18px;
    border-radius: 21px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sectorTag:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
}

/* Global Network */
.globalNetwork {
    padding: 89px 0;
    background: var(--frost-lavender);
}

.networkLayout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 67px;
    align-items: center;
}

.networkImage {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.networkStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
    margin-top: 42px;
}

.networkStat {
    text-align: center;
    padding: 27px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.statNumber {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--ocean-blue);
    margin-bottom: 8px;
}

.statLabel {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Advisory Excellence */
.advisoryExcellence {
    padding: 89px 0;
    background: var(--background-primary);
}

.excellenceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.excellenceCategory {
    background: white;
    padding: 42px;
    border-radius: 18px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--ocean-blue);
}

.excellenceCategory h3 {
    color: var(--deep-purple);
    margin-bottom: 27px;
}

.excellenceList {
    list-style: none;
}

.excellenceList li {
    padding: 8px 0;
    padding-left: 21px;
    position: relative;
    color: var(--text-color);
}

.excellenceList li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--ocean-blue);
    font-size: 0.8rem;
}

/* About Contact CTA */
.aboutContactCTA {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--deep-purple), var(--ocean-blue));
    text-align: center;
}

.ctaContent {
    max-width: 720px;
    margin: 0 auto;
}

.ctaHeading {
    color: white;
    margin-bottom: 21px;
}

.ctaDescription {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 42px;
}

.ctaButton {
    background: white;
    color: var(--ocean-blue);
    padding: 18px 42px;
    border: none;
    border-radius: 34px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ctaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 27px rgba(0, 0, 0, 0.2);
}

/* Thank You Page Styles */
.thankYouHero {
    padding: 150px 0 89px;
    background: linear-gradient(135deg, var(--frost-lavender) 0%, var(--neutral-light) 100%);
    text-align: center;
}

.thankYouWrapper {
    max-width: 840px;
    margin: 0 auto;
}

.successIndicator {
    margin-bottom: 42px;
}

.checkmarkCircle {
    width: 89px;
    height: 89px;
    border-radius: 50%;
    background: var(--success-color);
    margin: 0 auto;
    position: relative;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.checkmarkStem {
    position: absolute;
    width: 3px;
    height: 21px;
    background: white;
    left: 42px;
    top: 34px;
    transform: rotate(45deg);
    animation: drawStem 0.3s ease-out 0.3s both;
}

.checkmarkKick {
    position: absolute;
    width: 13px;
    height: 3px;
    background: white;
    left: 34px;
    top: 55px;
    transform: rotate(-45deg);
    animation: drawKick 0.3s ease-out 0.6s both;
}

@keyframes drawStem {
    0% {
        height: 0;
    }
    100% {
        height: 21px;
    }
}

@keyframes drawKick {
    0% {
        width: 0;
    }
    100% {
        width: 13px;
    }
}

.thankYouHeading {
    color: var(--deep-purple);
    margin-bottom: 27px;
}

.thankYouSubtext {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 67px;
    line-height: 1.6;
}

.nextStepsInfo {
    margin-top: 67px;
}

.nextStepsTitle {
    color: var(--deep-purple);
    margin-bottom: 42px;
}

.stepsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.stepItem {
    background: white;
    padding: 34px;
    border-radius: 18px;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.stepNumber {
    width: 55px;
    height: 55px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 21px;
}

.stepContent h3 {
    color: var(--deep-purple);
    margin-bottom: 13px;
}

/* Quick Resources */
.quickResources {
    padding: 89px 0;
    background: var(--background-primary);
}

.resourcesTitle {
    text-align: center;
    margin-bottom: 67px;
    color: var(--deep-purple);
}

.resourcesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.resourceCard {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resourceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(114, 9, 183, 0.12);
}

.resourceImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.resourceContent {
    padding: 34px;
}

.resourceContent h3 {
    color: var(--deep-purple);
    margin-bottom: 13px;
}

.resourceLink {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resourceLink:hover {
    color: var(--deep-purple);
}

/* Contact Reminder */
.contactReminder {
    padding: 89px 0;
    background: var(--frost-lavender);
}

.reminderContent {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.reminderTitle {
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.reminderText {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 55px;
}

.contactMethods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.contactMethod {
    background: white;
    padding: 34px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.06);
}

.contactIcon {
    font-size: 2.5rem;
    margin-bottom: 21px;
}

.contactDetails h4 {
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.contactDetails p {
    color: var(--text-color);
    margin-bottom: 8px;
}

.availability {
    font-size: 0.9rem;
    color: var(--neutral-color);
    font-style: italic;
}

/* Responsive Design for About & Thank You Pages */
@media screen and (max-width: 890px) {
    .primaryHeading {
        font-size: 2.5rem;
    }

    .heritageLayout,
    .networkLayout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .foundingMetrics,
    .networkStats {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .stepsGrid,
    .contactMethods {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .aboutHeroSection,
    .thankYouHero {
        padding: 120px 0 67px;
    }

    .primaryHeading,
    .thankYouHeading {
        font-size: 2rem;
    }

    .leadParagraph,
    .thankYouSubtext {
        font-size: 1.1rem;
    }

    .metricNumber {
        font-size: 2.8rem;
    }

    .checkmarkCircle {
        width: 67px;
        height: 67px;
    }
}

/* Cookie Banner Styles */
.cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--deep-purple), var(--ocean-blue));
    backdrop-filter: blur(13px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -8px 34px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookieBanner.show {
    transform: translateY(0);
}

.cookieContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 27px;
}

.cookieContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 0;
    gap: 34px;
}

.cookieMessage {
    flex: 1;
}

.cookieText {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.cookieActions {
    flex-shrink: 0;
}

.cookieAcceptBtn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--deep-purple);
    border: none;
    padding: 13px 27px;
    border-radius: 27px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

.cookieAcceptBtn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.2);
}

.cookieAcceptBtn:active {
    transform: translateY(0);
}

/* Cookie Banner Responsive */
@media screen and (max-width: 890px) {
    .cookieContent {
        flex-direction: column;
        text-align: center;
        gap: 21px;
        padding: 27px 0;
    }

    .cookieText {
        font-size: 0.95rem;
    }

    .cookieAcceptBtn {
        padding: 12px 34px;
        width: 100%;
        max-width: 280px;
    }
}

@media screen and (max-width: 640px) {
    .cookieContainer {
        padding: 0 18px;
    }

    .cookieContent {
        padding: 21px 0;
    }

    .cookieText {
        font-size: 0.9rem;
    }
}

/* Cookie Banner Animation */
@keyframes slideUpBounce {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    60% {
        transform: translateY(-8px);
        opacity: 1;
    }
    80% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Enhanced Footer Styles */
.enhancedFooter {
    background: linear-gradient(145deg, var(--deep-purple) 0%, #2d0845 50%, var(--ocean-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 89px 0 0;
}

.footerBackgroundPattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.06;
    pointer-events: none;
}

.patternElement {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.pattern1 {
    width: 280px;
    height: 280px;
    top: -140px;
    right: -140px;
}

.pattern2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: -90px;
}

.pattern3 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 60%;
}

.footerMainContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 55px;
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}

/* Footer Brand Section */
.footerBrandSection {
    padding-right: 34px;
}

.brandLogoArea {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 27px;
}

.footerLogo {
    width: 300px;
    filter: brightness(0) invert(1);
}

.brandName {
    color: white;
    margin-bottom: 0;
    font-size: 1.8rem;
}

.brandMission {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 34px;
    font-size: 1rem;
}

.footerStats {
    display: flex;
    align-items: center;
    gap: 21px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 21px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.statItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.statNumber {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.statLabel {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.statDivider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.3);
}

/* Footer Columns */
.footerColumnTitle {
    color: white;
    margin-bottom: 21px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 8px;
}

.footerColumnTitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--frost-lavender);
}

.legalTitle {
    margin-top: 34px;
}

/* Services Column */
.footerServicesList {
    list-style: none;
}

.serviceItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.serviceLink {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.serviceLink:hover {
    color: white;
    padding-left: 8px;
}

.serviceBadge {
    background: var(--frost-lavender);
    color: var(--deep-purple);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 13px;
    font-weight: 600;
}

/* Navigation Column */
.footerNavList,
.footerLegalList {
    list-style: none;
}

.footerNavList li,
.footerLegalList li {
    margin-bottom: 13px;
}

.navFooterLink,
.legalFooterLink {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.navFooterLink:hover,
.legalFooterLink:hover {
    color: white;
    padding-left: 13px;
}

.navFooterLink:before,
.legalFooterLink:before {
    content: '→';
    position: absolute;
    left: -18px;
    opacity: 0;
    transition: all 0.3s ease;
}

.navFooterLink:hover:before,
.legalFooterLink:hover:before {
    opacity: 1;
    left: -13px;
}

/* Contact Column */
.contactDetailsBox {
    margin-bottom: 34px;
}

.contactItem {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 21px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contactItem:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contactIcon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contactContent {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contactLabel {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contactValue {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Business Hours */
.businessHours {
    background: rgba(255, 255, 255, 0.08);
    padding: 21px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hoursTitle {
    color: white;
    margin-bottom: 13px;
    font-size: 1rem;
}

.hoursContent {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hoursContent span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.closedDay {
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
}

/* Footer Bottom Bar */
.footerBottomBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.copyrightArea {
    flex: 1;
}

.copyrightText {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.companyRegistration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.footerActions {
    flex-shrink: 0;
}

.backToTopBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 13px 21px;
    border-radius: 27px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.backToTopBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btnArrow {
    font-size: 1.1rem;
    font-weight: bold;
}

.btnText {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Responsive Design */
@media screen and (max-width: 1280px) {
    .footerMainContent {
        grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
        gap: 42px;
    }

    .footerBrandSection {
        padding-right: 21px;
    }
}

@media screen and (max-width: 890px) {
    .footerMainContent {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .footerBrandSection {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 34px;
    }

    .footerStats {
        flex-direction: column;
        gap: 13px;
    }

    .statDivider {
        width: 100%;
        height: 1px;
    }

    .footerBottomBar {
        flex-direction: column;
        gap: 21px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .enhancedFooter {
        padding: 67px 0 0;
    }

    .footerMainContent {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .brandLogoArea {
        justify-content: center;
        text-align: center;
    }

    .brandMission {
        text-align: center;
    }

    .footerStats {
        justify-content: center;
    }

    .footerColumnTitle {
        text-align: center;
    }

    .footerColumnTitle:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .serviceItem,
    .footerNavList,
    .footerLegalList {
        text-align: center;
    }

    .contactDetailsBox {
        text-align: center;
    }

    .contactItem {
        justify-content: center;
    }

    .businessHours {
        text-align: center;
    }
}