:root {
    --garaj-orange: #f7a83b;
    --garaj-dark: #222222;
    --garaj-light-gray: #a0a0a0;
    --garaj-text-gray: #555555;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    /* overflow-y: hidden; */
}

.main-content {
    flex: 1;
    /* Reduced from 80px */
    padding-bottom: 0;
    /* Changed from 20px */
}

.login-section {
    overflow: hidden;
}

.marketing-section {
    padding-left: 40px;
    width: 100%;
    max-width: 620px;
    margin-bottom: 20px;
}

.text-frame {
    color: var(--garaj-light-gray);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.heading-primary {
    font-size: 2.5rem;
    /* Adjust to match image */
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: Century Gothic;
    white-space: normal;
    /* Instead of nowrap */
    word-break: break-word;
}

.heading-primary-second {
    font-size: 26px;
    /* Adjust to match image */
    font-weight: 500;
    color: #333;
    margin-bottom: 0rem;
    font-family: Century Gothic;
}

.sub-heading {
    font-size: 1rem;
    color: var(--garaj-text-gray);
    line-height: 1.5;
    margin-bottom: 0rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 0.375rem;
    /* Bootstrap default */
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
}

.form-control:focus {
    border-color: var(--garaj-orange);
    box-shadow: 0 0 0 0.25rem rgba(247, 168, 59, 0.25);
}

.form-group {
    margin-bottom: 1.5rem;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--garaj-orange);
    text-decoration: none;
    font-weight: 400;
    display: block;
    text-align: right;
    margin-top: -0.5rem;
    /* Adjust to align with password field */
    margin-bottom: 1.5rem;
}

.card button {
    display: block;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background: #e0951f;
    border: 1px solid #e0951f;
    margin-top: 2rem;
    cursor: pointer;
    transition: color 0.15s ease-out;
    text-align: center;
    justify-content: center;
    align-items: center;
}


.btn-custom {
    background-color: #EFA63E;
    border-color: #EFA63E;
    font-weight: 400;
    border-radius: 2.5rem;
    padding: 0.75rem 0.75rem;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    width: 100%;
    color: white;

    /* Fix centering */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* horizontally center */
}

.btn-custom:hover {
    color: #e0951f;
    transition: color 0.15s ease-in;
    background-color: transparent;
    /* Slightly darker orange on hover */
    border: 1px solid #f59e0b;
}

.signup-text {
    font-size: 0.9rem;
    color: var(--garaj-text-gray);
    text-align: center;
    margin-top: 0.7rem;
}

.signup-text a {
    color: var(--garaj-orange);
    text-decoration: none;
    font-weight: 400;
}

.marketing-heading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
    font-family: Century Gothic;
}

.marketing-text {
    font-size: 1rem;
    color: var(--garaj-text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.marketing-sub-heading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.75rem;
    font-family: Century Gothic;
}

.footer {
    margin-top: auto;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    background-color: #222222 !important;
    color: #8F8F8F;
    /* Ensure this is set */
}

.footer-text p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #8F8F8F;
    font-size: 16px;
    margin-bottom: 1px;
}

.footer p {
    text-align: center;
}

/* Specific styling for the pre-filled email input to match the orange border */
.form-control.email-prefilled {
    border-color: var(--garaj-orange);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

    /* For medium and smaller devices */
    .login-section,
    .marketing-section {
        padding-right: 15px;
        padding-left: 15px;
    }

    .login-section {
        margin-bottom: 3rem;
        /* Space between sections on smaller screens */
    }
}

/* Update the form wrapper and panels */
.form-wrapper {
    /* position: relative; */
    overflow: hidden;
    max-width: 620px;
    width: 100%;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transition: height 0.3s ease;
}

.form-carousel {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    /* overflow: hidden;*/
    align-items: center;
}

.form-panel {
    flex: 0 0 100%;
    /* ensures one panel shows at a time */
    /* padding: 0 40px; */
    box-sizing: border-box;
}


/* Specific heights for each panel */
#loginPanel {
    height: auto;
}

#accountInfoPanel {
    height: auto;
}

#paymentInfoPanel {
    height: auto;
    padding-bottom: 0;
}


/* When the carousel needs to show the second panel */
.form-carousel.show-next {
    transform: translateX(-100%);
}

.form-carousel.show-third {
    transform: translateX(-200%);
}

/* New styles for the account info form */
.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.user-email {
    color: var(--garaj-text-gray);
    font-size: 0.9rem;
}

.switch-account {
    color: var(--garaj-orange);
    text-decoration: none;
    font-weight: 500;
    margin-left: auto;
    /* Pushes it to the right */
    font-size: 0.9rem;
}

.country-select .form-control {
    appearance: none;
    /* Remove default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.75rem 0.75rem;
}

.legal-text {
    font-size: 0.85rem;
    color: var(--garaj-text-gray);
    line-height: 1.5;
    /* margin-top: 2rem; */
    margin-bottom: 1rem;
}

.legal-text a {
    color: var(--garaj-orange);
    text-decoration: none;
}

.btn-agree-continue {
    background-color: var(--garaj-orange);
    border-color: var(--garaj-orange);
    color: black;
    padding: 0.55rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 2.375rem;
    /* width: 100%; */
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-agree-continue:hover {
    background-color: #e09a30;
    border-color: #e09a30;
    color: #fff;
}

/* Back button styling */
.back-link {
    color: black;
    /* Muted text color */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
}

.back-link:hover {
    text-decoration: none;
    color: #333;
}

.back-link i {
    color: black;
    /* Ensure icon color matches text */
}

/* Styles for payment cards */
.payment-card {
    border: 1px solid var(--garaj-light-gray);
    border-radius: 0.5rem;
    box-shadow: none;
    /* Remove default Bootstrap shadow */
    padding: 0 !important;
    width: 100%;
    max-width: 400px;
    /* Adjust max-width as needed */
}

.payment-card-header {
    background-color: transparent;
    border-bottom: none;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    color: #000;
    font-size: 1rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* Keeping original font */
}

.payment-card-body {
    padding: 1.25rem;
    position: relative;
    /* For positioning the 'Change' link */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.payment-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.payment-card-text {
    font-size: 0.9rem;
    color: var(--garaj-text-gray);
    line-height: 1.4;
    margin-bottom: 0;
    flex-grow: 1;
    /* Allows text to take available space */
}

.payment-card-link {
    color: var(--garaj-orange);
    text-decoration: none;
    font-weight: 500;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.9rem;
}

.payment-card-link:hover {
    text-decoration: underline;
}

/* Styling for the "Start Free" button to match the image */
.btn-start-free {
    background-color: var(--garaj-orange);
    border-color: var(--garaj-orange);
    color: black;
    padding: 0.55rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 2.375rem;
    width: 100%;
    /* Ensure it takes full width as in the image */
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.visa-logo {
    width: 20px;
    height: auto;
}

.btn-start-free:hover {
    background-color: #e09a30;
    border-color: #e09a30;
    color: #fff;
}


/* New styles for the unsuccessful action section */
.unsuccessful-section-container {
    /* Hidden by default */
    width: 100%;
    /* Take full width of its flex parent */
    max-width: 600px;
    /* Limit width as per image */
    margin: auto;
    /* Center horizontally within flex parent */
    padding: 2rem;
    /* Padding around the inner dotted box */
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 15rem;
}

@media (max-width: 1900px) {
    .unsuccessful-section-container {
        /* Hidden by default */
        width: 100%;
        /* Take full width of its flex parent */
        max-width: 600px;
        /* Limit width as per image */
        margin: auto;
        /* Center horizontally within flex parent */
        padding: 2rem;
        /* Padding around the inner dotted box */
        background-color: #fff;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        margin-top: 15rem;
    }
}

.unsuccessful-content-wrapper {
    /* border: 2px dotted #007bff; */
    /* Blue dotted border */
    padding: 1.5rem;
    /* Padding inside the dotted border */
    text-align: center;
}

.unsuccessful-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.unsuccessful-message {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.unsuccessful-message .support-link {
    color: var(--garaj-orange);
    font-weight: 500;
}

.btn-ok {
    background-color: var(--garaj-orange);
    border-color: var(--garaj-orange);
    color: black;
    padding: 0.55rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2.375rem;
    width: 100%;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-ok:hover {
    background-color: #e09a30;
    border-color: #e09a30;
    color: #fff;
}

.main-ContentContainer {
    position: relative;
    width: 100%;
    top: 0;
    margin-bottom: 0;
}

.full-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-megamenu {
    width: 550px;
    right: 0px;
    left: -19rem;
    transform: translateY(-10px);
    top: 3rem;
}

header {
    /* position: relative; */
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 1rem;
    /* padding: 1rem 1.5rem; */
    /* padding-left: 1rem; */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.nav-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    position: relative;
    /* margin-right: -5rem; */
}

@media (max-width: 1900px) {

    header {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1050 !important;
        background: transparent !important;
        transition: all 0.3s ease !important;
    }
}

@media (min-width: 1500px) and (max-width: 1800px) {
    .header {
        position: relative;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 1rem;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    }
}

@media (max-width: 992px) {
    .login-card {
        max-width: 400px;
    }

    .card-body {
        padding: 2rem !important;
    }

    .card-title {
        font-size: 1.6rem;
    }

    header {
        position: relative;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 1rem;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    }
}


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0rem;
}

@media (min-width: 640px) {
    .card p {
        font-size: 14px;
    }
}

.account-type-cards {
    display: flex;
    flex-direction: column;

    margin-top: 1rem;


}

.account-type-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.account-type-card:hover {
    border-color: var(--garaj-orange);
    box-shadow: 0 0 10px rgba(247, 168, 59, 0.2);
}

.account-type-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.account-type-description {
    font-size: 0.9rem;
    color: var(--garaj-text-gray);
    margin-bottom: 0;
}

.form-carousel.show-org {
    transform: translateX(-100%);
}

.form-carousel.show-ind {
    transform: translateX(-100%);
}


/* Min Height & Card Styles */
.min-vh-100 {
    min-height: 100vh;
}

.login-card {
    max-width: 500px;
    width: 100%;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Subtle shadow */
    border-radius: 0.75rem;
    /* More rounded corners */
}

.card-body {
    padding: 3rem !important;
    /* Increased padding inside the card */
}

.card-title {
    font-size: 1.8rem;
    color: #333;
    line-height: 1.2;
    font-family: Century Gothic;
}

.card-text {
    font-size: 0.95rem;
    color: #6c757d;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.form-control {
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    /* Increased padding for taller inputs */
    height: auto;
    /* Allow height to adjust with padding */
}

.form-control:focus {
    border-color: #EFA63E;
    box-shadow: 0 0 0 0.25rem rgba(249, 168, 37, 0.25);
}

.forgot-password-link,
.signup-link {
    color: #EFA63E !important;
    /* Custom orange color */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    /* Slightly smaller font for links */
}

.forgot-password-link:hover,
.signup-link:hover {
    text-decoration: underline;
}

.card {
    flex: none;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}



.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* No background or border for social icons, just the image */
}

.social-icon img {
    /* Placeholder images are generic, but we ensure no grayscale filter */
    opacity: 1;
    /* Ensure full opacity */
}

footer {
    background-color: #000;
    /* Solid black background for footer */
    color: white;
    font-size: 0.85rem;
}



.canvas-container {
    position: absolute;
    z-index: 0;
    inset: 0;
}


.card:hover {
    box-shadow: none;
    scale: none;
}


@media (max-width: 1900px) {

    /* CSS rules for screens 1366px wide and up */
    .hero-content h1 {
        font-size: 6rem;
        /* color: red; */
    }

    .canvas-container {
        height: 75vh;
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 90%);
    }

    .min-vh-100 {
        min-height: 100vh;
    }
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    .login-card {
        max-width: 609px;
        padding: 1rem;

    }

    .card-body {
        padding: 1rem !important;
    }

    header {
        position: relative;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 1rem;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    }

    .min-vh-100 {
        min-height: 82vh !important;
    }

    .main-content {
        flex: 1;
        padding-bottom: 0;
    }

    .form-carousel {
        display: flex;
        width: 100%;
        transition: transform 0.5s ease-in-out;
        /* overflow: hidden; */
        align-items: center;
        width: 496px;
    }

    .heading-primary {
        font-size: 2rem;
    }

    .marketing-heading {
        font-size: 1.3rem;
    }

    .marketing-text {
        font-size: 0.9rem;
    }

    .marketing-sub-heading {
        font-size: 1.3rem;
    }

    .marketing-sub-text {
        font-size: 0.9rem;
    }
}


@media (max-width: 768px) {
    .login-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .card-body {
        padding: 1.75rem !important;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    main {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 1.5rem !important;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .form-control {
        padding: 0.6rem 0.9rem;
    }

    .btn-custom {
        padding: 0.6rem 0.9rem;
    }
}

/* Ensure the card doesn't get too small on very small devices */
@media (max-width: 400px) {
    .card-body {
        padding: 1.25rem !important;
    }
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0rem;
}


/* ==========================================================================
   Core Layout & Utility Classes (Namespaced)
   ========================================================================== */

/* Min height utilities - scoped to contact form */
.garaj-contact-form .min-vh-100 {
    min-height: 100vh;
}

/* Main card styling - the primary login/contact card */
.garaj-contact-form .login-card {
    max-width: 675px;
    width: 100%;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    height: auto;
}

/* Animation Container - handles step transitions */
.garaj-contact-form .form-steps-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    transition: height 0.5s ease-in-out;
}

/* Individual form step containers */
.garaj-contact-form .form-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
}

.garaj-contact-form .form-step.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0%);
    position: static;
}

.garaj-contact-form .form-step.moving-out {
    position: absolute;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

.garaj-contact-form .form-step.moving-in {
    position: absolute;
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
}

/* Card body padding */
.garaj-contact-form .card-body {
    padding: 3rem !important;
}


.main-ContentContainer .canvas-container {
    height: 38vh;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 64%);
}

/* Typography within the contact card */
.garaj-contact-form .card-title {
    font-size: 1.8rem;
    color: #333;
    line-height: 1.2;
}

.garaj-contact-form .card-text {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Form elements styling */
.garaj-contact-form .form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.garaj-contact-form .form-control,
.garaj-contact-form .form-select,
.garaj-contact-form textarea.form-control {
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    height: auto;
}

.garaj-contact-form .form-control:focus,
.garaj-contact-form .form-select:focus,
.garaj-contact-form textarea.form-control:focus {
    border-color: #f9a825;
    box-shadow: 0 0 0 0.25rem rgba(249, 168, 37, 0.25);
}

/* Link styling */
.garaj-contact-form .forgot-password-link,
.garaj-contact-form .signup-link {
    color: #f9a825;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.garaj-contact-form .forgot-password-link:hover,
.garaj-contact-form .signup-link:hover {
    text-decoration: underline;
}

/* Custom button styles - primary CTA button */
.garaj-contact-form .btn-custom {
    background-color: #f9a825;
    border-color: #f9a825;
    color: black;
    font-weight: 500;
    border-radius: 2.5rem;
    padding: 0.75rem 2.5rem;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out !important;
}

.garaj-contact-form .btn-custom:hover {
    background-color: #e0951f;
    border-color: #e0951f;
    color: white !important;
}

.garaj-contact-form .btn-custom i {
    color: black;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease-in-out;
}

.garaj-contact-form .btn-custom:hover i {
    color: white;
}

/* General card styles within contact form */
.garaj-contact-form .card {
    flex: none;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.garaj-contact-form .card button {
    display: block;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: black;
    background: #e0951f;
    border: 1px solid #e0951f;
    margin-top: 2rem;
    cursor: pointer;
    transition: color 0.15s ease-out !important;
    text-align: center;
}

/* Social icon styles */
.garaj-contact-form .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.garaj-contact-form .social-icon img {
    opacity: 1;
}

/* Footer text styling */
.garaj-contact-form .footer-text p {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #8F8F8F;
    font-size: 16px;
    margin-bottom: 1px;
}

/* Back button styling for multi-step navigation */
.garaj-contact-form .back-link {
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
}

.garaj-contact-form .back-link:hover {
    text-decoration: none;
    color: #333;
}

.garaj-contact-form .back-link i {
    color: black;
}

/* Thank You Step specific styles */
.garaj-contact-form #formStep3 .card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.garaj-contact-form #formStep3 .card-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Header positioning */
.garaj-contact-form header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 1rem;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

/* Canvas container for background effects */
.garaj-contact-form .canvas-container {
    position: absolute;
    z-index: 0;
    inset: 0;
}

/* Mega menu width */
.garaj-contact-form .contact-megamenu {
    width: 550px;
    right: 0px;
    left: -19rem;
    transform: translateY(-10px);
    top: 3rem;
}

/* Prevent card hover effects */
.garaj-contact-form .card:hover {
    box-shadow: none;
    scale: none;
}

/* Navigation actions wrapper */
.garaj-contact-form .nav-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    position: relative;
}

/* ==========================================================================
   Responsive Breakpoints (Namespaced)
   ========================================================================== */

@media (max-width: 1900px) {
    .garaj-contact-form .hero-content h1 {
        font-size: 6rem;
    }

    .garaj-contact-form header {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1050 !important;
        background: transparent !important;
        transition: all 0.3s ease !important;
    }

    .garaj-contact-form .min-vh-100 {
        min-height: 100vh;
    }
}

@media (min-width: 1500px) and (max-width: 1800px) {
    .garaj-contact-form .header {
        position: sticky;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 1rem;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    }
}

@media (min-width: 1200px) {
    .garaj-contact-form .login-card {
        max-width: 609px;
        padding: 1rem;
    }

    .garaj-contact-form .card-body {
        padding: 1rem !important;
    }

    .garaj-contact-form header {
        position: relative;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 1rem;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    }

    .garaj-contact-form .min-vh-100 {
        min-height: 82vh !important;
    }
}

@media (max-width: 992px) {
    .garaj-contact-form .login-card {
        max-width: 400px;
    }

    .garaj-contact-form .card-body {
        padding: 2rem !important;
    }

    .garaj-contact-form .card-title {
        font-size: 1.6rem;
    }

    .garaj-contact-form header {
        position: sticky;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 1rem;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    }
}

@media (max-width: 768px) {
    .garaj-contact-form .login-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .garaj-contact-form .card-body {
        padding: 1.75rem !important;
    }

    .garaj-contact-form .card-title {
        font-size: 1.5rem;
    }

    .garaj-contact-form .card-text {
        font-size: 0.9rem;
    }

    .garaj-contact-form main {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .garaj-contact-form .card-body {
        padding: 1.5rem !important;
    }

    .garaj-contact-form .card-title {
        font-size: 1.4rem;
    }

    .garaj-contact-form .form-control {
        padding: 0.6rem 0.9rem;
    }

    .garaj-contact-form .btn-custom {
        padding: 0.6rem 0.9rem;
    }
}

@media (max-width: 400px) {
    .garaj-contact-form .card-body {
        padding: 1.25rem !important;
    }
}

/* ==========================================================================
   Bootstrap Grid Override (Scoped)
   ========================================================================== */

.garaj-contact-form .container,
.garaj-contact-form .container-fluid,
.garaj-contact-form .container-lg,
.garaj-contact-form .container-md,
.garaj-contact-form .container-sm,
.garaj-contact-form .container-xl,
.garaj-contact-form .container-xxl {
    --bs-gutter-x: 0rem;
}

/* ==========================================================================
   Form Validation & Asterisk Styles (Scoped)
   ========================================================================== */

/* Required field asterisk styling */
.garaj-contact-form .card .text-danger {
    background-color: transparent !important;
    color: #dc3545 !important;
    font-size: inherit !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-weight: bold !important;
    display: inline !important;
}

.garaj-contact-form .card span.text-danger {
    background-color: transparent !important;
    color: #dc3545 !important;
    font-size: 1.2rem !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-weight: bold !important;
    display: inline-block !important;
    line-height: 1 !important;
}

/* Optional text styling */
.garaj-contact-form .optional-text {
    font-size: 0.85rem;
    font-weight: bold !important;
    color: #6c757d !important;
    text-underline-offset: 3px;
    margin-left: 6px;
    background-color: transparent !important;
}

/* ==========================================================================
   Horizontal Radio Group Styles (Scoped)
   ========================================================================== */

.garaj-contact-form .horizontal-radio-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 0.5rem;
    width: 100%;
}

.garaj-contact-form .horizontal-radio-group .form-check {
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
}

.garaj-contact-form .horizontal-radio-group .form-check-input {
    margin-top: 0;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .garaj-contact-form .horizontal-radio-group {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer Styles (Scoped to Contact Form)
   ========================================================================== */

.garaj-contact-form footer {
    background-color: #000;
    color: white;
    font-size: 0.85rem;
}

/* ==========================================================================
   Progress Bar Styling (Scoped)
   ========================================================================== */

.garaj-contact-form .progress {
    background-color: #e9ecef;
    border-radius: 8px;
}

.garaj-contact-form .progress-bar {
    background-color: #f9a825 !important;
    transition: width 0.3s ease;
}

/* ==========================================================================
   Validation Error States (Scoped)
   ========================================================================== */

.garaj-contact-form .was-validated .form-control:invalid,
.garaj-contact-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.garaj-contact-form .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.garaj-contact-form .invalid-feedback.d-none {
    display: none !important;
}

/* Password Hint Styles */
.password-hint {
    border-radius: 12px;
    background-color: #fff;
    margin-top: 8px;
    margin-bottom: 16px;
    padding: 0px 8px;
    transition: all 0.3s ease;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.password-hint .requirements {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.password-hint .requirements li {
    margin: 12px 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.password-hint .requirements li i {
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.password-hint .requirements li.valid {
    color: #198754;
}

.password-hint .requirements li.valid i:before {
    content: "\f00c";
    /* Check mark icon */
}

.password-hint .requirements li.invalid {
    color: #6c757d;
}

.main-content {
	position: relative;
}